Skip to content

Instantly share code, notes, and snippets.

@stackdumper
Created March 25, 2018 14:05
Show Gist options
  • Save stackdumper/3266d4a05da97813925e4cf89e1bfad7 to your computer and use it in GitHub Desktop.
Save stackdumper/3266d4a05da97813925e4cf89e1bfad7 to your computer and use it in GitHub Desktop.
Run script in web worker
const run = (fn, ...args) => {
return new Worker(URL.createObjectURL(new Blob([`(${fn})(${args})`])));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment