| 
				 | 
			||
|---|---|---|
| .. | ||
| docs | ||
| lib | ||
| package.json | ||
| README.md | ||
ENV
Object containing the user environment.
Usage
var ENV = require( '@stdlib/process/env' );
ENV
Object containing the user environment.
var user = ENV.USER;
// returns <string>
Notes
- See environ(7).
 - Modifications to 
ENVare local to the process in whichENVis modified. - On Windows systems, environment variables are case insensitive.
 - In browser environments, 
ENVis an empty object. - 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/process/env' );
console.dir( ENV );