(path: string[])
| 32 | } |
| 33 | |
| 34 | export function getNegativePath(path: string[]) { |
| 35 | return path.slice(0, -1).concat(`-${path.at(-1)}`) |
| 36 | } |
| 37 | |
| 38 | export function getDotPath(obj: any, path: string, fallback?: any): any { |
| 39 | if (typeof path !== 'string') return fallback |
nothing calls this directly
no outgoing calls
no test coverage detected