Skip to main content
Module

std/path/constants.ts

The Deno Standard Library
Latest
File
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.import { isWindows } from "./_os.ts";
export const DELIMITER = isWindows ? ";" as const : ":" as const;export const SEPARATOR = isWindows ? "\\" as const : "/" as const;export const SEPARATOR_PATTERN = isWindows ? /[\\/]+/ : /\/+/;