Skip to content

Latest commit

 

History

History

is-darwin

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

IS_DARWIN

Boolean indicating if the current process is running on Darwin.

Usage

var IS_DARWIN = require( '@stdlib/utils/is-darwin' );

IS_DARWIN

Boolean indicating if the current process is running on Darwin.

console.log( IS_DARWIN );
// returns <boolean>

Examples

var IS_DARWIN = require( '@stdlib/utils/is-darwin' );

if ( IS_DARWIN ) {
    console.log( 'Running on Darwin...' );
} else {
    console.log( 'Running on %s...', process.platform );
}