UNPKG

angular-filter

Version:

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

16 lines (15 loc) 278 B
/** * @ngdoc filter * @name isNull * @kind function * * @description * checks if value is null or not * @return Boolean */ angular.module('a8m.is-null', []) .filter('isNull', function () { return function(input) { return isNull(input); } });