diff options
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/not.js')
-rw-r--r-- | sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/not.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/not.js b/sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/not.js new file mode 100644 index 00000000..e2518ad5 --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/not.js @@ -0,0 +1,12 @@ +"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; +//# sourceMappingURL=not.js.map
\ No newline at end of file |