mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
24 lines
664 B
JavaScript
24 lines
664 B
JavaScript
/*!
|
|
{
|
|
"name": "Navigation Timing API",
|
|
"property": "performance",
|
|
"caniuse": "nav-timing",
|
|
"tags": ["performance"],
|
|
"authors": ["Scott Murphy (@uxder)"],
|
|
"notes": [{
|
|
"name": "W3C Spec",
|
|
"href": "https://www.w3.org/TR/navigation-timing/"
|
|
}, {
|
|
"name": "HTML5 Rocks Tutorial",
|
|
"href": "https://www.html5rocks.com/en/tutorials/webperformance/basics/"
|
|
}],
|
|
"polyfills": ["perfnow"]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Detects support for the Navigation Timing API, for measuring browser and connection performance.
|
|
*/
|
|
define(['Modernizr', 'prefixed'], function(Modernizr, prefixed) {
|
|
Modernizr.addTest('performance', !!prefixed('performance', window));
|
|
});
|