1.1.1 • Published 5 years ago

accurate-calculate v1.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

accurate-calculate

npm (scoped) github (scoped) npm bundle size (minified)

Install

$ npm install accurate-calculate

Usage

不清楚为什么0.2+0.1 !== 0.3的童鞋 看一看.

// es6
import { accMul, accDiv, accAdd, accSub } from "accurate-calculate";
// common js
const { accMul, accDiv, accAdd, accSub } = require("accurate-calculate");

// no use
console.log(0.1 + 0.2);
//=> 0.30000000000000004
// use
console.log(accAdd(0.1, 0.2));
//=> 0.3
1.1.1

5 years ago

1.1.0

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago