2018-08-24 18:09:42 +02:00

7 lines
99 B
JavaScript

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