summaryrefslogtreecommitdiff
path: root/deps/npm/lib/utils/is-windows.js
blob: 57f6599b6ae19265383d6ecdc58030cddf46f6c1 (plain)
1
2
3
4
5
6
const isWindows = process.platform === 'win32'
const isWindowsShell = isWindows &&
  !/^MINGW(32|64)$/.test(process.env.MSYSTEM) && process.env.TERM !== 'cygwin'

exports.isWindows = isWindows
exports.isWindowsShell = isWindowsShell