(obj: any, path: string)
| 237 | * @returns The value at the path, or undefined if path doesn't exist |
| 238 | */ |
| 239 | export function traverseObjectPath(obj: any, path: string): any { |
| 240 | const parsed = parseOutputContentSafely(obj) |
| 241 | return traverseObjectPathInternal(parsed, path) |
| 242 | } |
no test coverage detected