(o: Record<string, T> | ArrayLike<T>)
| 11 | export type ObjCallback<T, R> = (this: any, value: T, key: string, obj: Record<string, T>) => R; |
| 12 | |
| 13 | const isArrayLike = <T>(o: Record<string, T> | ArrayLike<T>): o is ArrayLike<T> => |
| 14 | o.length !== undefined; |
| 15 | |
| 16 | const isArray = Array.isArray; |
| 17 |
no outgoing calls
no test coverage detected
searching dependent graphs…