Created
January 27, 2017 10:32
-
-
Save tjunghans/3d4fe8ff4a048007aeea15b57d0231bc to your computer and use it in GitHub Desktop.
Debug Logging
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
function log(value, label = "-") { | |
console.log(" "); | |
console.log(" "); | |
console.log(label, JSON.stringify(value, null, " ")); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment