UNPKG

angular-filter

Version:

Bunch of useful filters for angularJS(with no external dependencies!)

15 lines (14 loc) 259 B
/** * @ngdoc filter * @name abs * @kind function * * @description * Will return the absolute value of a number */ angular.module('a8m.math.abs', []) .filter('abs', function () { return function (input) { return Math.abs(input); } });