@action-land/match
v8.0.0
Published
Switch case for actions
Readme
@action-land/match
A switch case for actions.
Installation
npm i @action-land/matchUsage
Exposes a single match() function that —
- Accepts two arguments —
defaultandspec. defaultis a function that accepts theactionand can return anything.specis an object where key isaction.typeand value is a function.- On a successful match of
action.typethe corresponding function is called with theaction.value.
import {action} from '@action-land/core'
import {match} from '@action-land/match'
const fn = match(i => i, {
inc: i => i + 1,
dec: i => i - 1
})
fn(action('inc', 10)) // returns 11