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 ee288df commit 225a893Copy full SHA for 225a893
lib/internal/http2/core.js
@@ -17,7 +17,6 @@ const {
17
ReflectSet,
18
Set,
19
Symbol,
20
- TypedArrayPrototypeGetLength,
21
Uint32Array,
22
Uint8Array,
23
} = primordials;
@@ -936,7 +935,7 @@ const validateSettings = hideStackFrames((settings) => {
936
935
// Wrap a typed array in a proxy, and allow selectively copying the entries
937
// that have explicitly been set to another typed array.
938
function trackAssignmentsTypedArray(typedArray) {
939
- const typedArrayLength = TypedArrayPrototypeGetLength(typedArray);
+ const typedArrayLength = typedArray.length;
940
const modifiedEntries = new Uint8Array(typedArrayLength);
941
942
function copyAssigned(target) {
0 commit comments