( a: AgentDefinition, b: AgentDefinition, )
| 95 | * Compare agents alphabetically by name (case-insensitive). |
| 96 | */ |
| 97 | export function compareAgentsByName( |
| 98 | a: AgentDefinition, |
| 99 | b: AgentDefinition, |
| 100 | ): number { |
| 101 | return a.agentType.localeCompare(b.agentType, undefined, { |
| 102 | sensitivity: 'base', |
| 103 | }) |
| 104 | } |
| 105 |
nothing calls this directly
no outgoing calls
no test coverage detected