summaryrefslogtreecommitdiff
path: root/cli/tests/subdir/test_worker.ts
blob: c8109d1318c918929a361e39e8b3c5c325f27cb3 (plain)
1
2
3
4
5
6
7
onmessage = function(e): void {
  console.log(e.data);

  postMessage(e.data);

  workerClose();
};