blob: bc3f358f857181bb01d47b235ea3a02dfdce888b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
if (self.name !== "tsWorker") {
throw Error(`Invalid worker name: ${self.name}, expected tsWorker`);
}
onmessage = function(e): void {
console.log(e.data);
postMessage(e.data);
close();
};
|