1.0.1 • Published 5 years ago

s2s-helper-get-reducer-case v1.0.1

Weekly downloads
14
License
MIT
Repository
github
Last release
5 years ago

s2s-helper-get-reducer-case

Helper function to get reducer case

API

import helper from 's2s-helper-get-reducer-case'

const fixture = `
export default function(state, action) {
  switch(action.type) {
    case Actions.INCREMENT:
      return { count: state + 1}
    case Actions.DECREMENT:
      return { count: state - 1}
    default:
      return state
  }
}
`

helper(fixture)
// => ['INCREMENT', 'DECREMENT']
1.0.1

5 years ago

1.0.0

5 years ago

0.2.6

6 years ago

0.2.5

7 years ago

0.2.4

7 years ago

0.2.3

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago