Skip to content

Instantly share code, notes, and snippets.

@exuanbo
Created February 21, 2022 11:34
Show Gist options
  • Save exuanbo/4b6997f5903b73c38de7bd0c5aa81d8b to your computer and use it in GitHub Desktop.
Save exuanbo/4b6997f5903b73c38de7bd0c5aa81d8b to your computer and use it in GitHub Desktop.
export const tap =
<T>(fn: (arg: T) => void) =>
(arg: T): T => {
fn(arg)
return arg
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment