webpack/test/helpers/supportsBlob.js

10 lines
143 B
JavaScript
Raw Normal View History

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