mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
if (self.name !== "") {
|
|
throw Error(`Bad worker name: ${self.name}, expected empty string.`);
|
|
}
|
|
|
|
onmessage = function (e) {
|
|
postMessage(e.data);
|
|
close();
|
|
};
|