(
obj: Object | Array<any>,
path: Array<string | number>,
value: any,
)
| 700 | }; |
| 701 | |
| 702 | const copyWithSet = ( |
| 703 | obj: Object | Array<any>, |
| 704 | path: Array<string | number>, |
| 705 | value: any, |
| 706 | ): Object | Array<any> => { |
| 707 | return copyWithSetImpl(obj, path, 0, value); |
| 708 | }; |
| 709 | |
| 710 | const findHook = (fiber: Fiber, id: number) => { |
| 711 | // For now, the "id" of stateful hooks is just the stateful hook index. |
no test coverage detected