mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 00:52:29 +03:00
fec189f2f3
bundler: - Prevent stack overflow. (denoland/deno#9752) testing: - Bump version - Fix handling of paths on windows. testing_macros: - Bump version - Correctly ignore files.
11 lines
323 B
TypeScript
11 lines
323 B
TypeScript
// Loaded from https://deno.land/std@0.90.0/path/separator.ts
|
|
|
|
|
|
// 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 ? /[\\/]+/ : /\/+/;
|