Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tryCatch.js 412B

1234567891011121314151617
  1. /** PURE_IMPORTS_START _errorObject PURE_IMPORTS_END */
  2. import { errorObject } from './errorObject';
  3. var tryCatchTarget;
  4. function tryCatcher() {
  5. try {
  6. return tryCatchTarget.apply(this, arguments);
  7. }
  8. catch (e) {
  9. errorObject.e = e;
  10. return errorObject;
  11. }
  12. }
  13. export function tryCatch(fn) {
  14. tryCatchTarget = fn;
  15. return tryCatcher;
  16. }
  17. //# sourceMappingURL=tryCatch.js.map