diff options
Diffstat (limited to 'std/path/mod.ts')
-rw-r--r-- | std/path/mod.ts | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/std/path/mod.ts b/std/path/mod.ts index dd79441f5..402adcf00 100644 --- a/std/path/mod.ts +++ b/std/path/mod.ts @@ -1,5 +1,5 @@ // Copyright the Browserify authors. MIT License. -// Ported from https://github.com/browserify/path-browserify/ +// Ported mostly from https://github.com/browserify/path-browserify/ import * as _win32 from "./win32.ts"; import * as _posix from "./posix.ts"; @@ -10,20 +10,23 @@ const path = isWindows ? _win32 : _posix; export const win32 = _win32; export const posix = _posix; -export const resolve = path.resolve; -export const normalize = path.normalize; -export const isAbsolute = path.isAbsolute; -export const join = path.join; -export const relative = path.relative; -export const toNamespacedPath = path.toNamespacedPath; -export const dirname = path.dirname; -export const basename = path.basename; -export const extname = path.extname; -export const format = path.format; -export const parse = path.parse; -export const sep = path.sep; -export const delimiter = path.delimiter; +export const { + resolve, + normalize, + isAbsolute, + join, + relative, + toNamespacedPath, + dirname, + basename, + extname, + format, + parse, + sep, + delimiter, +} = path; +export { common } from "./common.ts"; export { EOL, SEP, SEP_PATTERN, isWindows } from "./constants.ts"; export * from "./interface.ts"; export * from "./glob.ts"; |