Comparing version 1.3.3 to 1.3.4
@@ -269,6 +269,7 @@ /* | ||
const o = merge({}, output, { | ||
filter: (o, n) => !( | ||
fields.hasOwnProperty(n) || | ||
(meta instanceof Error && n === 'stack') | ||
) && (typeof o[n] !== 'object' || isPlainObject(o[n])) | ||
filter: (o, n) => | ||
!(fields.hasOwnProperty(n) || | ||
(meta instanceof Error && n === 'stack')) && | ||
Object.getOwnPropertyDescriptor(o, n).enumerable && | ||
(typeof o[n] !== 'object' || isPlainObject(o[n])) | ||
}); | ||
@@ -275,0 +276,0 @@ if (Object.keys(o).length) |
{ | ||
"name": "hixtory", | ||
"description": "Most flexible and fast logging library for NodeJS", | ||
"version": "1.3.3", | ||
"version": "1.3.4", | ||
"author": "Panates Ltd.", | ||
@@ -6,0 +6,0 @@ "contributors": [ |
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
61265
1482