mirror of
https://github.com/ION606/bluesky-client.git
synced 2026-05-14 21:26:54 +00:00
10 lines
258 B
JavaScript
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);
|
|
};
|