1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00
denoland-deno/tests/unit_node/testdata/worker_module/βάρβαροι.js

10 lines
175 B
JavaScript
Raw Normal View History

export async function myFunction() {
await new Promise((resolve) =>
setTimeout(() => {
postMessage("hallo");
resolve;
}, 100)
);
}
await myFunction();