mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
b0a23beb8f
* Refactored the way worker polling is scheduled and errors are handled. * Share the worker future as a Shared
7 lines
94 B
JavaScript
7 lines
94 B
JavaScript
onmessage = function(e) {
|
|
console.log(e.data);
|
|
|
|
postMessage(e.data);
|
|
|
|
workerClose();
|
|
};
|