Return the current working directory.
var cwd = require( '@stdlib/process/cwd' );Returns the current working directory.
var dir = cwd();
// returns '/path/to/current/working/directory'var PATH_SEP = require( '@stdlib/constants/string/path-sep' );
var cwd = require( '@stdlib/process/cwd' );
var parts = cwd().split( PATH_SEP );
console.log( parts );Usage: cwd [options]
Options:
-h, --help Print this message.
-V, --version Print the package version.
$ cwd
/path/to/current/working/directory