Skip to content

Instantly share code, notes, and snippets.

@cpv123
Last active January 4, 2020 08:47
Show Gist options
  • Save cpv123/12c943b17ae1595e0b126ff0e5b279d2 to your computer and use it in GitHub Desktop.
Save cpv123/12c943b17ae1595e0b126ff0e5b279d2 to your computer and use it in GitHub Desktop.
const immu = obj => deepFreeze(obj)
const createNewState = (currentState, updater) => {
const draftState = deepUnfreeze(currentState)
updater(draftState)
return immu(draftState)
}
export { immu, createNewState }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment