Skip to content

Instantly share code, notes, and snippets.

@JonathanZWhite
Created April 18, 2016 00:14
Show Gist options
  • Save JonathanZWhite/46d1b418fdc3b4f2f8494a08b5eb5995 to your computer and use it in GitHub Desktop.
Save JonathanZWhite/46d1b418fdc3b4f2f8494a08b5eb5995 to your computer and use it in GitHub Desktop.
let store = {
...
getState: function(hash) {
if (!this._users[hash]) return this._initializeUser(hash)
return this._users[hash]
},
clearState: function(hash) {
this._users[hash] = this._initializeUser()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment