mirror of
https://github.com/denoland/deno.git
synced 2025-07-29 16:13:54 +00:00
Change import { x } from "deno"
to const { x } = Deno
(denoland/deno_std#218)
Original: 6063378a92
This commit is contained in:
parent
a7bf191353
commit
2ba7de2d04
32 changed files with 43 additions and 55 deletions
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env deno --allow-net --allow-env
|
||||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||
|
||||
import { args, env, exit, readFile } from "deno";
|
||||
const { args, env, exit, readFile } = Deno;
|
||||
import { parse } from "https://deno.land/x/flags/mod.ts";
|
||||
|
||||
function pathBase(p: string): string {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue