# IS_DARWIN > Boolean indicating if the current process is running on [Darwin][darwin].
## Usage ```javascript var IS_DARWIN = require( '@stdlib/assert/is-darwin' ); ``` #### IS_DARWIN `Boolean` indicating if the current process is running on [Darwin][darwin]. ```javascript console.log( IS_DARWIN ); // => ```
## Examples ```javascript var PLATFORM = require( '@stdlib/os/platform' ); var IS_DARWIN = require( '@stdlib/assert/is-darwin' ); if ( IS_DARWIN ) { console.log( 'Running on Darwin...' ); } else { console.log( 'Running on %s...', PLATFORM ); } ```