Comparing version 0.0.2 to 0.0.3
10
index.js
@@ -61,3 +61,11 @@ const strftime = require('strftime') | ||
} else { | ||
return chalk.gray(item.toString()) | ||
if (item === undefined) { | ||
return chalk.gray('undefined') | ||
} else { | ||
if (item === null) { | ||
return chalk.gray('null') | ||
} else { | ||
return chalk.gray(item.toString()) | ||
} | ||
} | ||
} | ||
@@ -64,0 +72,0 @@ }) |
{ | ||
"name": "lpac", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "Logger progress and counter", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3864
117