(seed: string, options: string[])
| 662 | index: number, |
| 663 | total: number, |
| 664 | ): string { |
| 665 | const avg = stat.sortAvgPerDay; |
| 666 | const isFirst = index === 0; |
| 667 | const isTopThree = index < 3; |
| 668 | const isBottom = index === total - 1; |
| 669 | const isTopHalf = index < Math.ceil(total / 2); |
| 670 | const hasLockedSeat = stat.lockedSeat; |
| 671 | const hasNoMessages = avg <= 0; |
| 672 | const recentDays = |
| 673 | stat.sortLastMessageTs > 0 |
no outgoing calls
no test coverage detected