webpack/test/helpers/supportsBlob.js

8 lines
135 B
JavaScript
Raw Normal View History

module.exports = function supportsWebAssembly() {
try {
return typeof Blob !== "undefined";
} catch (_err) {
return false;
}
};