vending-machine/mobile/node_modules/licia/tryIt.js
2026-04-03 06:07:13 +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;