Repository URL to install this package:
|
Version:
1.0.0 ▾
|
export 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)
)
}