Skip to content

Instantly share code, notes, and snippets.

@joshuacerbito
Last active April 29, 2021 11:31
Show Gist options
  • Save joshuacerbito/842735a299ed9dcb2a5eca33337cc803 to your computer and use it in GitHub Desktop.
Save joshuacerbito/842735a299ed9dcb2a5eca33337cc803 to your computer and use it in GitHub Desktop.
/**
* Return the value if the conditional provided passes.
*
* @param {Boolean} conditional
* @param {*} template
*/
export const when = (conditional, thing, output = null) => !!conditional ? thing : output;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment