Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
devtools
/
node_modules
/
rxjs
/
src
/
internal
/
util
/
not.ts
blob: e5e695229770660fb9a60ec2be0f2791958738d3 [
file
] [
log
] [
blame
]
export
function
not
(
pred
:
Function
,
thisArg
:
any
):
Function
{
function
notPred
():
any
{
return
!((<
any
>
notPred
).
pred
.
apply
((<
any
>
notPred
).
thisArg
,
arguments
));
}
(<
any
>
notPred
).
pred
=
pred
;
(<
any
>
notPred
).
thisArg
=
thisArg
;
return
notPred
;
}