forked from enviPath/enviPy
Current Dev State
This commit is contained in:
11
static/js/ketcher2/node_modules/cross-spawn/lib/hasBrokenSpawn.js
generated
vendored
Normal file
11
static/js/ketcher2/node_modules/cross-spawn/lib/hasBrokenSpawn.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = (function () {
|
||||
if (process.platform !== 'win32') {
|
||||
return false;
|
||||
}
|
||||
var nodeVer = process.version.substr(1).split('.').map(function (num) {
|
||||
return parseInt(num, 10);
|
||||
});
|
||||
return (nodeVer[0] === 0 && nodeVer[1] < 12);
|
||||
})();
|
||||
Reference in New Issue
Block a user