1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1 1 1565 1565 3 4094 4094 1 | function tryOrThrowError(target) { function tryCatcher() { try { tryCatcher.target.apply(this, arguments); } catch (e) { throw e; } } tryCatcher.target = target; return tryCatcher; } exports.tryOrThrowError = tryOrThrowError; //# sourceMappingURL=tryOrThrowError.js.map |