diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-05-09 12:44:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 12:44:35 -0400 |
commit | b8364a263694e9845a4ad03fac53fb913667f63a (patch) | |
tree | e81795bf787aa7c934ab3f3ca509dea8cb5658fc /cli/js/deno.ts | |
parent | eb505f8afcd56f4d4a372cdfbb66906d8a5107c7 (diff) |
BREAKING: make Deno.hostname unstable (#5108)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index 38b2f6d2a..5843d5fbf 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -59,7 +59,7 @@ export { export { metrics, Metrics } from "./ops/runtime.ts"; export { mkdirSync, mkdir, MkdirOptions } from "./ops/fs/mkdir.ts"; export { connect, listen, Listener, Conn } from "./net.ts"; -export { dir, env, exit, execPath, hostname } from "./ops/os.ts"; +export { dir, env, exit, execPath } from "./ops/os.ts"; export { run, RunOptions, Process, ProcessStatus } from "./process.ts"; export { DirEntry, readDirSync, readDir } from "./ops/fs/read_dir.ts"; export { readFileSync, readFile } from "./read_file.ts"; |