Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
47
my-app/node_modules/@webassemblyjs/ieee754/src/index.js
generated
vendored
Executable file
47
my-app/node_modules/@webassemblyjs/ieee754/src/index.js
generated
vendored
Executable file
|
|
@ -0,0 +1,47 @@
|
|||
// @flow
|
||||
|
||||
import { write, read } from "@xtuc/ieee754";
|
||||
|
||||
/**
|
||||
* According to https://webassembly.github.io/spec/binary/values.html#binary-float
|
||||
* n = 32/8
|
||||
*/
|
||||
export const NUMBER_OF_BYTE_F32 = 4;
|
||||
|
||||
/**
|
||||
* According to https://webassembly.github.io/spec/binary/values.html#binary-float
|
||||
* n = 64/8
|
||||
*/
|
||||
export const NUMBER_OF_BYTE_F64 = 8;
|
||||
|
||||
export const SINGLE_PRECISION_MANTISSA = 23;
|
||||
|
||||
export const DOUBLE_PRECISION_MANTISSA = 52;
|
||||
|
||||
export function encodeF32(v: number): Array<number> {
|
||||
const buffer = [];
|
||||
|
||||
write(buffer, v, 0, true, SINGLE_PRECISION_MANTISSA, NUMBER_OF_BYTE_F32);
|
||||
|
||||
return buffer;
|
||||
}
|
||||
|
||||
export function encodeF64(v: number): Array<number> {
|
||||
const buffer = [];
|
||||
|
||||
write(buffer, v, 0, true, DOUBLE_PRECISION_MANTISSA, NUMBER_OF_BYTE_F64);
|
||||
|
||||
return buffer;
|
||||
}
|
||||
|
||||
export function decodeF32(bytes: Array<Byte>): number {
|
||||
const buffer = Buffer.from(bytes);
|
||||
|
||||
return read(buffer, 0, true, SINGLE_PRECISION_MANTISSA, NUMBER_OF_BYTE_F32);
|
||||
}
|
||||
|
||||
export function decodeF64(bytes: Array<Byte>): number {
|
||||
const buffer = Buffer.from(bytes);
|
||||
|
||||
return read(buffer, 0, true, DOUBLE_PRECISION_MANTISSA, NUMBER_OF_BYTE_F64);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue