mac-system-proxy
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -24,3 +24,3 @@ "use strict"; | ||
else | ||
return `"${key.trim()}": "${value.trim()}"`; | ||
return `"${key.trim()}": ${JSON.stringify(value.trim())}`; | ||
}); | ||
@@ -27,0 +27,0 @@ // Insert commas everywhere they're needed |
{ | ||
"name": "mac-system-proxy", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Access the Mac system proxy settings from Node.js", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -21,3 +21,3 @@ const TYPE_KEY = "__scutil__type__"; | ||
else if (value === '{') return `"${key.trim()}": {`; | ||
else return `"${key.trim()}": "${value.trim()}"`; | ||
else return `"${key.trim()}": ${JSON.stringify(value.trim())}`; | ||
}); | ||
@@ -24,0 +24,0 @@ |
Sorry, the diff of this file is not supported yet
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
23703