hardSet.js.flow 160 B

12345678910
  1. // @flow
  2. /*
  3. hardSet:
  4. - hard set incoming state
  5. */
  6. export default function hardSet<State: Object>(inboundState: State): State {
  7. return inboundState
  8. }