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 /std/node/module.ts | |
parent | 78e0ae643c8eb9817b3396cf07a263ce9f03fc4c (diff) |
make camel case readDir, readLink, realPath (#4995)
Diffstat (limited to 'std/node/module.ts')
-rw-r--r-- | std/node/module.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/node/module.ts b/std/node/module.ts index 9203764f0..8969e80d9 100644 --- a/std/node/module.ts +++ b/std/node/module.ts @@ -758,7 +758,7 @@ function toRealPath(requestPath: string): string { let fullPath = requestPath; while (true) { try { - fullPath = Deno.readlinkSync(fullPath); + fullPath = Deno.readLinkSync(fullPath); } catch { break; } |