(val, offset = 0)
| 946 | } |
| 947 | |
| 948 | function writeFloatBackwards(val, offset = 0) { |
| 949 | val = +val; |
| 950 | checkBounds(this, offset, 3); |
| 951 | |
| 952 | float32Array[0] = val; |
| 953 | this[offset++] = uInt8Float32Array[3]; |
| 954 | this[offset++] = uInt8Float32Array[2]; |
| 955 | this[offset++] = uInt8Float32Array[1]; |
| 956 | this[offset++] = uInt8Float32Array[0]; |
| 957 | return offset; |
| 958 | } |
| 959 | |
| 960 | class FastBuffer extends Uint8Array {} |
| 961 |
nothing calls this directly
no test coverage detected
searching dependent graphs…