GoScrobble/web/node_modules/core-js-pure/internals/fails.js

8 lines
108 B
JavaScript

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