error_worker.js (267B)
1 this.onpush = function (event) { 2 var request = event.data.json(); 3 if (request.type == "exception") { 4 throw new Error("Uncaught exception"); 5 } 6 if (request.type == "rejection") { 7 event.waitUntil(Promise.reject(new Error("Unhandled rejection"))); 8 } 9 };