Skip to content

Instantly share code, notes, and snippets.

@khaosdoctor
Created May 29, 2018 03:12
Show Gist options
  • Save khaosdoctor/b9c9f46ae538351a74bf776cc9435901 to your computer and use it in GitHub Desktop.
Save khaosdoctor/b9c9f46ae538351a74bf776cc9435901 to your computer and use it in GitHub Desktop.
console.log = (...items) => {
let output = ''
for (const item of items) {
output += console.inspect[typeof item](item)
if (item[Symbol.for('object.upper')]) output.toUpperCase()
output += ', '
}
process.stdout.write(output + '\n')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment