summaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/lib/utils/is-windows-bash.js
blob: 0a6c179680e8c6bfafd3bb1c36b93a7c73e1b1d9 (plain)
1
2
3
4
'use strict'
var isWindows = require('./is-windows.js')
module.exports = isWindows &&
  (/^MINGW(32|64)$/.test(process.env.MSYSTEM) || process.env.TERM === 'cygwin')