mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
33 lines
717 B
TypeScript
33 lines
717 B
TypeScript
// Copyright the Browserify authors. MIT License.
|
|
// Ported mostly from https://github.com/browserify/path-browserify/
|
|
/** This module is browser compatible. */
|
|
|
|
import { isWindows } from "./_constants.ts";
|
|
import * as _win32 from "./win32.ts";
|
|
import * as _posix from "./posix.ts";
|
|
|
|
const path = isWindows ? _win32 : _posix;
|
|
|
|
export const win32 = _win32;
|
|
export const posix = _posix;
|
|
export const {
|
|
basename,
|
|
delimiter,
|
|
dirname,
|
|
extname,
|
|
format,
|
|
fromFileUrl,
|
|
isAbsolute,
|
|
join,
|
|
normalize,
|
|
parse,
|
|
relative,
|
|
resolve,
|
|
sep,
|
|
toNamespacedPath,
|
|
} = path;
|
|
|
|
export * from "./common.ts";
|
|
export { SEP, SEP_PATTERN } from "./separator.ts";
|
|
export * from "./_interface.ts";
|
|
export * from "./glob.ts";
|