UNPKG

ng-tasty

Version:

A lightweight, flexible, and tasty collection of reusable UI components for AngularJS.

16 lines (15 loc) 295 B
/** * @ngdoc filter * @name ngTasty.filter.filterInt * @function * */ angular.module('ngTasty.filter.filterInt', []) .filter('filterInt', function() { return function (input) { if(/^(\-|\+)?([0-9]+|Infinity)$/.test(input)) { return Number(input); } return NaN; }; });