(path: string)
| 131 | return isObject(value) || Array.isArray(value); |
| 132 | } |
| 133 | function cleanupNonNestedPath(path: string) { |
| 134 | if (isNotNestedPath(path)) return path.replace(/\[|\]/g, ""); |
| 135 | |
| 136 | return path; |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Gets a nested property value from an object |
no test coverage detected