diff options
Diffstat (limited to 'std/path/posix.ts')
-rw-r--r-- | std/path/posix.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/path/posix.ts b/std/path/posix.ts index 156aba796..e88eb3f97 100644 --- a/std/path/posix.ts +++ b/std/path/posix.ts @@ -3,14 +3,14 @@ const { cwd } = Deno; import { FormatInputPathObject, ParsedPath } from "./interface.ts"; -import { CHAR_DOT, CHAR_FORWARD_SLASH } from "./constants.ts"; +import { CHAR_DOT, CHAR_FORWARD_SLASH } from "./_constants.ts"; import { assertPath, normalizeString, isPosixPathSeparator, _format, -} from "./utils.ts"; +} from "./_util.ts"; export const sep = "/"; export const delimiter = ":"; |