Current Dev State

This commit is contained in:
Tim Lorsbach
2025-06-23 20:13:54 +02:00
parent b4f9bb277d
commit ded50edaa2
22617 changed files with 4345095 additions and 174 deletions

23
static/js/ketcher2/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()
})