(commands: readonly KimiSlashCommand[])
| 425 | } |
| 426 | |
| 427 | export function sortSlashCommands(commands: readonly KimiSlashCommand[]): KimiSlashCommand[] { |
| 428 | return [...commands].toSorted( |
| 429 | (a, b) => (b.priority ?? 0) - (a.priority ?? 0) || a.name.localeCompare(b.name), |
| 430 | ); |
| 431 | } |
no outgoing calls
no test coverage detected