Skip to content

Instantly share code, notes, and snippets.

@strzibny
Last active January 27, 2018 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save strzibny/0d092c10502c89b6320fc801a22f4b8b to your computer and use it in GitHub Desktop.
Save strzibny/0d092c10502c89b6320fc801a22f4b8b to your computer and use it in GitHub Desktop.
Ruby reducer example
counter_reducer = -> (state, action) {
state ||= 0
case action[:type]
when 'increment'
state += 1
when 'decrement'
state -= 1
else
state
end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment