blob: 0346177e17d498aea5310ebcd3be1f288c94f7de (
plain)
1
2
3
4
5
6
7
8
9
|
onmessage = async function(e) {
if (e.data === "RUN") {
console.log("worker runs");
await clients.claim();
clients.matchAll().then(res => {
res.forEach(client => client.postMessage("DONE"));
});
}
};
|