Skip to content

Instantly share code, notes, and snippets.

@zazaulola
Created July 5, 2022 16:10
Show Gist options
  • Save zazaulola/939809b49576c2b22c8fd8a79c87b2be to your computer and use it in GitHub Desktop.
Save zazaulola/939809b49576c2b22c8fd8a79c87b2be to your computer and use it in GitHub Desktop.
function createWorker(callable) {
const code = `onmessage=${callable.toString()}`;
const blob = new Blob([code], { type: 'text/javascript' });
const url = URL.createObjectURL(blob);
const worker = new Worker(url);
URL.revokeObjectURL(url);
return worker;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment