(i: any)
| 44 | * @internal please do not use. |
| 45 | */ |
| 46 | export function isValidIndex(i: any): i is number | string { |
| 47 | const a = []; |
| 48 | a[i] = 1; |
| 49 | return !!a.length && a[i] === 1; |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * @internal please do not use. |
no outgoing calls
no test coverage detected