2018-11-22 16:41:46 +01:00
|
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
function not(pred, thisArg) {
|
|
|
|
function notPred() {
|
|
|
|
return !(notPred.pred.apply(notPred.thisArg, arguments));
|
|
|
|
}
|
|
|
|
notPred.pred = pred;
|
|
|
|
notPred.thisArg = thisArg;
|
|
|
|
return notPred;
|
|
|
|
}
|
|
|
|
exports.not = not;
|
2019-06-04 14:29:48 +02:00
|
|
|
//# sourceMappingURL=not.js.map
|