Change import { x } from "deno" to const { x } = Deno (denoland/deno_std#218)

Original: 6063378a92
This commit is contained in:
Bert Belder 2019-02-25 21:35:50 -08:00 committed by Ryan Dahl
parent a7bf191353
commit 2ba7de2d04
32 changed files with 43 additions and 55 deletions

View file

@ -1,5 +1,5 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { args } from "deno";
const { args } = Deno;
import { parse } from "./mod.ts";
console.dir(parse(args));