freeCodeCamp/packages/learn/utils/stateManagment.js

10 lines
162 B
JavaScript
Raw Normal View History

2018-04-06 14:51:52 +01:00
export function createTypes(types, ns) {
return types.reduce(
(types, action) => ({
...types,
[action]: `${ns}.${action}`
}),
{}
);
}