Skip to content

Instantly share code, notes, and snippets.

@nesbtesh
Created August 24, 2016 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nesbtesh/43b8b70b842769453424b710c367dd88 to your computer and use it in GitHub Desktop.
Save nesbtesh/43b8b70b842769453424b710c367dd88 to your computer and use it in GitHub Desktop.
Create Redux Constants
export function createConstants(...constants) {
return constants.reduce((acc, constant) => {
acc[constant] = constant;
return acc;
}, {});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment