freeCodeCamp/client/utils/stateManagement.js

10 lines
177 B
JavaScript

export function createTypes(types = [], ns = 'annon') {
return types.reduce(
(types, action) => ({
...types,
[action]: `${ns}.${action}`
}),
{}
);
}