Repository URL to install this package:
|
Version:
1.2.9 ▾
|
"use strict";
function isWindows() {
if (typeof process === 'undefined' || !process) {
return false;
}
return process.platform === 'win32' || process.env.OSTYPE === 'cygwin' || process.env.OSTYPE === 'msys' || /^win/.test(process.platform);
}
isWindows.isWindows = isWindows;
module.exports = isWindows;