(left: string, right: string)
| 21 | const INDEX_SIGNATURE_VERSION = 1 as const |
| 22 | |
| 23 | function compareStringsCodePoint(left: string, right: string): number { |
| 24 | if (left === right) { |
| 25 | return 0 |
| 26 | } |
| 27 | |
| 28 | return left < right ? -1 : 1 |
| 29 | } |
| 30 | |
| 31 | function resolveResolverMetadata<TKey extends string | number>( |
| 32 | resolver: IndexConstructor<TKey>, |
no outgoing calls
no test coverage detected