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!");
}, 20);
// eslint-disable-next-line no-implied-eval
setInterval(";", 20);
postMessage("Begin!");