10 lines
283 B
JavaScript
Raw Permalink Normal View History

2025-09-05 14:59:21 +08:00
const _WebAssembly = typeof WebAssembly !== 'undefined'
? WebAssembly
: typeof WXWebAssembly !== 'undefined'
? WXWebAssembly
: undefined;
if (!_WebAssembly) {
throw new Error('WebAssembly is not supported in this environment');
}
export { _WebAssembly };