summaryrefslogtreecommitdiff
path: root/std/path/separator.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/path/separator.ts')
-rw-r--r--std/path/separator.ts7
1 files changed, 0 insertions, 7 deletions
diff --git a/std/path/separator.ts b/std/path/separator.ts
deleted file mode 100644
index d897e07e6..000000000
--- a/std/path/separator.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
-// This module is browser compatible.
-
-import { isWindows } from "../_util/os.ts";
-
-export const SEP = isWindows ? "\\" : "/";
-export const SEP_PATTERN = isWindows ? /[\\/]+/ : /\/+/;