Skip to content

Instantly share code, notes, and snippets.

@developit
Last active June 11, 2020 03:37
Show Gist options
  • Save developit/5b09dc86c644d76f8fbd8abe294440f2 to your computer and use it in GitHub Desktop.
Save developit/5b09dc86c644d76f8fbd8abe294440f2 to your computer and use it in GitHub Desktop.
var s;
function supportsModuleWorkers() {
if (s==null) {
s = false;
try {
new Worker('data:,', Object.defineProperty({}, 'type', {
get() { s = true; }
})).terminate();
} catch (e) {}
}
return s;
}
@RReverser
Copy link

Typo in teminate.

@gangsthub
Copy link

Typo in teminate.

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment