mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
24 lines
635 B
JavaScript
24 lines
635 B
JavaScript
/*!
|
|
{
|
|
"name": "Quota Storage Management API",
|
|
"property": "quotamanagement",
|
|
"tags": ["storage"],
|
|
"builderAliases": ["quota_management_api"],
|
|
"notes": [{
|
|
"name": "W3C Spec",
|
|
"href": "https://www.w3.org/TR/quota-api/"
|
|
}]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Detects the ability to request a specific amount of space for filesystem access
|
|
*/
|
|
define(['Modernizr', 'prefixed'], function(Modernizr, prefixed) {
|
|
Modernizr.addTest('quotamanagement', function() {
|
|
var tempStorage = prefixed('temporaryStorage', navigator);
|
|
var persStorage = prefixed('persistentStorage', navigator);
|
|
|
|
return !!(tempStorage && persStorage);
|
|
});
|
|
});
|