Files
bluesky-client/JS/worker.js
T
2024-11-22 22:45:46 -05:00

10 lines
258 B
JavaScript

// 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);
};