Skip to content

Instantly share code, notes, and snippets.

View SteveBidenko's full-sized avatar
💭
Focusing on business analysis

Stas Bidenko SteveBidenko

💭
Focusing on business analysis
View GitHub Profile
@SteveBidenko
SteveBidenko / color-console.js
Last active December 12, 2016 14:08
colorize console.log and add timestamps
var colors = require('cli-color'),
mapping = {
log: colors.yellow,
info: colors.green,
error: colors.red
};
// Change calls of the object console
['log', 'info', 'error'].forEach(function(method) {
var oldMethod = console[method].bind(console);
console[method] = function() {