2025-07-16 22:29:28 +08:00
|
|
|
"use strict";
|
|
|
|
|
2017-11-12 02:41:55 +08:00
|
|
|
module.exports = function supportsWebAssembly() {
|
|
|
|
try {
|
|
|
|
return typeof WebAssembly !== "undefined";
|
2024-07-31 15:37:05 +08:00
|
|
|
} catch (_err) {
|
2017-11-12 02:41:55 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|