(path: string[])
| 1481 | } |
| 1482 | |
| 1483 | function goJSONMatchPathParentPath(path: string[]): string[] { |
| 1484 | return path.slice(0, -1); |
| 1485 | } |
| 1486 | |
| 1487 | function goJSONMatchPathProperty(path: string[]): string { |
| 1488 | return path[path.length - 1]; |
no outgoing calls
no test coverage detected
searching dependent graphs…