|  | ||
|---|---|---|
| .. | ||
| bin | ||
| docs | ||
| etc | ||
| lib | ||
| package.json | ||
| README.md | ||
Platform
Platform on which the current process is running.
Usage
var PLATFORM = require( '@stdlib/os/platform' );
PLATFORM
Platform on which the current process is running.
console.log( PLATFORM );
// => <string>
Examples
var PLATFORM = require( '@stdlib/os/platform' );
if ( PLATFORM === 'win32' ) {
    console.log( 'Running on a PC...' );
} else if ( PLATFORM === 'darwin' ) {
    console.log( 'Running on a Mac...' );
} else {
    console.log( 'Running on something else...' );
}
CLI
Usage
Usage: platform [options]
Options:
  -h,    --help                Print this message.
  -V,    --version             Print the package version.
Examples
$ platform