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