webpack/test/helpers/supportsBlob.js

8 lines
128 B
JavaScript
Raw Normal View History

2025-02-11 02:04:50 +08:00
module.exports = function supportsBlob() {
try {
return typeof Blob !== "undefined";
} catch (_err) {
return false;
}
};