blob: 4b54ad4384b4a8d640d12c404fda26bdfa3029b7 (
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 "./_constants.ts";
export const SEP = isWindows ? "\\" : "/";
export const SEP_PATTERN = isWindows ? /[\\/]+/ : /\/+/;
|