Comparing version 6.8.5 to 6.9.0
{ | ||
"name": "nyks", | ||
"version": "6.8.5", | ||
"version": "6.9.0", | ||
"description": "nodejs exupery style", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -8,2 +8,3 @@ "use strict"; | ||
const compact = require('mout/array/compact'); | ||
const formatArg = require('./formatArg'); | ||
@@ -15,3 +16,4 @@ var fmt = (unix, k, v) => { | ||
return [sprintf("--%s", k)]; | ||
return unix ? [sprintf("--%s", k), String(v)] : [sprintf("--%s=%s", k, String(v))]; | ||
v = formatArg(String(v)); | ||
return unix ? [sprintf("--%s", k), v] : [sprintf("--%s=%s", k, v)]; | ||
}; | ||
@@ -18,0 +20,0 @@ |
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
76791
133
2087