summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/simple-worker.js
blob: d04230a9dbeffc1be033b1328ba2a211353d2973 (plain)
1
2
3
4
5
6
7
8
9
10
11
var count = 0;
function timer() {
  var n = ++count;
  console.log("WORKER SAYS HELLO! " + n);
}

setInterval(timer, 1000);

self.onmessage = () => {
  console.log("hi");
};