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

23 lines
449 B
Plaintext

{{alias}}
Platform-specific path delimiter.
Examples
--------
> {{alias}}
<string>
// POSIX environment:
> var path = '/usr/bin:/bin:/usr/sbin';
> var parts = path.split( {{alias}} )
[ '/usr/bin', '/bin', '/usr/sbin' ]
// Windows environment:
> path = 'C:\\Windows\\system32;C:\\Windows';
> parts = path.split( {{alias}} )
[ 'C:\\Windows\system32', 'C:\\Windows' ]
See Also
--------