modernizr
Version:
Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.
20 lines (18 loc) • 417 B
JavaScript
/*!
{
"name": "PushManager",
"property": "pushmanager",
"caniuse": "mdn-api_pushmanager",
"authors": ["Dawid Kulpa (@dawidkulpa)"],
"notes": [{
"name": "MDN Docs",
"href": "https://developer.mozilla.org/en-US/docs/Web/API/PushManager"
}]
}
!*/
/* DOC
Detects support for PushManager.
*/
define(['Modernizr'], function(Modernizr) {
Modernizr.addTest('pushmanager', 'PushManager' in window);
});