()
| 263 | const hasOwnProperty = Object.prototype.hasOwnProperty; |
| 264 | |
| 265 | function 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 | |
| 276 | function isRxComponentInput<U>(value: any): value is PushInput<U> { |
| 277 | return ( |