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