Skip to content

Instantly share code, notes, and snippets.

@sethbergman
Forked from deebloo/$worker-example.js
Created April 27, 2017 07:04
Show Gist options
  • Save sethbergman/f67d0481722e41d356dccee26a6b8af9 to your computer and use it in GitHub Desktop.
Save sethbergman/f67d0481722e41d356dccee26a6b8af9 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