diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-08-23 19:46:21 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-08-27 17:51:24 -0400 |
commit | 722c7e4a1b5acda4472338f021f1a216ad9c6c08 (patch) | |
tree | 33e3790f63d2ef86c590eaf82ec18f36c4e5d1d1 /js/deno.ts | |
parent | fde96a8e436fe0b63e34aa398b1765739f6e212d (diff) |
Add deno.argv.
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/deno.ts b/js/deno.ts index f7f6c521e..63bee0b7c 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -2,3 +2,4 @@ // Public deno module. export { exit, readFileSync, writeFileSync } from "./os"; export { libdeno } from "./libdeno"; +export const argv: string[] = []; |