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

10 lines
149 B
JavaScript
Raw Normal View History

2020-10-23 14:35:53 -06:00
"use strict";
exports.isSupported = (function() {
try {
return Boolean(new Blob());
} catch (e) {
return false;
}
})();