first commit

This commit is contained in:
s.golasch
2023-08-01 13:49:46 +02:00
commit 1fc239fd54
20238 changed files with 3112246 additions and 0 deletions

23
build/node_modules/ieee754/test/basic.js generated vendored Normal file
View File

@@ -0,0 +1,23 @@
var ieee754 = require('../')
var test = require('tape')
var EPSILON = 0.00001
test('read float', function (t) {
var buf = new Buffer(4)
buf.writeFloatLE(42.42, 0)
var num = ieee754.read(buf, 0, true, 23, 4)
t.ok(Math.abs(num - 42.42) < EPSILON)
t.end()
})
test('write float', function (t) {
var buf = new Buffer(4)
ieee754.write(buf, 42.42, 0, true, 23, 4)
var num = buf.readFloatLE(0)
t.ok(Math.abs(num - 42.42) < EPSILON)
t.end()
})