Skip to content

Instantly share code, notes, and snippets.

@idettman
Created March 18, 2016 06:19
Show Gist options
  • Select an option

  • Save idettman/4dc5185f8ad156e5c9b4 to your computer and use it in GitHub Desktop.

Select an option

Save idettman/4dc5185f8ad156e5c9b4 to your computer and use it in GitHub Desktop.
JavaScript K Combinator (Tap)
function tap(value)
{
return function(fn)
{
if (typeof(fn) === 'function')
{
fn(value);
}
return value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment