(callback, deps)
| 15546 | var updateDebugValue = mountDebugValue; |
| 15547 | |
| 15548 | function mountCallback(callback, deps) { |
| 15549 | var hook = mountWorkInProgressHook(); |
| 15550 | var nextDeps = deps === undefined ? null : deps; |
| 15551 | hook.memoizedState = [callback, nextDeps]; |
| 15552 | return callback; |
| 15553 | } |
| 15554 | |
| 15555 | function updateCallback(callback, deps) { |
| 15556 | var hook = updateWorkInProgressHook(); |
no test coverage detected