UNPKG

generator-foo

Version:

Foo project scaffold generator based on generator-jam3

14 lines (10 loc) 240 B
/** * Created by mendieta on 7/8/16. */ import {INCREASE, DECREASE} from "app/constants/app" export function increase(n) { return {type: INCREASE, amount: n} } export function decrease(n) { return {type: DECREASE, amount: n} }