summaryrefslogtreecommitdiff
path: root/std/path/mod.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/path/mod.ts')
-rw-r--r--std/path/mod.ts17
1 files changed, 9 insertions, 8 deletions
diff --git a/std/path/mod.ts b/std/path/mod.ts
index 402adcf00..104e0b616 100644
--- a/std/path/mod.ts
+++ b/std/path/mod.ts
@@ -11,19 +11,20 @@ const path = isWindows ? _win32 : _posix;
export const win32 = _win32;
export const posix = _posix;
export const {
- resolve,
- normalize,
- isAbsolute,
- join,
- relative,
- toNamespacedPath,
- dirname,
basename,
+ delimiter,
+ dirname,
extname,
format,
+ fromFileUrl,
+ isAbsolute,
+ join,
+ normalize,
parse,
+ relative,
+ resolve,
sep,
- delimiter,
+ toNamespacedPath,
} = path;
export { common } from "./common.ts";