electron/spec/fixtures/api/shared-worker/shared-worker1.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
91 B
JavaScript
Raw Normal View History

self.onconnect = function (e) {
const port = e.ports[0];
port.postMessage('ready');
};