summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/path/posix.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/path/posix.ts')
-rw-r--r--ext/node/polyfills/path/posix.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/node/polyfills/path/posix.ts b/ext/node/polyfills/path/posix.ts
index 8ebf64629..f6ff13b76 100644
--- a/ext/node/polyfills/path/posix.ts
+++ b/ext/node/polyfills/path/posix.ts
@@ -5,12 +5,12 @@
import type {
FormatInputPathObject,
ParsedPath,
-} from "internal:deno_node/polyfills/path/_interface.ts";
+} from "internal:deno_node/path/_interface.ts";
import {
CHAR_DOT,
CHAR_FORWARD_SLASH,
-} from "internal:deno_node/polyfills/path/_constants.ts";
-import { ERR_INVALID_ARG_TYPE } from "internal:deno_node/polyfills/internal/errors.ts";
+} from "internal:deno_node/path/_constants.ts";
+import { ERR_INVALID_ARG_TYPE } from "internal:deno_node/internal/errors.ts";
import {
_format,
@@ -18,7 +18,7 @@ import {
encodeWhitespace,
isPosixPathSeparator,
normalizeString,
-} from "internal:deno_node/polyfills/path/_util.ts";
+} from "internal:deno_node/path/_util.ts";
export const sep = "/";
export const delimiter = ":";