abi.js
Version:
[![typescript-icon]][typescript-link] [![license-icon]][license-link] [![status-icon]][status-link] [![ci-icon]][ci-link] [![twitter-icon]][twitter-link]
15 lines (14 loc) • 492 B
TypeScript
/**
* The character used to separate entries in the PATH environment variable.
* On Windows, this is `;`. On all other platforms, this is `:`.
*/
export declare const DELIMITER: ";" | ":";
/**
* The character used to separate components of a file path.
* On Windows, this is `\`. On all other platforms, this is `/`.
*/
export declare const SEPARATOR: "\\" | "/";
/**
* A regular expression that matches one or more path separators.
*/
export declare const SEPARATOR_PATTERN: RegExp;