webpack/test/helpers/supportsWebAssembly.js

10 lines
157 B
JavaScript
Raw Normal View History

"use strict";
module.exports = function supportsWebAssembly() {
try {
return typeof WebAssembly !== "undefined";
2024-07-31 15:37:05 +08:00
} catch (_err) {
return false;
}
};