not.js 175 Bytes
angular.module('not', [])

.service('Not', [function () {
    return function (func) {
        return function (item) {
            return !func(item);
        };
    };
}]);