time-to-botec/js/node_modules/@stdlib/constants/path/delimiter
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
docs feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

Path Delimiter

Platform-specific path delimiter.

Usage

var PATH_DELIMITER = require( '@stdlib/constants/path/delimiter' );

PATH_DELIMITER

Platform-specific path delimiter.

var IS_WINDOWS = require( '@stdlib/assert/is-windows' );

var bool;
if ( IS_WINDOWS ) {
    bool = ( PATH_DELIMITER === ';' );
    // returns true
} else {
    bool = ( PATH_DELIMITER === ':' );
    // returns true
}

Examples

var IS_WINDOWS = require( '@stdlib/assert/is-windows' );
var PATH_DELIMITER = require( '@stdlib/constants/path/delimiter' );

var paths;
var PATH;

if ( IS_WINDOWS ) {
    PATH = 'C:\\Windows\\system32;C:\\Windows;C:\\Program Files\\node\\';
} else {
    PATH = '/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin';
}
paths = PATH.split( PATH_DELIMITER );
console.log( paths );
// => [...]