fable-settings
Advanced tools
Comparing version 3.0.9 to 3.0.10
{ | ||
"name": "fable-settings", | ||
"version": "3.0.9", | ||
"version": "3.0.10", | ||
"description": "A simple, tolerant configuration chain.", | ||
@@ -5,0 +5,0 @@ "main": "source/Fable-Settings.js", |
@@ -8,3 +8,3 @@ /** | ||
if ((typeof(window) === 'object') && !window.hasOwnProperty('FableSettings')) | ||
if ((typeof(window) === 'object') && !('FableSettings' in window)) | ||
{ | ||
@@ -11,0 +11,0 @@ window.FableSettings = libNPMModuleWrapper; |
@@ -31,3 +31,3 @@ /** | ||
if (process.env.hasOwnProperty(tmpEnvironmentVariableName)) | ||
if (tmpEnvironmentVariableName in process.env) | ||
{ | ||
@@ -34,0 +34,0 @@ return process.env[tmpEnvironmentVariableName]; |
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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
30922