summaryrefslogtreecommitdiffstats
path: root/node_modules/@webassemblyjs/ieee754/src
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/@webassemblyjs/ieee754/src')
-rw-r--r--node_modules/@webassemblyjs/ieee754/src/index.js47
1 files changed, 47 insertions, 0 deletions
diff --git a/node_modules/@webassemblyjs/ieee754/src/index.js b/node_modules/@webassemblyjs/ieee754/src/index.js
new file mode 100644
index 0000000..c8540a5
--- /dev/null
+++ b/node_modules/@webassemblyjs/ieee754/src/index.js
@@ -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);
+}