(entries: [string, T][])
| 152 | } |
| 153 | |
| 154 | function sortByPascalName<T>(entries: [string, T][]): [string, T][] { |
| 155 | return entries.sort(([left], [right]) => toPascalCase(left).localeCompare(toPascalCase(right))); |
| 156 | } |
| 157 | |
| 158 | function compareGoTypeNames(left: string, right: string): number { |
| 159 | return left.localeCompare(right); |
no test coverage detected
searching dependent graphs…