Skip to content

levelap/angular_math_utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

math_utils for angular

Angular service to properly do math without floating point errors.

Dependencies

Example

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');
})

Running tests

Install Global dependencies

Install Project dependencies

npm install
bower install

Run tests

grunt

About

Angular service to properly do math without floating point errors

Resources

License

Stars

0 stars

Watchers

2 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors