1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1 1 1 1 5417 5417 3 1053 1053 1 | "use strict"; exports.__esModule = true; exports["default"] = tryOrOnError; function tryOrOnError(target) { function tryCatcher() { try { tryCatcher.target.apply(this, arguments); } catch (e) { this.error(e); } } tryCatcher.target = target; return tryCatcher; } module.exports = exports["default"]; |