source-with-source-map-pragma.js 352 B

123456789101112131415161718192021222324252627
  1. 'use strict';
  2. module.exports = foo;
  3. function foo() {
  4. bar();
  5. }
  6. function bar() {
  7. throw new Error('Can\'t catch me!');
  8. }
  9. // eslint-disable-next-line spaced-comment
  10. //# sourceMappingURL=./source-with-source-map-pragma.map
  11. /* original source:
  12. module.exports = foo
  13. function foo() {
  14. bar()
  15. }
  16. function bar() {
  17. throw new Error(`Can't catch me!`)
  18. }
  19. */