(obj: any, path: string)
| 167 | } |
| 168 | |
| 169 | export function get(obj: any, path: string): any { |
| 170 | return path.split(".").reduce((o, k) => o?.[k], obj); |
| 171 | } |
| 172 | |
| 173 | export function pickBy(obj: any, predicate: (value: any, key: string) => boolean): any { |
| 174 | const result: any = {}; |
nothing calls this directly
no outgoing calls
no test coverage detected