Remove default export from flags module (denoland/deno_std#38)

Original: e674f7575a
This commit is contained in:
Bartek Iwańczuk 2018-12-21 19:02:52 +01:00 committed by Ryan Dahl
parent a31e44d1c8
commit 0b9ab1249b
17 changed files with 103 additions and 103 deletions

View file

@ -1,4 +1,4 @@
import { args } from "deno";
import parseArgs from "./index.ts";
import { parse } from "./index.ts";
console.dir(parseArgs(args));
console.dir(parse(args));