diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-04-29 16:39:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-29 16:39:37 -0400 |
commit | bc792c02674cc22459a3016b271f9c5b70e9d573 (patch) | |
tree | 44636cedddd7d55638733db018b04bf18f22e812 /cli/js/deno.ts | |
parent | 78e0ae643c8eb9817b3396cf07a263ce9f03fc4c (diff) |
make camel case readDir, readLink, realPath (#4995)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index d7a40648a..95db91f96 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -90,11 +90,11 @@ export { export { openPlugin } from "./ops/plugins.ts"; export { kill } from "./ops/process.ts"; export { run, RunOptions, Process, ProcessStatus } from "./process.ts"; -export { DirEntry, readdirSync, readdir } from "./ops/fs/read_dir.ts"; +export { DirEntry, readDirSync, readDir } from "./ops/fs/read_dir.ts"; export { readFileSync, readFile } from "./read_file.ts"; export { readTextFileSync, readTextFile } from "./read_text_file.ts"; -export { readlinkSync, readlink } from "./ops/fs/read_link.ts"; -export { realpathSync, realpath } from "./ops/fs/realpath.ts"; +export { readLinkSync, readLink } from "./ops/fs/read_link.ts"; +export { realPathSync, realPath } from "./ops/fs/real_path.ts"; export { removeSync, remove, RemoveOptions } from "./ops/fs/remove.ts"; export { renameSync, rename } from "./ops/fs/rename.ts"; export { resources, close } from "./ops/resources.ts"; |