mirror of https://github.com/webpack/webpack.git
8 lines
138 B
JavaScript
8 lines
138 B
JavaScript
|
module.exports = function supportsWebAssembly() {
|
||
|
try {
|
||
|
return typeof WebAssembly !== "undefined";
|
||
|
} catch(e) {
|
||
|
return false;
|
||
|
}
|
||
|
};
|