Sha256: ceece734294f401e0fd807d2c34431250ae6808cf50ea38bf7f0534942d476d1
Contents?: true
Size: 402 Bytes
Versions: 204
Compression:
Stored size: 402 Bytes
Contents
(function () { /** * @ngdoc filter * @name Bastion.utils.filter:roundUp * * @description * Converts an ng-model to a number. * * @example * {{ 107.5 | roundUp }} */ function roundUp() { return function (value) { return Math.ceil(value); }; } angular.module('Bastion.utils').filter('roundUp', roundUp); })();
Version data entries
204 entries across 204 versions & 2 rubygems