puvox-library 1.0.14 → 1.0.15

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.
@@ -3102,7 +3102,7 @@ const puvox_library =
3102
3102
  isString: s => (typeof s === 'string'),
3103
3103
  isObject: o => ((o !== null) && (typeof o === 'object')),
3104
3104
  isRegExp: o => (o instanceof RegExp),
3105
- isDictionary(o ){return (this.isObject (o) && (Object.getPrototypeOf (o) === Object.prototype) && !isArray (o) && !isRegExp (o));},
3105
+ isDictionary(o ){return (this.isObject (o) && (Object.getPrototypeOf (o) === Object.prototype) && !this.isArray (o) && !this.isRegExp (o));},
3106
3106
  isStringCoercible(x){ return ((this.hasProps (x) && x.toString) || this.isNumber (x));},
3107
3107
  prop (o, k) { return (this.isObject (o) && o[k] !== '' && o[k] !== null ? o[k] : undefined);},
3108
3108
  getValueFromKeysInArray(object, array) { return object[array.find (k => this.prop (object,k) !== undefined)];},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "puvox-library",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "library-class-javascript",
5
5
  "main": "library_standard.js",
6
6
  "scripts": {