knowledgebase_law/node_modules/redux-persist/lib/stateReconciler/hardSet.js.flow

11 lines
160 B
Plaintext
Raw Normal View History

2025-04-11 23:47:09 +08:00
// @flow
/*
hardSet:
- hard set incoming state
*/
export default function hardSet<State: Object>(inboundState: State): State {
return inboundState
}