We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce9f9bd commit b6438b1Copy full SHA for b6438b1
lib/dispatcher/client-h1.js
@@ -66,7 +66,7 @@ function lazyllhttp () {
66
let mod
67
68
// We are disabling wasm SIMD on ppc64 as it seems to be broken on Power 9 architectures.
69
- if (!process.env.UNDICI_NO_WASM_SIMD || process.arch !== 'ppc64') {
+ if (process.env.UNDICI_NO_WASM_SIMD !== '1' || process.arch !== 'ppc64') {
70
try {
71
mod = new WebAssembly.Module(require('../llhttp/llhttp_simd-wasm.js'))
72
/* istanbul ignore next */
0 commit comments