UNPKG
rxjs-es
Version:
latest (5.0.0-beta.12)
5.0.0-beta.12
5.0.0-beta.11
5.0.0-beta.10
5.0.0-beta.9
5.0.0-beta.8
5.0.0-beta.7
5.0.0-beta.6
5.0.0-beta.5
5.0.0-beta.4
5.0.0-beta.3
5.0.0-beta.2
5.0.0-beta.1
5.0.0-beta.0
5.0.0-alpha.14
5.0.0-alpha.13
5.0.0-alpha.12
Reactive Extensions for modern JavaScript
github.com/ReactiveX/RxJS
ReactiveX/RxJS
rxjs-es
/
util
/
not.js
9 lines
•
243 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
function
not
(
pred, thisArg
) {
function
notPred
(
) {
return
!(notPred.
pred
.
apply
(notPred.
thisArg
,
arguments
)); } notPred.
pred
= pred; notPred.
thisArg
= thisArg;
return
notPred; }
//# sourceMappingURL=not.js.map