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.ts34
1 files changed, 0 insertions, 34 deletions
diff --git a/std/path/mod.ts b/std/path/mod.ts
deleted file mode 100644
index 5fd793c75..000000000
--- a/std/path/mod.ts
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright the Browserify authors. MIT License.
-// Ported mostly from https://github.com/browserify/path-browserify/
-// This module is browser compatible.
-
-import { isWindows } from "../_util/os.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,
- toFileUrl,
- toNamespacedPath,
-} = path;
-
-export * from "./common.ts";
-export { SEP, SEP_PATTERN } from "./separator.ts";
-export * from "./_interface.ts";
-export * from "./glob.ts";