doipjs/node_modules/nise/lib/fake-xhr/blob.js
Yarmo Mackenbach e996bc8023 Initial commit
2020-10-23 22:35:53 +02:00

9 lines
149 B
JavaScript

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