Welcome to mirror list, hosted at ThFree Co, Russian Federation.

is-windows-bash.js « utils « lib « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc4ac7db493f3a90f740c7847097090d1be1e337 (plain)
1
2
3
'use strict'
var isWindows = require('./is-windows.js')
module.exports = isWindows && /^MINGW(32|64)$/.test(process.env.MSYSTEM)