diff options
Diffstat (limited to 'cli/js/ops/fs/symlink.ts')
-rw-r--r-- | cli/js/ops/fs/symlink.ts | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/cli/js/ops/fs/symlink.ts b/cli/js/ops/fs/symlink.ts index 3bb7c3335..ad49bfdd7 100644 --- a/cli/js/ops/fs/symlink.ts +++ b/cli/js/ops/fs/symlink.ts @@ -3,15 +3,6 @@ import { sendSync, sendAsync } from "../dispatch_json.ts"; import * as util from "../../util.ts"; import { build } from "../../build.ts"; -/** **UNSTABLE**: `type` argument type may be changed to `"dir" | "file"`. - * - * Creates `newname` as a symbolic link to `oldname`. The type argument can be - * set to `dir` or `file`. Is only available on Windows and ignored on other - * platforms. - * - * Deno.symlinkSync("old/name", "new/name"); - * - * Requires `allow-read` and `allow-write` permissions. */ export function symlinkSync( oldname: string, newname: string, @@ -23,15 +14,6 @@ export function symlinkSync( sendSync("op_symlink", { oldname, newname }); } -/** **UNSTABLE**: `type` argument may be changed to "dir" | "file" - * - * Creates `newname` as a symbolic link to `oldname`. The type argument can be - * set to `dir` or `file`. Is only available on Windows and ignored on other - * platforms. - * - * await Deno.symlink("old/name", "new/name"); - * - * Requires `allow-read` and `allow-write` permissions. */ export async function symlink( oldname: string, newname: string, |