Files

10 lines
258 B
JavaScript
Raw Permalink Normal View History

2024-11-22 22:45:46 -05:00
// listen for messages from the main thread
self.onmessage = function (event) {
const data = event.data;
self.postMessage(document.querySelector('#posts')?.firstChild)
// send the result back to the main thread
self.postMessage(result);
};