summaryrefslogtreecommitdiff
path: root/cli/js/ops/fs/read_link.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-04-29 16:39:37 -0400
committerGitHub <noreply@github.com>2020-04-29 16:39:37 -0400
commitbc792c02674cc22459a3016b271f9c5b70e9d573 (patch)
tree44636cedddd7d55638733db018b04bf18f22e812 /cli/js/ops/fs/read_link.ts
parent78e0ae643c8eb9817b3396cf07a263ce9f03fc4c (diff)
make camel case readDir, readLink, realPath (#4995)
Diffstat (limited to 'cli/js/ops/fs/read_link.ts')
-rw-r--r--cli/js/ops/fs/read_link.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/ops/fs/read_link.ts b/cli/js/ops/fs/read_link.ts
index 4ac8db3db..bcd27ccb7 100644
--- a/cli/js/ops/fs/read_link.ts
+++ b/cli/js/ops/fs/read_link.ts
@@ -1,10 +1,10 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { sendSync, sendAsync } from "../dispatch_json.ts";
-export function readlinkSync(path: string): string {
+export function readLinkSync(path: string): string {
return sendSync("op_read_link", { path });
}
-export function readlink(path: string): Promise<string> {
+export function readLink(path: string): Promise<string> {
return sendAsync("op_read_link", { path });
}