Skip to content

lib/v8 Adding TypedArray to primordials

Adding every TypedArray to the Primordials global objects.

And update v8 to ensure the usage of these TypedArray from primordials.

const {
  Array,
  ArrayBuffer,
  Float32Array,
  Float64Array,
  Int16Array,
  Int32Array,
  Int8Array,
  ObjectPrototypeToString,
  Uint16Array,
  Uint32Array,
  Uint8Array,
  Uint8ClampedArray,
} = primordials;

Thanks another time @targos I hope this PR will help you :)

Merge request reports

Loading