Last active
April 17, 2016 23:56
-
-
Save JonathanZWhite/b9f66d288039395b770ba8fe74cdb077 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let store = { | |
_users: {}, | |
// creates state tree | |
_initializeUserState: function(hash) { | |
this._users[hash] = { | |
command: '', | |
spotify: { | |
genre: '', | |
numberOfRecs: 0 | |
} | |
} | |
}, | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment