mirror of
https://github.com/rjNemo/federation
synced 2026-06-09 11:36:39 +00:00
7 lines
108 B
JavaScript
7 lines
108 B
JavaScript
module.exports = function (exec) {
|
|
try {
|
|
return !!exec();
|
|
} catch (error) {
|
|
return true;
|
|
}
|
|
};
|