diff options
author | ztplz <mysticzt@gmail.com> | 2018-09-22 20:47:44 +0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-22 08:47:44 -0400 |
commit | f3684c28e54604dd883e41ecf6b9d922c14a838b (patch) | |
tree | 6cce9c6e2f0a08e05e1f64ac820c6a69e87a6149 /js/deno.ts | |
parent | 7a4ad045b1f5d80d7785916a2209caaf6f552a4b (diff) |
Rename deno.argv, libdeno::DenoC and deno_set_flags (#796)
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/deno.ts b/js/deno.ts index b14bcc561..dd6539163 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -14,4 +14,4 @@ export { ErrorKind, DenoError } from "./errors"; export { libdeno } from "./libdeno"; export { arch, platform } from "./platform"; export { trace } from "./trace"; -export const argv: string[] = []; +export const args: string[] = []; |