summaryrefslogtreecommitdiff
path: root/std/node/os.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-06-20 23:49:27 -0400
committerGitHub <noreply@github.com>2020-06-20 23:49:27 -0400
commit0a81ec6b1e00ef01900393ae0460eaf3a6ec05d6 (patch)
tree020b1d71aabd8102ae85ae24fc89becb035b4854 /std/node/os.ts
parentc0ea9a99c0dc21faf46f73dca481361853e914fa (diff)
Remove Deno.dir and dirs dependency (#6385)
Diffstat (limited to 'std/node/os.ts')
-rw-r--r--std/node/os.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/std/node/os.ts b/std/node/os.ts
index 27b054f4d..7d072cac8 100644
--- a/std/node/os.ts
+++ b/std/node/os.ts
@@ -136,12 +136,12 @@ export function getPriority(pid = 0): number {
/** Returns the string path of the current user's home directory. */
export function homedir(): string | null {
- return Deno.dir("home");
+ notImplemented(SEE_GITHUB_ISSUE);
}
/** Returns the host name of the operating system as a string. */
export function hostname(): string {
- return Deno.hostname();
+ notImplemented(SEE_GITHUB_ISSUE);
}
/** Returns an array containing the 1, 5, and 15 minute load averages */
@@ -182,7 +182,7 @@ export function setPriority(pid: number, priority?: number): void {
/** Returns the operating system's default directory for temporary files as a string. */
export function tmpdir(): string | null {
- return Deno.dir("tmp");
+ notImplemented(SEE_GITHUB_ISSUE);
}
/** Not yet implemented */