summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/path/glob.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/path/glob.ts')
-rw-r--r--ext/node/polyfills/path/glob.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/node/polyfills/path/glob.ts b/ext/node/polyfills/path/glob.ts
index 00529eb3c..c96965a67 100644
--- a/ext/node/polyfills/path/glob.ts
+++ b/ext/node/polyfills/path/glob.ts
@@ -1,10 +1,10 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
-import { isWindows, osType } from "internal:deno_node/_util/os.ts";
-import { SEP, SEP_PATTERN } from "internal:deno_node/path/separator.ts";
-import * as _win32 from "internal:deno_node/path/win32.ts";
-import * as _posix from "internal:deno_node/path/posix.ts";
-import type { OSType } from "internal:deno_node/_util/os.ts";
+import { isWindows, osType } from "ext:deno_node/_util/os.ts";
+import { SEP, SEP_PATTERN } from "ext:deno_node/path/separator.ts";
+import * as _win32 from "ext:deno_node/path/win32.ts";
+import * as _posix from "ext:deno_node/path/posix.ts";
+import type { OSType } from "ext:deno_node/_util/os.ts";
const path = isWindows ? _win32 : _posix;
const { join, normalize } = path;