is-windows.js 177 B

1234
  1. const isWindowsShell = (process.platform === 'win32') &&
  2. !/^MINGW(32|64)$/.test(process.env.MSYSTEM) && process.env.TERM !== 'cygwin'
  3. exports.isWindowsShell = isWindowsShell