summaryrefslogtreecommitdiff
path: root/std/path/separator.ts
blob: 61bb7c5889028b25ed6091ce1a4c823cffc16b0c (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 ? /[\\/]+/ : /\/+/;