2017-09-13 07:52:34 +02:00

7 lines
99 B
JavaScript
Vendored

module.exports = function(exec){
try {
return !!exec();
} catch(e){
return true;
}
};