(o: A)
| 148 | * @category hashing |
| 149 | */ |
| 150 | export const structure = <A extends object>(o: A) => |
| 151 | structureKeys(o, Object.keys(o) as unknown as ReadonlyArray<keyof A>) |
| 152 | |
| 153 | /** |
| 154 | * @since 2.0.0 |
nothing calls this directly
no test coverage detected