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