mirror of https://github.com/webpack/webpack.git
9 lines
209 B
JavaScript
9 lines
209 B
JavaScript
|
module.exports = function supportsWebAssembly() {
|
||
|
try {
|
||
|
// eslint-disable-next-line n/no-unsupported-features/node-builtins
|
||
|
return typeof Response !== "undefined";
|
||
|
} catch (_err) {
|
||
|
return false;
|
||
|
}
|
||
|
};
|