Comparing version 0.1.2 to 0.1.3
@@ -58,3 +58,3 @@ | ||
for (var key in obj) { | ||
clone[key] = obj | ||
clone[key] = obj[key] | ||
} | ||
@@ -70,3 +70,3 @@ return clone | ||
function isError(o) { | ||
return typeof o == 'object' && (o instanceof Error || o.message && o.stack) | ||
return o && typeof o == 'object' && (o instanceof Error || o.message && o.stack) | ||
} |
{ | ||
"name" : "logg", | ||
"version" : "0.1.2", | ||
"version" : "0.1.3", | ||
"description" : "Logging library that allows for hierarchical loggers, multiple log levels, and flexible watching of log records.", | ||
@@ -5,0 +5,0 @@ "keywords" : ["log", "logging", "logger", "hierarchical", "handler", "watcher"], |
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
13898