Skip to content

Instantly share code, notes, and snippets.

@cybrown
Created August 28, 2013 15:24
Show Gist options
  • Select an option

  • Save cybrown/6367307 to your computer and use it in GitHub Desktop.

Select an option

Save cybrown/6367307 to your computer and use it in GitHub Desktop.
Create a web worker from a function
var workerWithFunction = function (func) {
return new Worker(window.URL.createObjectURL(
new Blob(['(' + func.toString() + ')()'], {type: 'text/javascript'})
));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment