Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

ENV

Object containing the user environment.

Usage

var ENV = require( '@stdlib/utils/env' );

ENV

Object containing the user environment.

var user = ENV.USER;
// returns <string>

Notes

  • See environ(7).
  • Modifications to ENV are local to the process in which ENV 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.

Examples

var ENV = require( '@stdlib/utils/env' );

console.dir( ENV );