Files
braid/node_modules/nise/lib/fake-xhr/blob.js

11 lines
160 B
JavaScript

/*global Blob */
"use strict";
exports.isSupported = (function () {
try {
return !!new Blob();
} catch (e) {
return false;
}
}());