@josecarlosrz/logger
Advanced tools
Comparing version 1.0.3 to 1.0.4
18
index.js
@@ -36,12 +36,16 @@ const path = require('path'); | ||
console.log('[Args]'); | ||
if (args.length > 0) { | ||
console.log('[Args]'); | ||
console.group(); | ||
args.forEach(arg => console.log(arg)); | ||
console.groupEnd(); | ||
} | ||
console.group(); | ||
args.forEach(arg => console.log(arg)); | ||
console.groupEnd(); | ||
console.log('----'); | ||
}; |
{ | ||
"name": "@josecarlosrz/logger", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Function to log each component of our application", | ||
@@ -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
1425
26