'use strict';
var execSync = require('child_process').execSync;
module.exports = (function () {
if (!execSync) {
return false;
}
if (~[ 'v1.0.0', 'v1.0.1' ].indexOf(process.version)) {
return true;
}
return /iojs\.org/.test(execSync('"' + process.execPath + '" -h', { encoding: 'ascii' }));
})();