UNPKG

108 BJavaScriptView Raw
1module.exports = function (exec) {
2 try {
3 return !!exec();
4 } catch (error) {
5 return true;
6 }
7};