zarro 1.148.0 → 1.149.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -387,7 +387,9 @@
|
|
|
387
387
|
const negativeFlags = ["no", "false", "0"];
|
|
388
388
|
function resolveFlag(name, fallback) {
|
|
389
389
|
debugger;
|
|
390
|
-
const resolved = resolveInternal(name), value = resolved === undefined
|
|
390
|
+
const resolved = resolveInternal(name), value = resolved === undefined || resolved === ""
|
|
391
|
+
? undefined
|
|
392
|
+
: resolved.toLowerCase();
|
|
391
393
|
return resolveAsBoolean(name, value, fallback);
|
|
392
394
|
}
|
|
393
395
|
function resolveAsBoolean(name, value, fallback) {
|