(array: string[], value: string)
| 166 | * located) |
| 167 | */ |
| 168 | export function arrayIndexOfSorted(array: string[], value: string): number { |
| 169 | return _arrayIndexOfSorted(array, value, 0); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * `KeyValueArray` is an array where even positions contain keys and odd positions contain values. |
no test coverage detected
searching dependent graphs…