summaryrefslogtreecommitdiff
path: root/std/path/separator.ts
blob: 58b42000abf522d4632576eadc3e920ac539c750 (plain)
1
2
3
4
5
6
7
// Copyright 2018-2020 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 ? /[\\/]+/ : /\/+/;