Skip to content

Instantly share code, notes, and snippets.

@deebloo
Created June 4, 2016 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save deebloo/0086b456f07af830c3311b9b346f0cb4 to your computer and use it in GitHub Desktop.
Save deebloo/0086b456f07af830c3311b9b346f0cb4 to your computer and use it in GitHub Desktop.
var myWorker = $worker().create(function () {
self.postMessage('Hello World');
});
myWorker.run().then(function (e) {
console.log(e.data); // 'Hello World'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment