webpack/test/helpers/supportsWebAssembly.js

8 lines
138 B
JavaScript
Raw Normal View History

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