diff options
Diffstat (limited to 'ext/node/polyfills/_fs/_fs_opendir.ts')
-rw-r--r-- | ext/node/polyfills/_fs/_fs_opendir.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/node/polyfills/_fs/_fs_opendir.ts b/ext/node/polyfills/_fs/_fs_opendir.ts index a14f12f15..494bdb4f0 100644 --- a/ext/node/polyfills/_fs/_fs_opendir.ts +++ b/ext/node/polyfills/_fs/_fs_opendir.ts @@ -1,17 +1,17 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. -import Dir from "internal:deno_node/_fs/_fs_dir.ts"; -import { Buffer } from "internal:deno_node/buffer.ts"; +import Dir from "ext:deno_node/_fs/_fs_dir.ts"; +import { Buffer } from "ext:deno_node/buffer.ts"; import { getOptions, getValidatedPath, -} from "internal:deno_node/internal/fs/utils.mjs"; -import { denoErrorToNodeError } from "internal:deno_node/internal/errors.ts"; +} from "ext:deno_node/internal/fs/utils.mjs"; +import { denoErrorToNodeError } from "ext:deno_node/internal/errors.ts"; import { validateFunction, validateInteger, -} from "internal:deno_node/internal/validators.mjs"; -import { promisify } from "internal:deno_node/internal/util.mjs"; +} from "ext:deno_node/internal/validators.mjs"; +import { promisify } from "ext:deno_node/internal/util.mjs"; /** These options aren't funcitonally used right now, as `Dir` doesn't yet support them. * However, these values are still validated. |