time-to-botec/js/node_modules/@stdlib/process/cwd/README.md
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

1.8 KiB

cwd

Return the current working directory.

Usage

var cwd = require( '@stdlib/process/cwd' );

cwd()

Returns the current working directory.

var dir = cwd();
// e.g., returns '/path/to/current/working/directory'

Notes

  • In browser environments, the current working directory is always equal to '/'.

Examples

var PATH_SEP = require( '@stdlib/constants/path/sep' );
var cwd = require( '@stdlib/process/cwd' );

var parts = cwd().split( PATH_SEP );
console.log( parts );

CLI

Usage

Usage: cwd [options]

Options:

  -h,    --help                Print this message.
  -V,    --version             Print the package version.

Examples

$ cwd
/path/to/current/working/directory