Created
June 10, 2015 18:04
-
-
Save hserang/d462b7fbec613cf9804b to your computer and use it in GitHub Desktop.
Quick and Dirty console.log formatting
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 cl(message='log', data='') { | |
| console.log('\n--------------'); | |
| if (typeof data === 'object') { | |
| console.log(`${message}`, JSON.stringify(data, null, 2)); | |
| } else { | |
| console.log(`${message}`, data); | |
| } | |
| console.log('--------------\n'); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment