mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
5f015eac9c
This commit fixes hang in web workers occuring when sending "undefined" as message value. It is a temporary band-aid until proper structured close is implemented. Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
5 lines
158 B
TypeScript
5 lines
158 B
TypeScript
self.onmessage = (ev: MessageEvent) => {
|
|
console.log("received in worker", ev.data);
|
|
self.postMessage(undefined);
|
|
console.log("posted from worker");
|
|
};
|