(o: A)
| 446 | * @since 2.0.0 |
| 447 | */ |
| 448 | export const structure = <A extends object>(o: A) => structureKeys(o, getAllObjectKeys(o)) |
| 449 | |
| 450 | const iterableWith = (seed: number, f: (el: any) => number) => (iter: Iterable<any>) => { |
| 451 | let h = seed |
no test coverage detected