10 lines
162 B
JavaScript
10 lines
162 B
JavaScript
|
export function createTypes(types, ns) {
|
||
|
return types.reduce(
|
||
|
(types, action) => ({
|
||
|
...types,
|
||
|
[action]: `${ns}.${action}`
|
||
|
}),
|
||
|
{}
|
||
|
);
|
||
|
}
|