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