diff options
Diffstat (limited to 'cli/js/ops/fs/real_path.ts')
-rw-r--r-- | cli/js/ops/fs/real_path.ts | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cli/js/ops/fs/real_path.ts b/cli/js/ops/fs/real_path.ts deleted file mode 100644 index c424d99bc..000000000 --- a/cli/js/ops/fs/real_path.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. - -import { sendSync, sendAsync } from "../dispatch_json.ts"; - -export function realPathSync(path: string): string { - return sendSync("op_realpath", { path }); -} - -export function realPath(path: string): Promise<string> { - return sendAsync("op_realpath", { path }); -} |