Files
terminal/web/node_modules/react-use/esm/misc/hookState.js
T

7 lines
206 B
JavaScript

export function resolveHookState(nextState, currentState) {
if (typeof nextState === 'function') {
return nextState.length ? nextState(currentState) : nextState();
}
return nextState;
}