diff --git a/lib/colors.js b/lib/colors.js index 7ca90fa..0edcddb 100644 --- a/lib/colors.js +++ b/lib/colors.js @@ -105,7 +105,7 @@ function applyStyle() { var args = Array.prototype.slice.call(arguments); var str = args.map(function(arg) { - if (arg !== undefined && arg.constructor === String) { + if (arg != undefined && arg.constructor === String) { return arg; } else { return util.inspect(arg);