helpyourneighbour/node_modules/nise/lib/fake-xhr/blob.js

10 lines
150 B
JavaScript
Raw Normal View History

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