MCPcopy
hub / github.com/rx-angular/rx-angular / onlyValues

Function onlyValues

libs/template/push/src/lib/push.pipe.ts:265–274  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

263const hasOwnProperty = Object.prototype.hasOwnProperty;
264
265function onlyValues<T>(): MonoTypeOperatorFunction<RxNotification<T>> {
266 return (o$) =>
267 o$.pipe(
268 filter(
269 (n) =>
270 n.kind === RxNotificationKind.Suspense ||
271 n.kind === RxNotificationKind.Next
272 )
273 );
274}
275
276function isRxComponentInput<U>(value: any): value is PushInput<U> {
277 return (

Callers 1

RxPushClass · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected