summaryrefslogtreecommitdiff
path: root/fs/path
diff options
context:
space:
mode:
authorNayeem Rahman <muhammed.9939@gmail.com>2019-09-28 14:33:17 +0100
committerRyan Dahl <ry@tinyclouds.org>2019-09-28 09:33:17 -0400
commita472b6732dd37636b7b31128f53d3e6bcf531a73 (patch)
tree11fa3fb56917582c0c88c871e71ff212b39eb841 /fs/path
parentaf18093498c3fca103bd47305e447ddeda40d9a2 (diff)
Test runner v2 (denoland/deno_std#604)
Original: https://github.com/denoland/deno_std/commit/17a214bbd5b3a058a8126e9f7210992b1b52ba11
Diffstat (limited to 'fs/path')
-rw-r--r--fs/path/constants.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/path/constants.ts b/fs/path/constants.ts
index d70bb8073..55851f8cc 100644
--- a/fs/path/constants.ts
+++ b/fs/path/constants.ts
@@ -50,3 +50,4 @@ export const CHAR_9 = 57; /* 9 */
export const isWindows = build.os === "win";
export const EOL = isWindows ? "\r\n" : "\n";
+export const SEP = isWindows ? "\\" : "/";