1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/std/path/mod.ts

35 lines
729 B
TypeScript
Raw Normal View History

// Copyright the Browserify authors. MIT License.
2020-03-30 11:36:55 -04:00
// Ported mostly from https://github.com/browserify/path-browserify/
import * as _win32 from "./win32.ts";
import * as _posix from "./posix.ts";
import { isWindows } from "./constants.ts";
const path = isWindows ? _win32 : _posix;
export const win32 = _win32;
export const posix = _posix;
2020-03-30 11:36:55 -04:00
export const {
basename,
delimiter,
dirname,
2020-03-30 11:36:55 -04:00
extname,
format,
fromFileUrl,
isAbsolute,
join,
normalize,
2020-03-30 11:36:55 -04:00
parse,
relative,
resolve,
2020-03-30 11:36:55 -04:00
sep,
toNamespacedPath,
2020-03-30 11:36:55 -04:00
} = path;
2020-03-30 11:36:55 -04:00
export { common } from "./common.ts";
export { EOL, SEP, SEP_PATTERN, isWindows } from "./constants.ts";
export * from "./interface.ts";
export * from "./glob.ts";
export * from "./globrex.ts";