This repository has been archived on 2020-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
angularjs-batarang/js/filters/precision.js
2013-03-27 19:26:56 -04:00

7 lines
180 B
JavaScript

// returns the number's first 4 decimals
angular.module('panelApp').filter('precision', function () {
return function (input, output) {
return input.toPrecision(4);
};
});