diff options
Diffstat (limited to 'ext/node/polyfills/_fs/_fs_exists.ts')
-rw-r--r-- | ext/node/polyfills/_fs/_fs_exists.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/polyfills/_fs/_fs_exists.ts b/ext/node/polyfills/_fs/_fs_exists.ts index 21b0e99c1..37ce599e9 100644 --- a/ext/node/polyfills/_fs/_fs_exists.ts +++ b/ext/node/polyfills/_fs/_fs_exists.ts @@ -1,5 +1,5 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. -import { fromFileUrl } from "internal:deno_node/path.ts"; +import { fromFileUrl } from "ext:deno_node/path.ts"; type ExistsCallback = (exists: boolean) => void; |