puvox-library 1.0.14 → 1.0.16
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 +1 -1
- package/package.json +1 -1
package/library_standard.js
CHANGED
@@ -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)];},
|