Skip to content

Commit b6438b1

Browse files
committed
fixup
Signed-off-by: Matteo Collina <[email protected]>
1 parent ce9f9bd commit b6438b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/dispatcher/client-h1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function lazyllhttp () {
6666
let mod
6767

6868
// 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') {
69+
if (process.env.UNDICI_NO_WASM_SIMD !== '1' || process.arch !== 'ppc64') {
7070
try {
7171
mod = new WebAssembly.Module(require('../llhttp/llhttp_simd-wasm.js'))
7272
/* istanbul ignore next */

0 commit comments

Comments
 (0)