1 2 3 4 5 6 7
onmessage = function (e) { if (e.data === "boom") { throw new Error("boom error!"); } postMessage(e.data); };