summaryrefslogtreecommitdiff
path: root/os/README.md
diff options
context:
space:
mode:
authorEvgeniy Karagodin <ekaragodin@gmail.com>2019-07-08 02:41:09 +0700
committerRyan Dahl <ry@tinyclouds.org>2019-07-07 15:41:09 -0400
commitc08a27de9ac136d212b6510976435e1fc9694dc8 (patch)
tree58ed448e05847da7aef7e41ec5415fc17d31345e /os/README.md
parent9a01d6455ec3cfa955967102f576cb542999321a (diff)
Remove os.userHomeDir in favor of Deno.homeDir (denoland/deno_std#523)
Original: https://github.com/denoland/deno_std/commit/88b48945799322c0bc2f34134eed538759de4174
Diffstat (limited to 'os/README.md')
-rw-r--r--os/README.md16
1 files changed, 0 insertions, 16 deletions
diff --git a/os/README.md b/os/README.md
deleted file mode 100644
index 0f2ea810b..000000000
--- a/os/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# os
-
-Module provide platform-independent interface to operating system functionality.
-
-## Usage
-
-### userHomeDir
-
-Returns the current user's home directory. On Unix, including macOS, it returns the \$HOME environment variable. On Windows, it returns %USERPROFILE%.
-Needs permissions to access env (--allow-env).
-
-```ts
-import { userHomeDir } from "https://deno.land/std/os/mod.ts";
-
-userHomeDir();
-```