Skip to content

Instantly share code, notes, and snippets.

@anthony2025
Created June 5, 2018 17:40
Show Gist options
  • Save anthony2025/ac1c83f8540efa5405602306ac7b988e to your computer and use it in GitHub Desktop.
Save anthony2025/ac1c83f8540efa5405602306ac7b988e to your computer and use it in GitHub Desktop.
for use inside compose/flow statements, logs without disrupting the data flow
// for use inside compose/flow statements, logs without disrupting the data flow
export const tapAndLog = <T>(data: T): T => console.log('tapped', data) || data; // eslint-disable-line no-console
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment