4 lines
91 B
JavaScript
4 lines
91 B
JavaScript
self.onconnect = function (e) {
|
|
const port = e.ports[0];
|
|
port.postMessage('ready');
|
|
};
|