UNPKG
is-osx
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
> Check if the operating system is OSX
github.com/skippednote/is-osx
skippednote/is-osx
is-osx
/
index.js
8 lines
(7 loc)
•
165 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
'use strict'
;
module
.
exports
=
function
(
str, opts
) {
if
(
typeof
process ===
'undefined'
|| !process) {
return
false
; }
return
process.
platform
===
'darwin'
; };