@lowentry/utils 1.13.1 → 1.13.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowentry/utils",
3
- "version": "1.13.1",
3
+ "version": "1.13.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./index.js",
package/src/LeUtils.js CHANGED
@@ -284,7 +284,7 @@ export const LeUtils = {
284
284
  return false;
285
285
  }
286
286
  let result = true;
287
- LeUtils.each(values, function(value)
287
+ LeUtils.each(values, (value) =>
288
288
  {
289
289
  if(!LeUtils.contains(array, value))
290
290
  {
@@ -312,7 +312,7 @@ export const LeUtils = {
312
312
  return false;
313
313
  }
314
314
  let result = true;
315
- LeUtils.each(values, function(value)
315
+ LeUtils.each(values, (value) =>
316
316
  {
317
317
  if(!LeUtils.containsCaseInsensitive(array, value))
318
318
  {
@@ -340,7 +340,7 @@ export const LeUtils = {
340
340
  return false;
341
341
  }
342
342
  let result = false;
343
- LeUtils.each(values, function(value)
343
+ LeUtils.each(values, (value) =>
344
344
  {
345
345
  if(LeUtils.contains(array, value))
346
346
  {
@@ -368,7 +368,7 @@ export const LeUtils = {
368
368
  return false;
369
369
  }
370
370
  let result = false;
371
- LeUtils.each(values, function(value)
371
+ LeUtils.each(values, (value) =>
372
372
  {
373
373
  if(LeUtils.containsCaseInsensitive(array, value))
374
374
  {
@@ -396,7 +396,7 @@ export const LeUtils = {
396
396
  return true;
397
397
  }
398
398
  let result = true;
399
- LeUtils.each(values, function(value)
399
+ LeUtils.each(values, (value) =>
400
400
  {
401
401
  if(LeUtils.contains(array, value))
402
402
  {
@@ -424,7 +424,7 @@ export const LeUtils = {
424
424
  return true;
425
425
  }
426
426
  let result = true;
427
- LeUtils.each(values, function(value)
427
+ LeUtils.each(values, (value) =>
428
428
  {
429
429
  if(LeUtils.containsCaseInsensitive(array, value))
430
430
  {