summaryrefslogtreecommitdiff
path: root/std/path/separator.ts
blob: fb990b8086d00250799430f905f39b86f816ffce (plain)
1
2
3
4
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
const isWindows = Deno.build.os == "windows";
export const SEP = isWindows ? "\\" : "/";
export const SEP_PATTERN = isWindows ? /[\\/]+/ : /\/+/;