(metrics, clientId)
| 449 | } |
| 450 | |
| 451 | function findClientStreams(metrics, clientId) { |
| 452 | return (metrics.client_streams ?? []).filter( |
| 453 | (stream) => stream.clientId === clientId, |
| 454 | ); |
| 455 | } |
| 456 | |
| 457 | function latestByKind(streams, kind) { |
| 458 | return streams |
no outgoing calls
no test coverage detected