5a0256f16f251e8760621ed0c7b963c303e71812bba5d8760aa09901dfab7f5f0bdd649710b15b845e5cce6f6378c95991c6937f6d85b80a20b57b3530c4c8 647 B

1234567891011121314151617181920212223242526272829303132333435
  1. 'use strict';
  2. // https://262.ecma-international.org/11.0/#table-the-typedarray-constructors
  3. module.exports = {
  4. __proto__: null,
  5. name: {
  6. __proto__: null,
  7. $Int8Array: 'Int8',
  8. $Uint8Array: 'Uint8',
  9. $Uint8ClampedArray: 'Uint8C',
  10. $Int16Array: 'Int16',
  11. $Uint16Array: 'Uint16',
  12. $Int32Array: 'Int32',
  13. $Uint32Array: 'Uint32',
  14. $BigInt64Array: 'BigInt64',
  15. $BigUint64Array: 'BigUint64',
  16. $Float32Array: 'Float32',
  17. $Float64Array: 'Float64'
  18. },
  19. size: {
  20. __proto__: null,
  21. $Int8: 1,
  22. $Uint8: 1,
  23. $Uint8C: 1,
  24. $Int16: 2,
  25. $Uint16: 2,
  26. $Int32: 4,
  27. $Uint32: 4,
  28. $BigInt64: 8,
  29. $BigUint64: 8,
  30. $Float32: 4,
  31. $Float64: 8
  32. }
  33. };