@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/index.js +24 -24
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/src/LeUtils.js +6 -6
package/package.json
CHANGED
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,
|
|
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,
|
|
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,
|
|
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,
|
|
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,
|
|
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,
|
|
427
|
+
LeUtils.each(values, (value) =>
|
|
428
428
|
{
|
|
429
429
|
if(LeUtils.containsCaseInsensitive(array, value))
|
|
430
430
|
{
|