mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
5 lines
117 B
JavaScript
5 lines
117 B
JavaScript
|
|
onconnect = event => {
|
||
|
|
const port = event.ports[0];
|
||
|
|
port.onmessage = e => port.postMessage('echo:' + e.data);
|
||
|
|
};
|