g214/static/bower_components/modernizr/feature-detects/blob-constructor.js

11 lines
219 B
JavaScript
Raw Normal View History

2018-08-20 08:21:25 +00:00
// Blob constructor
// http://dev.w3.org/2006/webapi/FileAPI/#constructorBlob
Modernizr.addTest('blobconstructor', function () {
try {
return !!new Blob();
} catch (e) {
return false;
}
});