You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The composition of zero things should be the identity under composition, which is Rx.identity, not Rx.noop. That allows pipe(pipe(), pipe(f)) to be equivalent to pipe([].concat([], [f]), which is equivalent to f.
I'm new to RxJS, so I don't know if people rely on this behavior.
The text was updated successfully, but these errors were encountered:
https://github.com/ReactiveX/rxjs/blob/6.5.2/src/internal/util/pipe.ts#L25
The composition of zero things should be the identity under composition, which is
Rx.identity
, notRx.noop
. That allowspipe(pipe(), pipe(f))
to be equivalent topipe([].concat([], [f])
, which is equivalent tof
.I'm new to RxJS, so I don't know if people rely on this behavior.
The text was updated successfully, but these errors were encountered: