summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/path/win32.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/path/win32.ts')
-rw-r--r--ext/node/polyfills/path/win32.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/node/polyfills/path/win32.ts b/ext/node/polyfills/path/win32.ts
index 4ba3ad0f1..73321e709 100644
--- a/ext/node/polyfills/path/win32.ts
+++ b/ext/node/polyfills/path/win32.ts
@@ -5,14 +5,14 @@
import type {
FormatInputPathObject,
ParsedPath,
-} from "internal:deno_node/path/_interface.ts";
+} from "ext:deno_node/path/_interface.ts";
import {
CHAR_BACKWARD_SLASH,
CHAR_COLON,
CHAR_DOT,
CHAR_QUESTION_MARK,
-} from "internal:deno_node/path/_constants.ts";
-import { ERR_INVALID_ARG_TYPE } from "internal:deno_node/internal/errors.ts";
+} from "ext:deno_node/path/_constants.ts";
+import { ERR_INVALID_ARG_TYPE } from "ext:deno_node/internal/errors.ts";
import {
_format,
@@ -21,8 +21,8 @@ import {
isPathSeparator,
isWindowsDeviceRoot,
normalizeString,
-} from "internal:deno_node/path/_util.ts";
-import { assert } from "internal:deno_node/_util/asserts.ts";
+} from "ext:deno_node/path/_util.ts";
+import { assert } from "ext:deno_node/_util/asserts.ts";
export const sep = "\\";
export const delimiter = ";";