initial code commit

This commit is contained in:
2024-11-22 22:45:46 -05:00
parent 7d11b4ae14
commit 551566350e
37 changed files with 7331 additions and 129 deletions
+9
View File
@@ -0,0 +1,9 @@
// 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);
};