(
obj: Object | Array<any>,
path: Array<string | number>,
)
| 626 | }; |
| 627 | |
| 628 | const copyWithDelete = ( |
| 629 | obj: Object | Array<any>, |
| 630 | path: Array<string | number>, |
| 631 | ): Object | Array<any> => { |
| 632 | return copyWithDeleteImpl(obj, path, 0); |
| 633 | }; |
| 634 | |
| 635 | const copyWithRenameImpl = ( |
| 636 | obj: Object | Array<any>, |
no test coverage detected