| 282 | } |
| 283 | |
| 284 | interface Nested<T> { |
| 285 | items: T[]; |
| 286 | key: string; |
| 287 | } |
| 288 | |
| 289 | function nest<T extends Record<string, any>>(array: readonly T[], property: string): Nested<T>[] { |
| 290 | const nested: Nested<T>[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…