Object containing the user environment.
var ENV = require( '@stdlib/utils/env' );
Object
containing the user environment.
var user = ENV.USER;
// returns <string>
- See environ(7).
- Modifications to
ENV
are local to the process in whichENV
is modified. - On Windows systems, environment variables are case insensitive.
- Be careful when modifying environment variables as the environment variable object represents shared state. Accordingly, modifications affect all environment variable consumers.
var ENV = require( '@stdlib/utils/env' );
console.dir( ENV );