Skip to content

Instantly share code, notes, and snippets.

@calderaro
Created January 14, 2021 21:55
Show Gist options
  • Save calderaro/c698e36754d0f078ac1cc89a1dcf2874 to your computer and use it in GitHub Desktop.
Save calderaro/c698e36754d0f078ac1cc89a1dcf2874 to your computer and use it in GitHub Desktop.
const reduxSwitchcase = (cases, key) =>
key in cases ? cases[key] : state => state;
export default reduxSwitchcase;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment