Created
January 27, 2021 15:47
-
-
Save luistak/d28a22161843d0824163374cf35c0935 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let said = []; | |
export function say(message) { | |
console.log({ message, said }); | |
said.push(message) | |
// This postMessage communicates with everyone listening to this worker | |
postMessage(message); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment