2
0
mirror of https://github.com/cderche/greenlock-storage-s3 synced 2025-05-13 16:16:32 +00:00
2019-05-08 12:19:12 +01:00

24 lines
461 B
JavaScript

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()
})