@mll-lab/js-utils 2.22.0 → 2.23.0

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/dist/index.js CHANGED
@@ -15357,6 +15357,10 @@ function isString(value) {
15357
15357
  function isNotNullish(value) {
15358
15358
  return value != null;
15359
15359
  }
15360
+ function isArrayOfStrings(value) {
15361
+ return (value instanceof Array &&
15362
+ value.every((record) => typeof record === 'string'));
15363
+ }
15360
15364
 
15361
15365
  const isAlphanumeric = function isAlphanumeric(value) {
15362
15366
  return isString(value) && /^[A-Za-z0-9]+$/.test(value);
@@ -15495,6 +15499,7 @@ exports.formatSecondlessDateTime = formatSecondlessDateTime;
15495
15499
  exports.includesIgnoreCase = includesIgnoreCase;
15496
15500
  exports.insertIf = insertIf;
15497
15501
  exports.isAlphanumeric = isAlphanumeric;
15502
+ exports.isArrayOfStrings = isArrayOfStrings;
15498
15503
  exports.isBSNR = isBSNR;
15499
15504
  exports.isEmail = isEmail;
15500
15505
  exports.isEmptyArray = isEmptyArray;