Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / internal / util / not.js
1 "use strict";
2 Object.defineProperty(exports, "__esModule", { value: true });
3 function not(pred, thisArg) {
4     function notPred() {
5         return !(notPred.pred.apply(notPred.thisArg, arguments));
6     }
7     notPred.pred = pred;
8     notPred.thisArg = thisArg;
9     return notPred;
10 }
11 exports.not = not;
12 //# sourceMappingURL=not.js.map