mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 17:15:11 +03:00
bc07215d4d
swc_ecma_parser: - Fix lexing of template literals. (denoland/deno#9620) - Ensure that denoland/deno#9650 is not a bug of parser.
11 lines
323 B
TypeScript
11 lines
323 B
TypeScript
// Loaded from https://deno.land/std@0.88.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 ? /[\\/]+/ : /\/+/;
|