debian-mirror-gitlab/core-js/internals/fails.js

8 lines
108 B
JavaScript
Raw Normal View History

2019-09-25 13:30:05 +05:30
module.exports = function (exec) {
try {
return !!exec();
} catch (error) {
return true;
}
};