UNPKG

is-osx

Version:

> Check if the operating system is OSX

8 lines (7 loc) 165 B
'use strict'; module.exports = function (str, opts) { if(typeof process === 'undefined' || !process) { return false; } return process.platform === 'darwin'; };