mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
19 lines
554 B
JavaScript
19 lines
554 B
JavaScript
/*!
|
|
{
|
|
"name": "Filesystem API",
|
|
"property": "filesystem",
|
|
"caniuse": "filesystem",
|
|
"notes": [{
|
|
"name": "W3C Spec",
|
|
"href": "https://www.w3.org/TR/file-system-api/"
|
|
}],
|
|
"authors": ["Eric Bidelman (@ebidel)"],
|
|
"tags": ["file"],
|
|
"builderAliases": ["file_filesystem"],
|
|
"knownBugs": ["The API will be present in Chrome incognito, but will throw an exception. See crbug.com/93417"]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'prefixed'], function(Modernizr, prefixed) {
|
|
Modernizr.addTest('filesystem', !!prefixed('requestFileSystem', window));
|
|
});
|