1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/testdata/workers/shared_array_buffer.ts

10 lines
230 B
TypeScript
Raw Normal View History

self.postMessage("ready");
globalThis.addEventListener("message", (e) => {
const bytes1 = new Uint8Array(e.data[0]);
const bytes2 = new Uint8Array(e.data[1]);
bytes1[0] = 1;
bytes2[0] = 2;
self.postMessage("done");
});