From bc792c02674cc22459a3016b271f9c5b70e9d573 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 29 Apr 2020 16:39:37 -0400 Subject: make camel case readDir, readLink, realPath (#4995) --- std/node/module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/node/module.ts') 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; } -- cgit v1.2.3