Skip to content

Instantly share code, notes, and snippets.

@Sawtaytoes
Last active April 25, 2019 04:05
Show Gist options
  • Save Sawtaytoes/1dfb1641f646c611513bd561500a0cdc to your computer and use it in GitHub Desktop.
Save Sawtaytoes/1dfb1641f646c611513bd561500a0cdc to your computer and use it in GitHub Desktop.
var subscribers = []
var subscribe = function(subscriber) {
subscribers
.push(subscriber)
}
var dispatch = function(action) {
stateModifiers[action.type]
&& stateModifiers[action.type](action)
subscribers
.forEach(function(subscriber) {
subscriber(action)
})
return action
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment