Skip to content

Instantly share code, notes, and snippets.

@perjo927
Last active September 8, 2020 13:19
Show Gist options
  • Save perjo927/59c286f828307196d59a1a145273e25b to your computer and use it in GitHub Desktop.
Save perjo927/59c286f828307196d59a1a145273e25b to your computer and use it in GitHub Desktop.
Make state handlers
export const makeStateHandlers = (stateContainer) => ({
getState() {
const [lastState] = stateContainer.slice(-1);
return lastState;
},
setState(newState) {
return stateContainer.push(newState);
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment