11 lines
219 B
JavaScript
Raw Normal View History

2014-03-09 14:43:33 -06:00
// Blob constructor
// http://dev.w3.org/2006/webapi/FileAPI/#constructorBlob
Modernizr.addTest('blobconstructor', function () {
try {
return !!new Blob();
} catch (e) {
return false;
}
});