Source code
Revision control
Copy as Markdown
Other Tools
/**
* Any copyright is dedicated to the Public Domain.
*/
onmessage = function (event) {
throw "No messages should reach me!";
};
setInterval(function () {
postMessage("Still alive!");
}, 100);