1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-08 07:08:27 -05:00
denoland-deno/tests/specs/test/captured_output/captured_output.worker.ts

7 lines
106 B
TypeScript
Raw Normal View History

self.onmessage = () => {
console.log(8);
console.error(9);
self.postMessage({});
self.close();
};