try-catches.js (241B)
1 var rollupTryCatches = (function () { 2 'use strict'; 3 4 function root() { 5 6 try { 7 throw "AnError"; 8 } catch (err) { 9 console.log("pause here", root); 10 } 11 } 12 13 return root; 14 15 }()); 16 //# sourceMappingURL=try-catches.js.map