* Strings sorted lexicographically.
(a: string, b: string)
| 210 | * Strings sorted lexicographically. |
| 211 | */ |
| 212 | function keySort(a: string, b: string): number { |
| 213 | return a.localeCompare(b) |
| 214 | } |
nothing calls this directly
no outgoing calls
no test coverage detected