Created
June 5, 2018 17:40
-
-
Save anthony2025/ac1c83f8540efa5405602306ac7b988e to your computer and use it in GitHub Desktop.
for use inside compose/flow statements, logs without disrupting the data flow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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