Blame view
resources/js/common/services/not.js
175 Bytes
e77200db5 Initial commit |
1 2 3 4 5 6 7 8 9 |
angular.module('not', []) .service('Not', [function () { return function (func) { return function (item) { return !func(item); }; }; }]); |