From a472b6732dd37636b7b31128f53d3e6bcf531a73 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Sat, 28 Sep 2019 14:33:17 +0100 Subject: Test runner v2 (denoland/deno_std#604) Original: https://github.com/denoland/deno_std/commit/17a214bbd5b3a058a8126e9f7210992b1b52ba11 --- fs/path/constants.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'fs/path') 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 ? "\\" : "/"; -- cgit v1.2.3