source: imaps-frontend/node_modules/es-abstract/2021/NumericToRawBytes.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.1 KB
RevLine 
[d565449]1'use strict';
2
3var $TypeError = require('es-errors/type');
4
5var hasOwnProperty = require('./HasOwnProperty');
6var ToBigInt64 = require('./ToBigInt64');
7var ToBigUint64 = require('./ToBigUint64');
8var ToInt16 = require('./ToInt16');
9var ToInt32 = require('./ToInt32');
10var ToInt8 = require('./ToInt8');
11var ToUint16 = require('./ToUint16');
12var ToUint32 = require('./ToUint32');
13var ToUint8 = require('./ToUint8');
14var ToUint8Clamp = require('./ToUint8Clamp');
15
16var valueToFloat32Bytes = require('../helpers/valueToFloat32Bytes');
17var valueToFloat64Bytes = require('../helpers/valueToFloat64Bytes');
18var integerToNBytes = require('../helpers/integerToNBytes');
19
20var keys = require('object-keys');
21
22// https://262.ecma-international.org/11.0/#table-the-typedarray-constructors
23var TypeToSizes = {
24 __proto__: null,
25 Int8: 1,
26 Uint8: 1,
27 Uint8C: 1,
28 Int16: 2,
29 Uint16: 2,
30 Int32: 4,
31 Uint32: 4,
32 BigInt64: 8,
33 BigUint64: 8,
34 Float32: 4,
35 Float64: 8
36};
37
38var TypeToAO = {
39 __proto__: null,
40 Int8: ToInt8,
41 Uint8: ToUint8,
42 Uint8C: ToUint8Clamp,
43 Int16: ToInt16,
44 Uint16: ToUint16,
45 Int32: ToInt32,
46 Uint32: ToUint32,
47 BigInt64: ToBigInt64,
48 BigUint64: ToBigUint64
49};
50
51// https://262.ecma-international.org/11.0/#sec-numerictorawbytes
52
53module.exports = function NumericToRawBytes(type, value, isLittleEndian) {
54 if (typeof type !== 'string' || !hasOwnProperty(TypeToSizes, type)) {
55 throw new $TypeError('Assertion failed: `type` must be a TypedArray element type: ' + keys(TypeToSizes));
56 }
57 if (typeof value !== 'number' && typeof value !== 'bigint') {
58 throw new $TypeError('Assertion failed: `value` must be a Number or a BigInt');
59 }
60 if (typeof isLittleEndian !== 'boolean') {
61 throw new $TypeError('Assertion failed: `isLittleEndian` must be a Boolean');
62 }
63
64 if (type === 'Float32') { // step 1
65 return valueToFloat32Bytes(value, isLittleEndian);
66 } else if (type === 'Float64') { // step 2
67 return valueToFloat64Bytes(value, isLittleEndian);
68 } // step 3
69
70 var n = TypeToSizes[type]; // step 3.a
71
72 var convOp = TypeToAO[type]; // step 3.b
73
74 var intValue = convOp(value); // step 3.c
75
76 return integerToNBytes(intValue, n, isLittleEndian); // step 3.d, 3.e, 4
77};
Note: See TracBrowser for help on using the repository browser.