coer-elements 2.0.83 → 2.0.85

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.
@@ -154,6 +154,12 @@ const Tools = {
154
154
  : Tools.IsNotNull(object) && object.hasOwnProperty(property) && (typeof object[property] === 'boolean') && object[property] === false;
155
155
  },
156
156
  /** */
157
+ IsString: (object, property = '') => {
158
+ return Tools.IsOnlyWhiteSpace(property)
159
+ ? typeof object === 'string'
160
+ : Tools.IsNotNull(object) && object.hasOwnProperty(property) && (typeof object[property] === 'string');
161
+ },
162
+ /** */
157
163
  IsFunction: (object, property = '') => {
158
164
  return Tools.IsOnlyWhiteSpace(property)
159
165
  ? typeof object === 'function'