0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-10 14:17:49 -04:00
deno/tests/subdir/test_worker.ts

8 lines
94 B
TypeScript
Raw Normal View History

onmessage = function(e) {
console.log(e.data);
postMessage(e.data);
workerClose();
};