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.
@@ -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
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "puvox-library",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "description": "library-class-javascript",
5
5
  "main": "library_standard.js",
6
6
  "scripts": {