(rows: T[])
| 50 | } |
| 51 | |
| 52 | function sortCounts<T extends { count: number }>(rows: T[]): T[] { |
| 53 | return [...rows].sort((a, b) => b.count - a.count) |
| 54 | } |
| 55 | |
| 56 | export async function getFreebuffLiveStats( |
| 57 | now?: Date, |
no outgoing calls
no test coverage detected