diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-10-02 12:25:49 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-03 16:59:00 -0400 |
commit | d39055d79bc376924fc2ffe138c26ba6b50aa33f (patch) | |
tree | 1abc6e8932dd5227c0d34c7fe9b875284317ce9f /js/deno.ts | |
parent | 0cdf1f451d0b3c67f2d7c0c2817f712eb6c87987 (diff) |
Clean up deno.platform
Renames:
deno.platform -> deno.platform.os
deno.arch -> deno.platform.arch
Removes unsupported operating systems and CPU architectures from the
types. Uses the string "win" instead of "win32".
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 91f7ae1af..62816b8e1 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -16,7 +16,7 @@ export { symlinkSync, symlink } from "./symlink"; export { writeFileSync, writeFile } from "./write_file"; export { ErrorKind, DenoError } from "./errors"; export { libdeno } from "./libdeno"; -export { arch, platform } from "./platform"; +export { platform } from "./platform"; export { trace } from "./trace"; export { truncateSync, truncate } from "./truncate"; export const args: string[] = []; |