Created
September 6, 2016 01:37
-
-
Save ericelliott/8f0dba63356483d4184468d52d005141 to your computer and use it in GitHub Desktop.
Trace debugging
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
| const trace = curry((label, x) => { | |
| console.log(`== ${ label }: ${ x }`); | |
| return x; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment