Angular service to properly do math without floating point errors.
include module as a dependency of your app.
angular.module('myModule', ['MathUtils'])
.controller('myController', function(math_utils){
var result = math_utils.add(1, 2, 3);
console.log(result, 'should be 6');
})
npm install
bower install
grunt