webpack/test/helpers/supportsWebAssembly.js

8 lines
139 B
JavaScript
Raw Normal View History

module.exports = function supportsWebAssembly() {
try {
return typeof WebAssembly !== "undefined";
2019-08-22 19:26:45 +08:00
} catch (e) {
return false;
}
};