Skip to content

Instantly share code, notes, and snippets.

@stevekinney
Created April 3, 2021 17:16
Show Gist options
  • Save stevekinney/d14cbaff3e0aa8ee3e1dcf96837af1ca to your computer and use it in GitHub Desktop.
Save stevekinney/d14cbaff3e0aa8ee3e1dcf96837af1ca to your computer and use it in GitHub Desktop.
function tap<T>(arg: T, fn: (arg: T) => void): T {
fn(arg);
return arg;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment