Skip to content

Instantly share code, notes, and snippets.

@zerobias
Created September 14, 2017 22:57
Show Gist options
  • Select an option

  • Save zerobias/b4f7d46cd20698d6ea3cdd476901ef3e to your computer and use it in GitHub Desktop.

Select an option

Save zerobias/b4f7d46cd20698d6ea3cdd476901ef3e to your computer and use it in GitHub Desktop.
Web worker transferable object: feature detection
var ab = new ArrayBuffer(1);
worker.postMessage(ab, [ab]);
if (ab.byteLength) {
alert('Transferables are not supported in your browser!');
} else {
// Transferables are supported.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment