| 1 | import type { DepType, RawDep, ResolvedDepChange } from '../types' |
| 2 | |
| 3 | interface FlattenPkgData { [key: string]: { version: string, parents: string[] } } |
| 4 | |
| 5 | function flatten(obj: any, parents: string[] = []): FlattenPkgData { |
| 6 | if (!obj) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…