mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
17 lines
350 B
JavaScript
17 lines
350 B
JavaScript
console.log('hello from the worker');
|
|
|
|
function workerFunction() {
|
|
return 'worker function result';
|
|
}
|
|
|
|
self.addEventListener('message', (event) => {
|
|
console.log('got this data: ' + event.data);
|
|
});
|
|
|
|
(async function () {
|
|
while (true) {
|
|
self.postMessage(workerFunction.toString());
|
|
await new Promise((x) => setTimeout(x, 100));
|
|
}
|
|
})();
|