(obj: any, opath: DashLayoutPath)
| 254 | childNewRender = {}; |
| 255 | } |
| 256 | const handleObject = (obj: any, opath: DashLayoutPath) => { |
| 257 | return mapObjIndexed( |
| 258 | (node, k) => |
| 259 | wrapChildrenProp(node, [...opath, k], childNewRender), |
| 260 | obj |
| 261 | ); |
| 262 | }; |
| 263 | |
| 264 | if (childrenProp.includes('.')) { |
| 265 | let childrenPath: DashLayoutPath = childrenProp.split('.'); |
no outgoing calls
no test coverage detected
searching dependent graphs…