Skip to content

Instantly share code, notes, and snippets.

@hserang
Created June 10, 2015 18:04
Show Gist options
  • Select an option

  • Save hserang/d462b7fbec613cf9804b to your computer and use it in GitHub Desktop.

Select an option

Save hserang/d462b7fbec613cf9804b to your computer and use it in GitHub Desktop.
Quick and Dirty console.log formatting
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