deno.land / std@0.173.0 / path / separator.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
// Copyright 2018-2023 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 ? /[\\/]+/ : /\/+/;
std

Version Info

Tagged at
a year ago