( path: string, json: unknown )
| 8 | }; |
| 9 | |
| 10 | export function calculateRelatedValuesGroups( |
| 11 | path: string, |
| 12 | json: unknown |
| 13 | ): Array<RelatedValuesGroup> { |
| 14 | const relatedPaths = getRelatedPathsAtPath(path, json); |
| 15 | return groupRelatedValues(relatedPaths, json); |
| 16 | } |
| 17 | |
| 18 | export function groupRelatedValues( |
| 19 | relatedPaths: Array<string>, |
no test coverage detected