blob: 8617496143c19ccd2f1cf9def501fa7b6678a6e8 [file] [log] [blame]
var workerId = location.search.substring(4);
postMessage("Worker " + workerId + " started.");
doWork();
setInterval(doWork, 1000);
function doWork() {
}