uni-ticket-system/node_modules/licia/tryIt.js
2023-12-05 10:11:10 +08:00

13 lines
199 B
JavaScript

var noop = require('./noop');
exports = function(fn, cb) {
cb = cb || noop;
try {
cb(null, fn());
} catch (e) {
cb(e);
return;
}
};
module.exports = exports;