Package Exports
- archi
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (archi) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
+archi 
Easy math with decimals for Javascript

Install
Using npm
npm install archiUsing bower
bower install archiNative simple Javascript sum
0.1 + 0.2; // 0.30000000000000004;
0.3 - 0.1; // 0.19999999999999998;Solving the issue with archi
var archi = require('archi');
var num = +archi
.calc(0.1)
.plus(0.2)
.plus(0.1)
.minus(0.1); // 0.3
num === 0.3; // trueBut, why the + ahead?
Do this to do a fast conversion from the ArchiNumber instance to the native Number type.
Methods
.plus(num): current num + other num.minus(num): current num - other num.mod(num): current num % other num
License
MIT