summaryrefslogtreecommitdiff
path: root/cli/js/deno_unstable.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-05-09 12:44:35 -0400
committerGitHub <noreply@github.com>2020-05-09 12:44:35 -0400
commitb8364a263694e9845a4ad03fac53fb913667f63a (patch)
treee81795bf787aa7c934ab3f3ca509dea8cb5658fc /cli/js/deno_unstable.ts
parenteb505f8afcd56f4d4a372cdfbb66906d8a5107c7 (diff)
BREAKING: make Deno.hostname unstable (#5108)
Diffstat (limited to 'cli/js/deno_unstable.ts')
-rw-r--r--cli/js/deno_unstable.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/deno_unstable.ts b/cli/js/deno_unstable.ts
index 57d1a0970..4d964f3bd 100644
--- a/cli/js/deno_unstable.ts
+++ b/cli/js/deno_unstable.ts
@@ -5,7 +5,7 @@
export { umask } from "./ops/fs/umask.ts";
export { linkSync, link } from "./ops/fs/link.ts";
export { symlinkSync, symlink } from "./ops/fs/symlink.ts";
-export { dir, loadavg, osRelease } from "./ops/os.ts";
+export { dir, loadavg, osRelease, hostname } from "./ops/os.ts";
export { openPlugin } from "./ops/plugins.ts";
export { transpileOnly, compile, bundle } from "./compiler_api.ts";
export { applySourceMap, formatDiagnostics } from "./ops/errors.ts";