browsernizr
Version:
Modernizr wrapper for use with browserify
20 lines (18 loc) • 472 B
JavaScript
/*!
{
"name": "Shared Workers",
"property": "sharedworkers",
"caniuse": "sharedworkers",
"tags": ["performance", "workers"],
"builderAliases": ["workers_sharedworkers"],
"notes": [{
"name": "W3C Spec",
"href": "https://www.w3.org/TR/workers/"
}]
}
!*/
/* DOC
Detects support for the `SharedWorker` API from the Web Workers spec.
*/
var Modernizr = require('./../../lib/Modernizr.js');
Modernizr.addTest('sharedworkers', 'SharedWorker' in window);