(record: Record<string, string>)
| 173 | } |
| 174 | |
| 175 | function sortKeys(record: Record<string, string>): Record<string, string> { |
| 176 | return Object.fromEntries(Object.entries(record).sort(([a], [b]) => a.localeCompare(b))); |
| 177 | } |
no outgoing calls
no test coverage detected