mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
20 lines
403 B
JavaScript
20 lines
403 B
JavaScript
/*!
|
|
{
|
|
"name": "Fetch API",
|
|
"property": "fetch",
|
|
"tags": ["network"],
|
|
"caniuse": "fetch",
|
|
"notes": [{
|
|
"name": "WHATWG Spec",
|
|
"href": "https://fetch.spec.whatwg.org/"
|
|
}],
|
|
"polyfills": ["fetch"]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Detects support for the fetch API, a modern replacement for XMLHttpRequest.
|
|
*/
|
|
define(['Modernizr'], function(Modernizr) {
|
|
Modernizr.addTest('fetch', 'fetch' in window);
|
|
});
|