nestjs-cls
Advanced tools
Comparing version 3.2.0 to 3.2.1
@@ -62,5 +62,5 @@ "use strict"; | ||
if (typeof key === 'symbol') { | ||
return !!store[key]; | ||
return store[key] !== undefined; | ||
} | ||
return !!(0, value_from_path_1.getValueFromPath)(store, key); | ||
return (0, value_from_path_1.getValueFromPath)(store, key) !== undefined; | ||
} | ||
@@ -67,0 +67,0 @@ /** |
{ | ||
"name": "nestjs-cls", | ||
"version": "3.2.0", | ||
"version": "3.2.1", | ||
"description": "A continuation-local storage module compatible with NestJS's dependency injection.", | ||
@@ -5,0 +5,0 @@ "author": "papooch", |
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
107640