puvox-library 1.0.22 → 1.0.23
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.
- package/library_standard.js +4 -0
- package/package.json +1 -1
package/library_standard.js
CHANGED
@@ -617,6 +617,10 @@ const puvox_library =
|
|
617
617
|
}
|
618
618
|
return KeyValues;
|
619
619
|
},
|
620
|
+
argv(which, def = undefined){
|
621
|
+
let KeyValues= this.argvs();
|
622
|
+
return (which in KeyValues ? KeyValues[which] : def);
|
623
|
+
},
|
620
624
|
argvIsSet(which){
|
621
625
|
return this.inArray(which, this.argvsArray()) || this.argv(which)!=undefined;
|
622
626
|
},
|