( collection: Collection<T>, )
| 48 | * Get count of loaded items in a collection |
| 49 | */ |
| 50 | export function getLoadedCount<T extends object>( |
| 51 | collection: Collection<T>, |
| 52 | ): number { |
| 53 | return collection.size |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Check if a collection has loaded specific IDs |
nothing calls this directly
no outgoing calls
no test coverage detected