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 a008f81 commit 899de1cCopy full SHA for 899de1c
lib/internal/wasm_web_api.js
@@ -1,7 +1,7 @@
1
'use strict';
2
3
const {
4
- PromiseResolve
+ PromiseResolve,
5
} = primordials;
6
7
ERR_INVALID_ARG_TYPE,
@@ -10,7 +10,7 @@ const {
10
11
let undici;
12
function lazyUndici() {
13
- return undici || (undici = require('internal/deps/undici/undici'));
+ return undici ??= require('internal/deps/undici/undici');
14
}
15
16
// This is essentially an implementation of a v8::WasmStreamingCallback, except
0 commit comments