7cde2fb52e93edaee266db2e288aef4eb95e5b7342635a4df72ec31defdbfbc27a0d09066de89b25d64880e8e176a12f1dbcea8f918c8ce49af22bbb5d66f8 647 B

1234567891011121314151617181920212223242526272829303132333435
  1. 'use strict';
  2. // https://262.ecma-international.org/15.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. };