Skip to content

Instantly share code, notes, and snippets.

@nadeesha
Created May 16, 2019 22:21
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 nadeesha/80055a49d62b56c2d5c6ab615c7ceda5 to your computer and use it in GitHub Desktop.
Save nadeesha/80055a49d62b56c2d5c6ab615c7ceda5 to your computer and use it in GitHub Desktop.
export const conditionally = (config) => (props) => {
return config.if(props) ?
config.then(props) : config.else(props);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment