amis-rpc-design/node_modules/core-js/internals/perform.js

9 lines
170 B
JavaScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
'use strict';
module.exports = function (exec) {
try {
return { error: false, value: exec() };
} catch (error) {
return { error: true, value: error };
}
};