Skip to main content

Utilities for working with file system paths

This package works with Cloudflare Workers, Deno, Browsers
This package works with Cloudflare Workers
This package works with Deno
This package works with Browsers
JSR Score
94%
Published
6 months ago (1.0.8)

New Ticket: Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Package root>constants.ts
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. import { isWindows } from "./_os.ts"; /** * The character used to separate entries in the PATH environment variable. * On Windows, this is `;`. On all other platforms, this is `:`. */ export const DELIMITER = isWindows ? ";" as const : ":" as const; /** * The character used to separate components of a file path. * On Windows, this is `\`. On all other platforms, this is `/`. */ export const SEPARATOR = isWindows ? "\\" as const : "/" as const; /** * A regular expression that matches one or more path separators. */ export const SEPARATOR_PATTERN = isWindows ? /[\\/]+/ : /\/+/;