1.0.0 • Published 20 days ago

math.sumprecise v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
20 days ago

Math.sumPrecise Version Badge

github actions coverage License Downloads

npm badge

An ES-spec-compliant Math.sumPrecise shim/polyfill/replacement that works as far down as ES3.

This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the proposed spec.

Getting started

npm install --save math.sumprecise

Usage/Examples

const sumPrecise = require('math.sumprecise');
const assert = require('assert');

// assert.equal(sumPrecise(42.84), 42.84375);
// assert.equal(sumPrecise(0.123), 0.12298583984375);
// assert.equal(sumPrecise(-0.123), -0.12298583984375);
// assert.equal(sumPrecise(1.337), 1.3369140625);
// assert.equal(sumPrecise(65504), 65504);
// assert.equal(sumPrecise(65505), 65504);

Tests

Simply clone the repo, npm install, and run npm test