diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2018-12-21 19:02:52 +0100 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-12-21 13:02:52 -0500 |
| commit | 0b9ab1249b4bc0a7ab34ee68ca9ea71d7cd7d2ff (patch) | |
| tree | c1326825cf0fde6d58f255ee991012a158bcddf2 /flags/README.md | |
| parent | a31e44d1c8a5843882b3d974827e857070fd17c1 (diff) | |
Remove default export from flags module (denoland/deno_std#38)
Original: https://github.com/denoland/deno_std/commit/e674f7575a7a5a845d696416da2abae62525bc3e
Diffstat (limited to 'flags/README.md')
| -rw-r--r-- | flags/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/flags/README.md b/flags/README.md index 1410644df..4afda374c 100644 --- a/flags/README.md +++ b/flags/README.md @@ -6,9 +6,9 @@ Command line arguments parser for Deno based on minimist ``` ts import { args } from "deno"; -import parseArgs from "https://deno.land/x/flags/index.ts"; +import { parse } from "https://deno.land/x/flags/index.ts"; -console.dir(parseArgs(args)); +console.dir(parse(args)); ``` ``` @@ -30,7 +30,7 @@ $ deno example.ts -x 3 -y 4 -n5 -abc --beep=boop foo bar baz # API -## const parsedArgs = parseArgs(args, options = {}); +## const parsedArgs = parse(args, options = {}); `parsedArgs._` contains all the arguments that didn't have an option associated with them. |
