Skip to content

Instantly share code, notes, and snippets.

@wryk
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save wryk/c76d55763722edab5cc4 to your computer and use it in GitHub Desktop.

Select an option

Save wryk/c76d55763722edab5cc4 to your computer and use it in GitHub Desktop.
import objectUrl from 'object-url'
export default function scriptToWorker (script) {
var blob = new Blob([script], {type: 'application/javascript'})
var url = objectUrl.create(blob)
var worker = new Worker(url)
objectUrl.revoke(url)
return worker
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment