itee-validators 5.6.0 → 6.1.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.
Files changed (103) hide show
  1. package/.github/workflows/publish.yml +61 -0
  2. package/.releaserc.mjs +94 -0
  3. package/.tasks/configs/lints/lint.conf.mjs +42 -0
  4. package/.tasks/configs/tests/benchmarks/compute-benchmarks.conf.mjs +5 -0
  5. package/.tasks/configs/tests/benchmarks/run-benchmarks-for-frontend.conf.mjs +5 -0
  6. package/.tasks/configs/tests/units/run-unit-tests-for-frontend.conf.mjs +5 -0
  7. package/CHANGELOG.md +25 -0
  8. package/builds/{itee-validators.cjs.js → validators.cjs} +56 -18
  9. package/builds/validators.cjs.map +1 -0
  10. package/builds/{itee-validators.iife.js → validators.js} +28 -7
  11. package/builds/validators.js.map +1 -0
  12. package/builds/{itee-validators.cjs.min.js → validators.min.cjs} +36 -35
  13. package/builds/{itee-validators.iife.min.js → validators.min.js} +10 -10
  14. package/builds/{itee-validators.esm.min.js → validators.min.mjs} +3 -3
  15. package/builds/{itee-validators.esm.js → validators.mjs} +28 -5
  16. package/builds/validators.mjs.map +1 -0
  17. package/package.json +27 -52
  18. package/sources/cores/_cores.js +10 -10
  19. package/sources/cores/arrays/_arrays.js +12 -12
  20. package/sources/cores/arrays/isArrayOfArray.js +2 -2
  21. package/sources/cores/arrays/isArrayOfBoolean.js +3 -3
  22. package/sources/cores/arrays/isArrayOfFunction.js +3 -3
  23. package/sources/cores/arrays/isArrayOfMultiElement.js +1 -1
  24. package/sources/cores/arrays/isArrayOfNull.js +3 -3
  25. package/sources/cores/arrays/isArrayOfNumber.js +3 -3
  26. package/sources/cores/arrays/isArrayOfObject.js +3 -3
  27. package/sources/cores/arrays/isArrayOfSingleElement.js +1 -1
  28. package/sources/cores/arrays/isArrayOfString.js +3 -3
  29. package/sources/cores/arrays/isArrayOfUndefined.js +3 -3
  30. package/sources/cores/arrays/isEmptyArray.js +1 -1
  31. package/sources/cores/booleans/_booleans.js +2 -2
  32. package/sources/cores/booleans/isTrue.js +1 -1
  33. package/sources/cores/cores.js +8 -8
  34. package/sources/cores/functions/_functions.js +1 -1
  35. package/sources/cores/numbers/_numbers.js +6 -6
  36. package/sources/cores/numbers/isNumber.js +3 -3
  37. package/sources/cores/objects/_objects.js +2 -2
  38. package/sources/cores/objects/isEmptyObject.js +1 -1
  39. package/sources/cores/objects/isObject.js +1 -1
  40. package/sources/cores/strings/_strings.js +3 -3
  41. package/sources/cores/strings/isBlankString.js +2 -2
  42. package/sources/cores/strings/isEmptyString.js +1 -1
  43. package/sources/cores/symbols/_symbols.js +1 -1
  44. package/sources/cores/tests/isTestUnitGenerator.js +5 -6
  45. package/sources/cores/typed-arrays/_typedArrays.js +12 -12
  46. package/sources/cores/voids/_voids.js +4 -4
  47. package/sources/cores/voids/isEmpty.js +4 -4
  48. package/sources/file-system/_file-system.js +9 -9
  49. package/sources/file-system/block-devices/_blockDevices.js +3 -3
  50. package/sources/file-system/block-devices/isBlockDevicePath.js +3 -3
  51. package/sources/file-system/block-devices/isValidBlockDevicePath.js +2 -2
  52. package/sources/file-system/character-devices/_characterDevices.js +3 -3
  53. package/sources/file-system/character-devices/isCharacterDevicePath.js +3 -3
  54. package/sources/file-system/character-devices/isValidCharacterDevicePath.js +2 -2
  55. package/sources/file-system/directories/_directories.js +4 -4
  56. package/sources/file-system/directories/isDirectoryPath.js +3 -3
  57. package/sources/file-system/directories/isEmptyDirectory.js +2 -2
  58. package/sources/file-system/directories/isValidDirectoryPath.js +2 -2
  59. package/sources/file-system/fifo-pipes/_fifoPipes.js +3 -3
  60. package/sources/file-system/fifo-pipes/isFIFOPath.js +3 -3
  61. package/sources/file-system/fifo-pipes/isValidFIFOPath.js +2 -2
  62. package/sources/file-system/files/_files.js +4 -4
  63. package/sources/file-system/files/isEmptyFile.js +3 -3
  64. package/sources/file-system/files/isFilePath.js +3 -3
  65. package/sources/file-system/files/isValidFilePath.js +2 -2
  66. package/sources/file-system/paths/_paths.js +2 -2
  67. package/sources/file-system/paths/isValidPath.js +1 -1
  68. package/sources/file-system/sockets/_sockets.js +3 -3
  69. package/sources/file-system/sockets/isSocketPath.js +3 -3
  70. package/sources/file-system/sockets/isValidSocketPath.js +2 -2
  71. package/sources/file-system/symbolic-links/_symbolicLinks.js +3 -3
  72. package/sources/file-system/symbolic-links/isSymbolicLinkPath.js +3 -3
  73. package/sources/file-system/symbolic-links/isValidSymbolicLinkPath.js +2 -2
  74. package/sources/maths/_maths.js +1 -1
  75. package/sources/physics/_physics.js +2 -2
  76. package/sources/physics/temperatures/_temperatures.js +5 -5
  77. package/sources/physics/temperatures/isCelsius.js +2 -2
  78. package/sources/physics/temperatures/isFahrenheit.js +2 -2
  79. package/sources/physics/temperatures/isKelvin.js +2 -2
  80. package/sources/physics/temperatures/isTemperature.js +3 -3
  81. package/sources/{itee-validators.js → validators.js} +4 -4
  82. package/.github/workflows/node.js.yml +0 -53
  83. package/.tasks/_utils.mjs +0 -66
  84. package/.tasks/builds/build.mjs +0 -65
  85. package/.tasks/cleans/clean.mjs +0 -20
  86. package/.tasks/docs/doc.mjs +0 -37
  87. package/.tasks/helps/help.mjs +0 -195
  88. package/.tasks/lints/lint.mjs +0 -33
  89. package/.tasks/patches/patch.mjs +0 -9
  90. package/.tasks/tests/benchmarks/bundle-benchmarks.mjs +0 -33
  91. package/.tasks/tests/benchmarks/compute-benchmarks.mjs +0 -215
  92. package/.tasks/tests/benchmarks/run-benchmarks-for-backend.mjs +0 -24
  93. package/.tasks/tests/benchmarks/run-benchmarks-for-frontend.mjs +0 -38
  94. package/.tasks/tests/bundling/check-bundling-from-esm-build-import.mjs +0 -167
  95. package/.tasks/tests/bundling/check-bundling-from-esm-files-direct.mjs +0 -129
  96. package/.tasks/tests/bundling/check-bundling-from-esm-files-import.mjs +0 -149
  97. package/.tasks/tests/unit-tests/bundle-unit-tests.mjs +0 -33
  98. package/.tasks/tests/unit-tests/compute-unit-tests.mjs +0 -578
  99. package/.tasks/tests/unit-tests/run-unit-tests-for-backend.mjs +0 -25
  100. package/.tasks/tests/unit-tests/run-unit-tests-for-frontend.mjs +0 -41
  101. package/builds/itee-validators.cjs.js.map +0 -1
  102. package/builds/itee-validators.esm.js.map +0 -1
  103. package/builds/itee-validators.iife.js.map +0 -1
@@ -880,7 +880,7 @@ function gn(n){return n instanceof ArrayBuffer}function bn(n){return!gn(n)}
880
880
  * }
881
881
  *
882
882
  */
883
- function qn(n){return F(n)&&n>=-273.14999999955}function Cn(n){return!qn(n)}
883
+ function qn(n){return F(n)&&n>=Xn}function Cn(n){return!qn(n)}
884
884
  /**
885
885
  * @author [Tristan Valcke]{@link https://github.com/Itee}
886
886
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -897,7 +897,7 @@ function qn(n){return F(n)&&n>=-273.14999999955}function Cn(n){return!qn(n)}
897
897
  * //...
898
898
  * }
899
899
  *
900
- */function zn(n){return F(n)&&n>=-459.67}function Dn(n){return!zn(n)}
900
+ */function zn(n){return F(n)&&n>=Rn}function Dn(n){return!zn(n)}
901
901
  /**
902
902
  * @author [Tristan Valcke]{@link https://github.com/Itee}
903
903
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -914,7 +914,7 @@ function qn(n){return F(n)&&n>=-273.14999999955}function Cn(n){return!qn(n)}
914
914
  * //...
915
915
  * }
916
916
  *
917
- */function Hn(n){return F(n)&&n>=4.5e-10}function Jn(n){return!Hn(n)}
917
+ */function Hn(n){return F(n)&&n>=Pn}function Jn(n){return!Hn(n)}
918
918
  /**
919
919
  * @author [Tristan Valcke]{@link https://github.com/Itee}
920
920
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -1,11 +1,11 @@
1
1
  /**
2
- * ┳ ┓┏ ┓• ┓ ┏━ ┏┓ ┏┓ ┏┓ ┳┳┓ ┓ ┓
3
- * ┃╋┏┓┏┓ ┃┃┏┓┃┓┏┫┏┓╋┏┓┏┓┏ ┓┏┗┓ ┣┓ ┃┫ ━━ ┣ ┏┃┃┃┏┓┏┫┓┏┃┏┓
2
+ * ┳ ┓┏ ┓• ┓ ┏┓ ┏┓ ┏┓ ┏┓ ┳┳┓ ┓ ┓
3
+ * ┃╋┏┓┏┓ ┃┃┏┓┃┓┏┫┏┓╋┏┓┏┓┏ ┓┏┣┓ ┃┫ ┃┫ ━━ ┣ ┏┃┃┃┏┓┏┫┓┏┃┏┓
4
4
  * ┻┗┗ ┗ •┗┛┗┻┗┗┗┻┗┻┗┗┛┛ ┛ ┗┛┗┛•┗┛•┗┛ ┗┛┛┛ ┗┗┛┗┻┗┻┗┗
5
5
  *
6
6
  * @desc A library of validation functions use in various Itee projects
7
- * @author [Tristan Valcke]{@link https://github.com/Itee}
8
- * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
7
+ * @author [Itee (Tristan Valcke)]{@link https://github.com/Itee}
8
+ * @license [BSD-3-Clause]{@link https://opensource.org/licenses}
9
9
  *
10
10
  */
11
11
  /**
@@ -64,6 +64,7 @@ function isNotArray( data ) {
64
64
  *
65
65
  */
66
66
 
67
+
67
68
  /**
68
69
  * Check if given data is an empty array
69
70
  *
@@ -110,6 +111,7 @@ function isNotEmptyArray( data ) {
110
111
  *
111
112
  */
112
113
 
114
+
113
115
  /**
114
116
  * Check if given data is an array of array
115
117
  *
@@ -208,6 +210,7 @@ function isNotBoolean( data ) {
208
210
  *
209
211
  */
210
212
 
213
+
211
214
  /**
212
215
  * Check if given data is not an empty array where all values are boolean
213
216
  *
@@ -306,6 +309,7 @@ function isNotFunction( data ) {
306
309
  *
307
310
  */
308
311
 
312
+
309
313
  /**
310
314
  * Check if given data is not an empty array where all values are functions
311
315
  *
@@ -366,6 +370,7 @@ function isNotArrayOfFunction( data ) {
366
370
  *
367
371
  */
368
372
 
373
+
369
374
  /**
370
375
  * Check if given data is an array with multiples values
371
376
  *
@@ -437,6 +442,7 @@ function isNotNull( data ) {
437
442
  * } *
438
443
  */
439
444
 
445
+
440
446
  /**
441
447
  * Check if given data is not an empty array where all values are null
442
448
  *
@@ -645,6 +651,7 @@ function isZeroNegative( data ) {
645
651
  *
646
652
  */
647
653
 
654
+
648
655
  /**
649
656
  * Check if given data is a number
650
657
  *
@@ -748,6 +755,7 @@ function isNaN( data ) {
748
755
  *
749
756
  */
750
757
 
758
+
751
759
  /**
752
760
  * Check if given data is not an empty array where all values are numbers
753
761
  *
@@ -808,6 +816,7 @@ function isNotArrayOfNumber( data ) {
808
816
  *
809
817
  */
810
818
 
819
+
811
820
  /**
812
821
  * Check if given data is an object
813
822
  *
@@ -849,6 +858,7 @@ function isNotObject( data ) {
849
858
  *
850
859
  */
851
860
 
861
+
852
862
  /**
853
863
  * Check if given data is an array where all values are of object type
854
864
  *
@@ -909,6 +919,7 @@ function isNotArrayOfObject( data ) {
909
919
  *
910
920
  */
911
921
 
922
+
912
923
  /**
913
924
  * Check if given data is an array with a single value
914
925
  *
@@ -983,6 +994,7 @@ function isNotString( data ) {
983
994
  *
984
995
  */
985
996
 
997
+
986
998
  /**
987
999
  * Check if given data is not an empty array where all values are string
988
1000
  *
@@ -1081,6 +1093,7 @@ function isNotUndefined( data ) {
1081
1093
  *
1082
1094
  */
1083
1095
 
1096
+
1084
1097
  /**
1085
1098
  * Check if given data is not an empty array where all values are undefined
1086
1099
  *
@@ -1141,6 +1154,7 @@ function isNotArrayOfUndefined( data ) {
1141
1154
  *
1142
1155
  */
1143
1156
 
1157
+
1144
1158
  /**
1145
1159
  * Check if given data is a boolean with value to true
1146
1160
  *
@@ -1297,6 +1311,7 @@ function isMinSafeInteger( data ) {
1297
1311
  *
1298
1312
  */
1299
1313
 
1314
+
1300
1315
  /**
1301
1316
  * Check if given data is an empty object
1302
1317
  *
@@ -1350,6 +1365,7 @@ function isNotEmptyObject( data ) {
1350
1365
  *
1351
1366
  */
1352
1367
 
1368
+
1353
1369
  /**
1354
1370
  * Check if given data is an empty string
1355
1371
  *
@@ -1396,6 +1412,7 @@ function isNotEmptyString( data ) {
1396
1412
  *
1397
1413
  */
1398
1414
 
1415
+
1399
1416
  /**
1400
1417
  * Check if the given data is a blank string
1401
1418
  *
@@ -1478,6 +1495,7 @@ function isNotSymbol( data ) {
1478
1495
  *
1479
1496
  */
1480
1497
 
1498
+
1481
1499
  /**
1482
1500
  * Check emptiness of given data
1483
1501
  *
@@ -1633,6 +1651,7 @@ function isNotEmpty( data ) {
1633
1651
  *
1634
1652
  */
1635
1653
 
1654
+
1636
1655
  class Validator {
1637
1656
 
1638
1657
  constructor() {
@@ -2304,6 +2323,7 @@ const ABSOLUTE_ZERO_FAHRENHEIT = -459.67;
2304
2323
  *
2305
2324
  */
2306
2325
 
2326
+
2307
2327
  /**
2308
2328
  *
2309
2329
  * @param data {*}
@@ -2340,6 +2360,7 @@ function isNotCelsius( data ) {
2340
2360
  *
2341
2361
  */
2342
2362
 
2363
+
2343
2364
  /**
2344
2365
  *
2345
2366
  * @param data {*}
@@ -2376,6 +2397,7 @@ function isNotFahrenheit( data ) {
2376
2397
  *
2377
2398
  */
2378
2399
 
2400
+
2379
2401
  /**
2380
2402
  *
2381
2403
  * @param data {*}
@@ -2412,6 +2434,7 @@ function isNotKelvin( data ) {
2412
2434
  *
2413
2435
  */
2414
2436
 
2437
+
2415
2438
  /**
2416
2439
  *
2417
2440
  * @param data {*}
@@ -2431,4 +2454,4 @@ function isNotTemperature( data ) {
2431
2454
  }
2432
2455
 
2433
2456
  export { ABSOLUTE_ZERO_CELSIUS, ABSOLUTE_ZERO_FAHRENHEIT, ABSOLUTE_ZERO_KELVIN, validatorInstance as Validator, isArray, isArrayBuffer, isArrayOfArray, isArrayOfBoolean, isArrayOfFunction, isArrayOfMultiElement, isArrayOfNull, isArrayOfNumber, isArrayOfObject, isArrayOfSingleElement, isArrayOfString, isArrayOfUndefined, isBigInt64Array, isBigUint64Array, isBlankString, isBoolean, isCelsius, isDefined, isEmpty, isEmptyArray, isEmptyObject, isEmptyString, isFahrenheit, isFalse, isFinite, isFloat, isFloat32Array, isFloat64Array, isFunction, isInfinite, isInfiniteNegative, isInfinitePositive, isInt16Array, isInt32Array, isInt8Array, isInteger, isKelvin, isMaxNegative, isMaxPositive, isMaxSafeInteger, isMinNegative, isMinPositive, isMinSafeInteger, isNaN, isNotArray, isNotArrayBuffer, isNotArrayOfArray, isNotArrayOfBoolean, isNotArrayOfFunction, isNotArrayOfNull, isNotArrayOfNumber, isNotArrayOfObject, isNotArrayOfString, isNotArrayOfUndefined, isNotBigInt64Array, isNotBigUint64Array, isNotBlankString, isNotBoolean, isNotCelsius, isNotDefined, isNotEmpty, isNotEmptyArray, isNotEmptyObject, isNotEmptyString, isNotFahrenheit, isNotFloat32Array, isNotFloat64Array, isNotFunction, isNotInt16Array, isNotInt32Array, isNotInt8Array, isNotKelvin, isNotNull, isNotNumber, isNotObject, isNotString, isNotSymbol, isNotTemperature, isNotUint16Array, isNotUint32Array, isNotUint8Array, isNotUint8ClampedArray, isNotUndefined, isNull, isNumber, isNumberNegative, isNumberPositive, isObject, isString, isSymbol, isTemperature, isTrue, isUint16Array, isUint32Array, isUint8Array, isUint8ClampedArray, isUndefined, isZero, isZeroNegative, isZeroPositive };
2434
- //# sourceMappingURL=itee-validators.esm.js.map
2457
+ //# sourceMappingURL=validators.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"validators.mjs","sources":["../sources/cores/arrays/isArray.js","../sources/cores/arrays/isEmptyArray.js","../sources/cores/arrays/isArrayOfArray.js","../sources/cores/booleans/isBoolean.js","../sources/cores/arrays/isArrayOfBoolean.js","../sources/cores/functions/isFunction.js","../sources/cores/arrays/isArrayOfFunction.js","../sources/cores/arrays/isArrayOfMultiElement.js","../sources/cores/voids/isNull.js","../sources/cores/arrays/isArrayOfNull.js","../sources/cores/voids/isDefined.js","../sources/cores/numbers/isInfinite.js","../sources/cores/numbers/isZero.js","../sources/cores/numbers/isNumber.js","../sources/cores/arrays/isArrayOfNumber.js","../sources/cores/objects/isObject.js","../sources/cores/arrays/isArrayOfObject.js","../sources/cores/arrays/isArrayOfSingleElement.js","../sources/cores/strings/isString.js","../sources/cores/arrays/isArrayOfString.js","../sources/cores/voids/isUndefined.js","../sources/cores/arrays/isArrayOfUndefined.js","../sources/cores/booleans/isTrue.js","../sources/cores/numbers/isMax.js","../sources/cores/numbers/isMin.js","../sources/cores/numbers/isSafeInteger.js","../sources/cores/objects/isEmptyObject.js","../sources/cores/strings/isEmptyString.js","../sources/cores/strings/isBlankString.js","../sources/cores/symbols/isSymbol.js","../sources/cores/voids/isEmpty.js","../sources/cores/cores.js","../sources/cores/typed-arrays/isArrayBuffer.js","../sources/cores/typed-arrays/isBigInt64Array.js","../sources/cores/typed-arrays/isBigUint64Array.js","../sources/cores/typed-arrays/isFloat32Array.js","../sources/cores/typed-arrays/isFloat64Array.js","../sources/cores/typed-arrays/isInt16Array.js","../sources/cores/typed-arrays/isInt32Array.js","../sources/cores/typed-arrays/isInt8Array.js","../sources/cores/typed-arrays/isUint16Array.js","../sources/cores/typed-arrays/isUint32Array.js","../sources/cores/typed-arrays/isUint8Array.js","../sources/cores/typed-arrays/isUint8ClampedArray.js","../sources/physics/temperatures/constants.js","../sources/physics/temperatures/isCelsius.js","../sources/physics/temperatures/isFahrenheit.js","../sources/physics/temperatures/isKelvin.js","../sources/physics/temperatures/isTemperature.js"],"sourcesContent":["/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/arrays/isArray\n * @desc Export functions to validate if a value is an array or not\n * @example {@lang javascript}\n *\n * import { isArray } from 'itee-validators'\n *\n * if( isArray( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is an array\n *\n * @param data {*} The data to check against the array type\n * @returns {boolean} true if data is array, false otherwise\n */\nexport function isArray( data ) {\n return Array.isArray( data )\n}\n\n/**\n * Check if given data is not an array\n *\n * @param data {*} The data to check against the array type\n * @returns {boolean} true if data is not array, false otherwise\n */\nexport function isNotArray( data ) {\n return !Array.isArray( data )\n}\n\n\n// #if IS_REMOVE_ON_BUILD\n\nexport function isArray_0( data ) {\n return data instanceof Array\n}\n\nexport function isNotArray_0( data ) {\n return !isArray( data )\n}\n\n// #endif\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/arrays/isEmptyArray\n * @desc Export function to validate if a value is an array of null length or not\n * @example\n *\n * import { isEmptyArray } from 'itee-validators'\n *\n * if( isEmptyArray( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNotArray } from './isArray.js'\n\n/**\n * Check if given data is an empty array\n *\n * @param data {*} The data to check against the empty array\n * @returns {boolean} true if data is an empty array, false otherwise\n */\nexport function isEmptyArray( data ) {\n\n if ( isNotArray( data ) ) { return false }\n\n return ( data.length === 0 )\n\n}\n\n/**\n * Check if given data is not an empty array\n *\n * @param data {*} The data to check against the empty array\n * @returns {boolean} true if data is not an empty array, false otherwise\n */\nexport function isNotEmptyArray( data ) {\n\n if ( isNotArray( data ) ) { return true }\n\n return ( data.length > 0 )\n\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/arrays/isArrayOfArray\n * @desc Export function to validate if a value is an array of array or not\n * @example\n *\n * import { isArrayOfArray } from 'itee-validators'\n *\n * if( isArrayOfArray( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport {\n isArray,\n isNotArray\n} from './isArray.js'\nimport { isEmptyArray } from './isEmptyArray.js'\n\n/**\n * Check if given data is an array of array\n *\n * @param data {*} The data to check against the array of array type\n * @returns {boolean} true if data is an array of array, false otherwise\n */\nexport function isArrayOfArray( data ) {\n\n if ( isNotArray( data ) ) { return false }\n if ( isEmptyArray( data ) ) { return false }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotArray( data[ index ] ) ) {\n return false\n }\n }\n\n return true\n\n}\n\n/**\n * Check if given data is not an array of array\n *\n * @param data {*} The data to check against the array of array type\n * @returns {boolean} true if data is not an array of array, false otherwise\n */\nexport function isNotArrayOfArray( data ) {\n\n if ( isNotArray( data ) ) { return true }\n if ( isEmptyArray( data ) ) { return true }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isArray( data[ index ] ) ) {\n return false\n }\n }\n\n return true\n\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/booleans/isBoolean\n * @desc Export function to validate if a value is a boolean or not\n * @example\n *\n * import { isBoolean } from 'itee-validators'\n *\n * if( isBoolean( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a boolean\n *\n * @param data {*} The data to check against the booleaness\n * @returns {boolean} true if data is a boolean, false otherwise.\n */\nexport function isBoolean( data ) {\n return ( typeof data === 'boolean' )\n}\n\n/**\n * Check if given data is not a boolean\n *\n * @param data {*} The data to check against the booleaness\n * @returns {boolean} true if data is not a boolean, false otherwise.\n */\nexport function isNotBoolean( data ) {\n return ( typeof data !== 'boolean' )\n}\n\n// #if IS_REMOVE_ON_BUILD\n\nexport function isBoolean_alt( data ) {\n return typeof data === 'boolean' || ( typeof data === 'object' && data !== null && typeof data.valueOf() === 'boolean' )\n}\n\nexport function isNotBoolean_negbase( data ) {\n return !isBoolean( data )\n}\n\n// #endif\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/arrays/isArrayOfBoolean\n * @desc Export function to validate if a value is an array of booleans or not\n * @example\n *\n * import { isArrayOfBoolean } from 'itee-validators'\n *\n * if( isArrayOfBoolean( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNotBoolean } from '../booleans/isBoolean.js'\nimport { isNotArray } from './isArray.js'\nimport { isEmptyArray } from './isEmptyArray.js'\n\n/**\n * Check if given data is not an empty array where all values are boolean\n *\n * @param data {*} The data to check against the array of booleans\n * @returns {boolean} true if data is not an empty array where all values are boolean, false otherwise\n */\nexport function isArrayOfBoolean( data ) {\n\n if ( isNotArray( data ) ) { return false }\n if ( isEmptyArray( data ) ) { return false }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotBoolean( data[ index ] ) ) {\n return false\n }\n }\n\n return true\n\n}\n\n/**\n * Check if given data is not an empty array where all values are not boolean\n *\n * @param data {*} The data to check against the array of booleans\n * @returns {boolean} true if data is not an empty array where all values are not boolean, false otherwise\n */\nexport function isNotArrayOfBoolean( data ) {\n\n if ( isNotArray( data ) ) { return true }\n if ( isEmptyArray( data ) ) { return true }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotBoolean( data[ index ] ) ) {\n return true\n }\n }\n\n return false\n\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/functions/isFunction\n * @desc Export function to validate if a value is a function or not\n * @example\n *\n * import { isFunction } from 'itee-validators'\n *\n * if( isFunction( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a function\n *\n * @param data {*} The data to check against the functionality\n * @returns {boolean} true if data is a function, false otherwise.\n */\nexport function isFunction( data ) {\n return ( typeof data === 'function' )\n}\n\n/**\n * Check if given data is not a function\n *\n * @param data {*} The data to check against the functionality\n * @returns {boolean} true if data is not a function, false otherwise.\n */\nexport function isNotFunction( data ) {\n return ( typeof data !== 'function' )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/arrays/isArrayOfBoolean\n * @desc Export function to validate if a value is an array of functions or not\n * @example\n *\n * import { isArrayOfFunction } from 'itee-validators'\n *\n * if( isArrayOfFunction( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNotFunction } from '../functions/isFunction.js'\nimport { isNotArray } from './isArray.js'\nimport { isEmptyArray } from './isEmptyArray.js'\n\n/**\n * Check if given data is not an empty array where all values are functions\n *\n * @param data {*} The data to check against the array of functions\n * @returns {boolean} true if data is not an empty array where all values are functions, false otherwise\n */\nexport function isArrayOfFunction( data ) {\n\n if ( isNotArray( data ) ) { return false }\n if ( isEmptyArray( data ) ) { return false }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotFunction( data[ index ] ) ) {\n return false\n }\n }\n\n return true\n\n}\n\n/**\n * Check if given data is not an empty array where all values are not functions\n *\n * @param data {*} The data to check against the array of functions\n * @returns {boolean} true if data is not an empty array where all values are not functions, false otherwise\n */\nexport function isNotArrayOfFunction( data ) {\n\n if ( isNotArray( data ) ) { return true }\n if ( isEmptyArray( data ) ) { return true }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotFunction( data[ index ] ) ) {\n return true\n }\n }\n\n return false\n\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/arrays/isArrayOfMultiElement\n * @desc Export function to validate if a value is an array with more than one value\n * @example\n *\n * import { isArrayOfMultiElement } from 'itee-validators'\n *\n * if( isArrayOfMultiElement( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNotArray } from './isArray.js'\n\n/**\n * Check if given data is an array with multiples values\n *\n * @param data {*} The data to check against the single valued array\n * @returns {boolean} true if data is an array with multiples values, false otherwise\n */\nexport function isArrayOfMultiElement( data ) {\n\n if ( isNotArray( data ) ) { return false }\n\n return ( data.length > 1 )\n\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/voids/isNull\n * @desc Export function to validate if a value is null or not\n * @example\n *\n * import { isNull } from 'itee-validators'\n *\n * if( isNull( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is null\n *\n * @param data {*} The data to check against the nullity\n * @returns {boolean} true if data is null, false otherwise.\n */\nexport function isNull( data ) {\n return ( data === null )\n}\n\n// #if IS_REMOVE_ON_BUILD\n\nexport function isNull_0( value ) {\n return Object.is( value, null )\n}\n\n// #endif\n\n/**\n * Check if given data is not null\n *\n * @param data {*} The data to check against the nullity\n * @returns {boolean} true if data is not null, false otherwise.\n */\nexport function isNotNull( data ) {\n return ( data !== null )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/arrays/isArrayOfNull\n * @desc Export function to validate if a value is an array of null values or not\n * @example\n *\n * import { isArrayOfNull } from 'itee-validators'\n *\n * if( isArrayOfNull( value ) ) {\n * //...\n * } else {\n * //...\n * } *\n */\n\nimport { isNotNull } from '../voids/isNull.js'\nimport { isNotArray } from './isArray.js'\nimport { isEmptyArray } from './isEmptyArray.js'\n\n/**\n * Check if given data is not an empty array where all values are null\n *\n * @param data {*} The data to check against the array of null type\n * @returns {boolean} true if data is not an empty array where all values are null, false otherwise\n */\nexport function isArrayOfNull( data ) {\n\n if ( isNotArray( data ) ) { return false }\n if ( isEmptyArray( data ) ) { return false }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotNull( data[ index ] ) ) {\n return false\n }\n }\n\n return true\n\n}\n\n/**\n * Check if given data is not an empty array where all values are not null\n *\n * @param data {*} The data to check against the array of null type\n * @returns {boolean} true if data is not an empty array where all values are not null, false otherwise\n */\nexport function isNotArrayOfNull( data ) {\n\n if ( isNotArray( data ) ) { return true }\n if ( isEmptyArray( data ) ) { return true }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotNull( data[ index ] ) ) {\n return true\n }\n }\n\n return false\n\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/voids/isDefined\n * @desc Export function to validate if a value is a defined or not\n * @example\n *\n * import { isDefined } from 'itee-validators'\n *\n * if( isDefined( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is not null and not undefined\n *\n * @param data {*} The data to check against the existence\n * @returns {boolean} true if data is not null and not undefined, false otherwise.\n */\nexport function isDefined( data ) {\n return ( ( data !== null ) && ( typeof data !== 'undefined' ) )\n}\n\n/**\n * Check if given data is null or undefined\n *\n * @param data {*} The data to check against the existence\n * @returns {boolean} true if data is null or undefined, false otherwise.\n */\nexport function isNotDefined( data ) {\n return ( ( data === null ) || ( typeof data === 'undefined' ) )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/numbers/isInfinite\n * @desc Export function to validate if a value is a finite or infinite number\n * @example\n *\n * import { isInfinite } from 'itee-validators'\n *\n * if( isInfinite( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n\n/**\n * Check if the given data is an infinite negative number\n *\n * @param data {*} The data to check against the negative infinite state\n * @returns {boolean} true if data is negative infinite, false otherwise\n */\nexport function isInfiniteNegative( data ) {\n return ( data === Number.NEGATIVE_INFINITY )\n}\n\n/**\n * Check if the given data is an infinite positive number\n *\n * @param data {*} The data to check against the positive infinite state\n * @returns {boolean} true if data is positive infinite, false otherwise\n */\nexport function isInfinitePositive( data ) {\n return ( data === Number.POSITIVE_INFINITY )\n}\n\n/**\n * Check if the given data is an infinite number\n *\n * @param data {*} The data to check against the infinite state\n * @returns {boolean} true if data is infinite, false otherwise\n */\nexport function isInfinite( data ) {\n return isInfiniteNegative( data ) || isInfinitePositive( data )\n}\n\n/**\n * Check if the given data is a finite number\n *\n * @param data {*} The data to check against the finite state\n * @returns {boolean} true if data is finite, false otherwise\n */\nexport function isFinite( data ) {\n return Number.isFinite( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/numbers/isZero\n * @desc Export function to validate if a value is zero, with a special sign\n * @example\n *\n * import { isZero } from 'itee-validators'\n *\n * if( isZero( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n// Todo: negations\n\n/**\n * Check if the given data is zero\n *\n * @param data {*} The data to check against the zero value\n * @returns {boolean} true if data is zero, false otherwise\n */\nexport function isZero( data ) {\n //Todo protect truthy values\n return ( data === 0 )\n}\n\n/**\n * Check if the given data is a positive zero\n *\n * @param data {*} The data to check against the positive zero value\n * @returns {boolean} true if data is a positive zero, false otherwise\n */\nexport function isZeroPositive( data ) {\n return ( data === 0 && ( 1 / data ) === Number.POSITIVE_INFINITY )\n}\n\n/**\n * Check if the given data is a negative zero\n *\n * @param data {*} The data to check against the negative zero value\n * @returns {boolean} true if data is a negative zero, false otherwise\n */\nexport function isZeroNegative( data ) {\n return ( data === 0 && ( 1 / data ) === Number.NEGATIVE_INFINITY )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/numbers/isNumber\n * @desc Export function to validate if a value is a number, or with special sign\n * @example\n *\n * import { isNumber } from 'itee-validators'\n *\n * if( isNumber( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n// Todo: Negations\n//Todo: isInRange(x, y, value, xInclusive, yInclusive)\n//Todo: isInRangeZeroOne(value, zeroInclusive, oneInclusive) //inclusive\n\nimport { isNotDefined } from '../voids/isDefined.js'\nimport {\n isInfinite,\n isInfinitePositive\n} from './isInfinite.js'\nimport { isZeroPositive } from './isZero.js'\n\n/**\n * Check if given data is a number\n *\n * @param data {*} The data to check against the maximum safe integer state\n * @returns {boolean} true if data is a number, false otherwise.\n */\nexport function isNumber( data ) {\n\n if ( isNotDefined( data ) ) { return false }\n\n return ( data.constructor === Number )\n\n}\n\n/**\n * Check if the data is a positive number\n *\n * @param data {*} The data to check against the positivity\n * @returns {boolean} true if data is a positive number, false otherwise.\n */\nexport function isNumberPositive( data ) {\n\n if ( isNotNumber( data ) ) { return false }\n\n // Todo: Math.sign\n return ( data > 0 || isZeroPositive( data ) || isInfinitePositive( data ) )\n\n}\n\n/**\n * Check if the data is a negative number\n *\n * @param data {*} The data to check against the negativity\n * @returns {boolean} true if data is a negative number, false otherwise.\n */\nexport function isNumberNegative( data ) {\n return ( isNumber( data ) && data < 0 )\n}\n\n/**\n * Check if given data is not a number\n *\n * @param data {*} The data to check against the number type\n * @returns {boolean} true if data is not of type number or not a number, false otherwise.\n */\nexport function isNotNumber( data ) {\n return !( isNumber( data ) )\n}\n\n/**\n * Check if the given data is an integer number\n *\n * @param data {*} The data to check against the integer state\n * @returns {boolean} true if data is an integer, false otherwise\n */\nexport function isInteger( data ) {\n return Number.isInteger( data )\n}\n\n/**\n * Check if given data is a floating point number\n *\n * @param data {*} The data to check against the floating point\n * @returns {boolean} true if data is a float, false otherwise\n */\nexport function isFloat( data ) {\n\n if ( isNotNumber( data ) ) { return false }\n if ( Number.isNaN( data ) ) { return false }\n if ( isInfinite( data ) ) { return false}\n\n return data % 1 !== 0\n\n}\n\n/**\n * Check if given data is not a number\n *\n * @param data {*} The data to check against the NaN state\n * @returns {boolean} true if data is not a number, false otherwise.\n */\nexport function isNaN( data ) {\n return Number.isNaN( data )\n}\n\n\n// #if IS_REMOVE_ON_BUILD\n\nexport function isNumber_0( data ) {\n return ( typeof data === 'number' && !Number.isNaN( data ) )\n}\n\nexport function isNumber_1( data ) {\n return ( Number( data ) === data )\n}\n\n///\n\nexport function isInteger_0( data ) {\n return ( data === 0 && ( 1 / data ) === Number.POSITIVE_INFINITY )\n}\n\nexport function isInteger_1( data ) {\n return data % 1 === 0\n}\n\nexport function isInteger_2( n ) {\n return n === +n && n === ( n | 0 )\n}\n\nexport function isInteger_3( nVal ) {\n return typeof nVal === 'number' && isFinite( nVal ) && nVal > -9007199254740992 && nVal < 9007199254740992 && Math.floor( nVal ) === nVal\n}\n\n///\n\nexport function isFloat_1( n ) {\n return n === +n && n !== ( n | 0 )\n}\n\nexport function isFloat_2( x ) {\n return !!( x % 1 )\n}\n\n// #endif\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/arrays/isArrayOfBoolean\n * @desc Export function to validate if a value is an array of numbers or not\n * @example\n *\n * import { isArrayOfNumber } from 'itee-validators'\n *\n * if( isArrayOfNumber( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNotNumber } from '../numbers/isNumber.js'\nimport { isNotArray } from './isArray.js'\nimport { isEmptyArray } from './isEmptyArray.js'\n\n/**\n * Check if given data is not an empty array where all values are numbers\n *\n * @param data {*} The data to check against the array of numbers\n * @returns {boolean} true if data is not an empty array where all values are numbers, false otherwise\n */\nexport function isArrayOfNumber( data ) {\n\n if ( isNotArray( data ) ) { return false }\n if ( isEmptyArray( data ) ) { return false }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotNumber( data[ index ] ) ) {\n return false\n }\n }\n\n return true\n\n}\n\n/**\n * Check if given data is not an empty array where all values are not numbers\n *\n * @param data {*} The data to check against the array of numbers\n * @returns {boolean} true if data is not an empty array where all values are not numbers, false otherwise\n */\nexport function isNotArrayOfNumber( data ) {\n\n if ( isNotArray( data ) ) { return true }\n if ( isEmptyArray( data ) ) { return true }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotNumber( data[ index ] ) ) {\n return true\n }\n }\n\n return false\n\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/objects/isObject\n * @desc Export function to validate if a value is an object\n * @example\n *\n * import { isObject } from 'itee-validators'\n *\n * if( isObject( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNotDefined } from '../voids/isDefined.js'\n\n/**\n * Check if given data is an object\n *\n * @param data {*} The data to check against the object type\n * @returns {boolean} true if data is object, false otherwise\n */\nexport function isObject( data ) {\n\n if ( isNotDefined( data ) ) { return false }\n\n return ( data.constructor === Object )\n}\n\n/**\n * Check if given data is not an object\n *\n * @param data {*} The data to check against the object type\n * @returns {boolean} true if data is not an object, false otherwise\n */\nexport function isNotObject( data ) {\n return !isObject( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/arrays/isArrayOfObject\n * @desc Export function to validate if a value is an array of objects or not\n * @example\n *\n * import { isArrayOfObject } from 'itee-validators'\n *\n * if( isArrayOfObject( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNotObject } from '../objects/isObject.js'\nimport { isNotArray } from './isArray.js'\nimport { isEmptyArray } from './isEmptyArray.js'\n\n/**\n * Check if given data is an array where all values are of object type\n *\n * @param data {*} The data to check against the array of object type\n * @returns {boolean} true if data is an array where all values are of object type, false otherwise\n */\nexport function isArrayOfObject( data ) {\n\n if ( isNotArray( data ) ) { return false }\n if ( isEmptyArray( data ) ) { return false }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotObject( data[ index ] ) ) {\n return false\n }\n }\n\n return true\n\n}\n\n/**\n * Check if given data is not an array where all values are of object type\n *\n * @param data {*} The data to check against the array of object type\n * @returns {boolean} true if data is not an array where all values are of object type, false otherwise\n */\nexport function isNotArrayOfObject( data ) {\n\n if ( isNotArray( data ) ) { return true }\n if ( isEmptyArray( data ) ) { return true }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotObject( data[ index ] ) ) {\n return true\n }\n }\n\n return false\n\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/arrays/isArrayOfSingleElement\n * @desc Export function to validate if a value is an array of single value or not\n * @example\n *\n * import { isArrayOfSingleElement } from 'itee-validators'\n *\n * if( isArrayOfSingleElement( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNotArray } from './isArray.js'\n\n/**\n * Check if given data is an array with a single value\n *\n * @param data {*} The data to check against the single valued array\n * @returns {boolean} true if data is an array with a single value, false otherwise\n */\nexport function isArrayOfSingleElement( data ) {\n\n if ( isNotArray( data ) ) { return false }\n\n if ( data.length !== 1 ) {\n return false\n }\n\n return true\n\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/strings/isString\n * @desc Export function to validate if a value is a string\n * @example\n *\n * import { isString } from 'itee-validators'\n *\n * if( isString( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a string\n *\n * @param data {*} The data to check against the string type\n * @returns {boolean} true if data is a string, false otherwise.\n */\nexport function isString( data ) {\n return ( typeof data === 'string' || data instanceof String )\n}\n\n/**\n * Check if given data is not a string\n *\n * @param data {*} The data to check against the string type\n * @returns {boolean} true if data is not a string, false otherwise.\n */\nexport function isNotString( data ) {\n return !isString( data )\n}\n\n// #if IS_REMOVE_ON_BUILD\n\nexport function isString_0( val ) {\n return ( typeof val === 'string' )\n}\n\nexport function isString_1( val ) {\n return ( typeof val === 'string' || ( ( !!val && typeof val === 'object' ) && Object.prototype.toString.call( val ) === '[object String]' ) )\n}\n\nexport function isString_2( val ) {\n return ( Object.prototype.toString.call( val ) === '[object String]' )\n}\n\nexport function isString_3( val ) {\n return ( val !== null && val !== undefined && val.constructor === String )\n}\n\nexport function isString_4( val ) {\n return ( val === val + '' )\n}\n\n// #endif\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/arrays/isArrayOfString\n * @desc Export function to validate if a value is an array of string or not\n * @example\n *\n * import { isArrayOfString } from 'itee-validators'\n *\n * if( isArrayOfString( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNotString } from '../strings/isString.js'\nimport { isNotArray } from './isArray.js'\nimport { isEmptyArray } from './isEmptyArray.js'\n\n/**\n * Check if given data is not an empty array where all values are string\n *\n * @param data {*} The data to check against the array of strings\n * @returns {boolean} true if data is not an empty array where all values are string, false otherwise\n */\nexport function isArrayOfString( data ) {\n\n if ( isNotArray( data ) ) { return false }\n if ( isEmptyArray( data ) ) { return false }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotString( data[ index ] ) ) {\n return false\n }\n }\n\n return true\n\n}\n\n/**\n * Check if given data is not an empty array where all values are not string\n *\n * @param data {*} The data to check against the array of strings\n * @returns {boolean} true if data is not an empty array where all values are not string, false otherwise\n */\nexport function isNotArrayOfString( data ) {\n\n if ( isNotArray( data ) ) { return true }\n if ( isEmptyArray( data ) ) { return true }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotString( data[ index ] ) ) {\n return true\n }\n }\n\n return false\n\n}\n\n// #if IS_REMOVE_ON_BUILD\n\nexport function isArrayOfString_1( data ) {\n\n if ( !Array.isArray( data ) ) {\n return false\n }\n\n const dataLength = data.length\n if ( dataLength === 0 ) {\n return false\n }\n\n for ( let index = 0, arrayLength = data.length ; index < arrayLength ; index += 1 ) {\n if ( typeof data[ index ] !== 'string' ) {\n return false\n }\n }\n\n return true\n\n}\n\n// #endif\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/voids/isUndefined\n * @desc Export function to validate if a value is a void\n * @example\n *\n * import { isNull } from 'itee-validators'\n *\n * if( isNull( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is undefined\n *\n * @param data {*} The data to check against the undefiness\n * @returns {boolean} true if data is undefined, false otherwise.\n */\nexport function isUndefined( data ) {\n return ( typeof data === 'undefined' )\n}\n\n/**\n * Check if given data is defined\n *\n * @param data {*} The data to check against the undefiness\n * @returns {boolean} true if data is defined, false otherwise.\n */\nexport function isNotUndefined( data ) {\n return ( typeof data !== 'undefined' )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/arrays/isArrayOfUndefined\n * @desc Export function to validate if a value is an array of undefined values or not\n * @example\n *\n * import { isArrayOfUndefined } from 'itee-validators'\n *\n * if( isArrayOfUndefined( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNotUndefined } from '../voids/isUndefined.js'\nimport { isNotArray } from './isArray.js'\nimport { isEmptyArray } from './isEmptyArray.js'\n\n/**\n * Check if given data is not an empty array where all values are undefined\n *\n * @param data {*} The data to check against the array of undefined\n * @returns {boolean} true if data is not an empty array where all values are undefined, false otherwise\n */\nexport function isArrayOfUndefined( data ) {\n\n if ( isNotArray( data ) ) { return false }\n if ( isEmptyArray( data ) ) { return false }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotUndefined( data[ index ] ) ) {\n return false\n }\n }\n\n return true\n\n}\n\n/**\n * Check if given data is not an empty array where all values are defined\n *\n * @param data {*} The data to check against the array of undefined\n * @returns {boolean} true if data is not an empty array where all values are defined, false otherwise\n */\nexport function isNotArrayOfUndefined( data ) {\n\n if ( isNotArray( data ) ) { return true }\n if ( isEmptyArray( data ) ) { return true }\n\n for ( let index = 0, dataLength = data.length ; index < dataLength ; index++ ) {\n if ( isNotUndefined( data[ index ] ) ) {\n return true\n }\n }\n\n return false\n\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/booleans/isTrue\n * @desc Export function to validate if a value is a boolean set to true or false\n * @example\n *\n * import { isTrue } from 'itee-validators'\n *\n * if( isTrue( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isBoolean } from './isBoolean.js'\n\n/**\n * Check if given data is a boolean with value to true\n *\n * @param data {*} The data to check against true value\n * @returns {boolean} true if data is a boolean set to true, false otherwise.\n */\nexport function isTrue( data ) {\n return ( isBoolean( data ) && ( data === true ) )\n}\n\n/**\n * Check if given data is a boolean with value to false\n *\n * @param data {*} The data to check against false value\n * @returns {boolean} true if data is a boolean set to false, false otherwise.\n */\nexport function isFalse( data ) {\n return ( isBoolean( data ) && ( data === false ) )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/numbers/isMax\n * @desc Export function to validate if a value is a maximum javascript number\n * @example\n *\n * import { isMaxPositive } from 'itee-validators'\n *\n * if( isMaxPositive( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if the given data is a maximum positive number\n *\n * @param data {*} The data to check against the positive maximum state\n * @returns {boolean} true if data is positive maximum, false otherwise\n */\nexport function isMaxPositive( data ) {\n return ( data === Number.MAX_VALUE )\n}\n\n/**\n * Check if the given data is a maximum negative number\n *\n * @param data {*} The data to check against the maximum infinite state\n * @returns {boolean} true if data is negative maximum, false otherwise\n */\nexport function isMaxNegative( data ) {\n return ( data === -Number.MAX_VALUE )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/numbers/isMin\n * @desc Export function to validate if a value is a minimum javascript number\n * @example\n *\n * import { isMaxPositive } from 'itee-validators'\n *\n * if( isMaxPositive( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if the given data is a minimum positive number\n *\n * @param data {*} The data to check against the positive minimum state\n * @returns {boolean} true if data is positive minimum, false otherwise\n */\nexport function isMinPositive( data ) {\n return ( data === Number.MIN_VALUE )\n}\n\n/**\n * Check if the given data is a minimum negative number\n *\n * @param data {*} The data to check against the minimum infinite state\n * @returns {boolean} true if data is negative minimum, false otherwise\n */\nexport function isMinNegative( data ) {\n return ( data === -Number.MIN_VALUE )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/numbers/isSafeInteger\n * @desc Export function to validate if a value is a safe integer number\n * @example\n *\n * import { isMaxSafeInteger } from 'itee-validators'\n *\n * if( isMaxSafeInteger( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if the given data is a maximum safe integer number\n *\n * @param data {*} The data to check against the maximum safe integer state\n * @returns {boolean} true if data is a maximum safe integer, false otherwise\n */\nexport function isMaxSafeInteger( data ) {\n return ( data === Number.MAX_SAFE_INTEGER )\n}\n\n// Todo: Neg\n\n/**\n * Check if the given data is a minimum safe integer number\n *\n * @param data {*} The data to check against the minimum safe integer state\n * @returns {boolean} true if data is a minimum safe integer, false otherwise\n */\nexport function isMinSafeInteger( data ) {\n return ( data === Number.MIN_SAFE_INTEGER )\n}\n\n// Todo: Neg\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/objects/isEmptyObject\n * @desc Export function to validate if a value is an empty object\n * @example\n *\n * import { isEmptyObject } from 'itee-validators'\n *\n * if( isEmptyObject( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNotObject } from './isObject.js'\n\n/**\n * Check if given data is an empty object\n *\n * @param data {*} The data to check against the emptiness of the object\n * @returns {boolean} true if data is an empty object, false otherwise\n */\nexport function isEmptyObject( data ) {\n\n if ( isNotObject( data ) ) { return false }\n\n if ( data.length === 0 ) {\n return true\n }\n\n // Otherwise, does it have any properties of its own?\n for ( let key in data ) {\n if ( Object.prototype.hasOwnProperty.call( data, key ) ) {\n return false\n }\n }\n\n return true\n\n}\n\n/**\n * Check if given data is not an empty object\n *\n * @param data {*} The data to check against the emptiness of the object\n * @returns {boolean} true if data is not an empty object, false otherwise\n */\nexport function isNotEmptyObject( data ) {\n return !( isEmptyObject( data ) )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/strings/isEmptyString\n * @desc Export function to validate if a value is a empty string\n * @example\n *\n * import { isEmptyString } from 'itee-validators'\n *\n * if( isEmptyString( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNotString } from './isString.js'\n\n/**\n * Check if given data is an empty string\n *\n * @param data {*} The data to check against the emptiness of the string\n * @returns {boolean} true if data is an empty string, false otherwise.\n */\nexport function isEmptyString( data ) {\n\n if ( isNotString( data ) ) {\n return false\n }\n\n return ( data.length === 0 )\n\n}\n\n/**\n * Check if given data is not an empty string\n *\n * @param data {*} The data to check against the emptiness of the string\n * @returns {boolean} true if data is not an empty string, false otherwise.\n */\nexport function isNotEmptyString( data ) {\n\n return !( isEmptyString( data ) )\n\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/strings/isBlankString\n * @desc Export function to validate if a value is a blank string\n * @example\n *\n * import { isBlankString } from 'itee-validators'\n *\n * if( isBlankString( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isEmptyString } from './isEmptyString.js'\nimport { isNotString } from './isString.js'\n\n/**\n * Check if the given data is a blank string\n *\n * @param data {*} The data to check against the blankness of the string\n * @returns {boolean} true if data is a blank string, false otherwise.\n */\nexport function isBlankString( data ) {\n\n if ( isNotString( data ) ) { return false }\n if ( isEmptyString( data ) ) { return false }\n\n return ( !/\\S/.test( data ) )\n}\n\n/**\n * Check if the given data is not a blank string\n *\n * @param data {*} The data to check against the blankness of the string\n * @returns {boolean} true if data is not a blank string, false otherwise.\n */\nexport function isNotBlankString( data ) {\n\n return !( isBlankString( data ) )\n\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/symbols/isSymbol\n * @desc Export function to validate if a value is a symbol\n * @example\n *\n * import { isSymbol } from 'itee-validators'\n *\n * if( isSymbol( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a symbol\n *\n * @param data {*} The data to check against the symbol type\n * @returns {boolean} true if data is a symbol, false otherwise.\n */\nexport function isSymbol( data ) {\n return ( typeof data === 'symbol' )\n}\n\n/**\n * Check if given data is not a symbol\n *\n * @param data {*} The data to check against the symbol type\n * @returns {boolean} true if data is not a symbol, false otherwise.\n */\nexport function isNotSymbol( data ) {\n return ( typeof data !== 'symbol' )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/voids/isEmpty\n * @desc Export function to validate if a value could be considered as empty\n * @example\n *\n * import { isEmpty } from 'itee-validators'\n *\n * if( isEmpty( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isEmptyArray } from '../arrays/isEmptyArray.js'\nimport { isEmptyObject } from '../objects/isEmptyObject.js'\nimport { isEmptyString } from '../strings/isEmptyString.js'\nimport { isNotDefined } from './isDefined.js'\n\n/**\n * Check emptiness of given data\n *\n * See: https://stackoverflow.com/questions/4346186/how-to-determine-if-a-function-is-empty\n *\n * @param data {*} The data to check against the emptiness\n * @returns {boolean} true if data is considered as empty, false otherwise.\n */\nexport function isEmpty( data ) {\n\n if ( isNotDefined( data ) ) { return false }\n if ( isEmptyString( data ) ) { return true}\n if ( isEmptyArray( data ) ) { return true }\n if ( isEmptyObject( data ) ) { return true }\n\n return false\n\n}\n\n/**\n * Check fullness of given data\n *\n * @param data {*} The data to check against the emptiness\n * @returns {boolean} true if data is considered as not empty, false otherwise.\n */\nexport function isNotEmpty( data ) {\n return !isEmpty( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/cores\n * @description Export the Validator singleton instance that allow to validate complex data structure\n * @example\n *\n const validator = Itee.Validators.Validator\n\n // Using unique function for One registered type\n // Usefull when a simple data structure is used multiple times\n validator.add( 'ColorType', color => {\n\n const r = color.r\n if ( color.r === undefined || Itee.Validators.isNotNumber( r ) ) {\n return false\n }\n\n const g = color.g\n if ( color.g === undefined || Itee.Validators.isNotNumber( g ) ) {\n return false\n }\n\n const b = color.b\n if ( color.b === undefined || Itee.Validators.isNotNumber( b ) ) {\n return false\n }\n\n return true\n } )\n\n // Using schema composition\n // Usefull for design validation schema faster and based on previous declared validation types\n validator.add( 'Range_0_255', ( value ) => {\n\n if ( Itee.Validators.isNotNumber( value ) ) {\n return false\n }\n\n return !(value <= 0 || value > 255)\n\n } )\n\n validator.add( 'ColorSchema', {\n r: {\n required: true,\n type: 'Range_0_255'\n },\n g: {\n required: true,\n type: 'Range_0_255'\n },\n b: {\n required: true,\n type: 'Range_0_255'\n }\n } )\n\n validator.add( 'ColorStructure', {\n color_from_type: {\n type: 'ColorType'\n },\n col_from_schema: {\n type: 'ColorSchema'\n },\n col_from_fn: {\n // Inner function\n // Usefull for specific validation requirement that cannot match other previous validation schema or type\n fn: function ColorValidator ( color ) {\n\n const r = color.r\n if ( color.r === undefined || Itee.Validators.isNotNumber( r ) ) {\n return false\n }\n\n const g = color.g\n if ( color.g === undefined || Itee.Validators.isNotNumber( g ) ) {\n return false\n }\n\n const b = color.b\n if ( color.b === undefined || Itee.Validators.isNotNumber( b ) ) {\n return false\n }\n\n return true\n }\n }\n } )\n\n // The data to validate\n const colorStruct = {\n color_from_type: {\n r: 0,\n g: 1,\n b: 2\n },\n col_from_schema: {\n r: 10,\n g: 20,\n b: 30\n },\n col_from_fn: {\n r: 0,\n g: 127,\n b: 255\n }\n }\n\n // Execute\n\n try {\n\n if ( validator.check( colorStruct, 'ColorStructure' ) ) {\n alert( 'ColorStructure is valid !' )\n } else {\n alert( validator.errors )\n }\n\n } catch ( err ) {\n alert( err )\n }\n *\n */\n\nimport { isArray } from './arrays/_arrays.js'\nimport { isBoolean } from './booleans/_booleans.js'\nimport {\n isFunction,\n isNotFunction\n} from './functions/_functions.js'\nimport {\n isFloat,\n isInteger,\n isNumber\n} from './numbers/_numbers.js'\nimport {\n isNotObject,\n isObject\n} from './objects/_objects.js'\nimport {\n isNotString,\n isString\n} from './strings/_strings.js'\nimport { isSymbol } from './symbols/_symbols.js'\nimport {\n isDefined,\n isNotDefined\n} from './voids/_voids.js'\n\nclass Validator {\n\n constructor() {\n\n /**\n * The validators store, by default it contains validators for Boolean, Number, Integer, Float, Array, String, Object, Symbol and Function\n *\n * @type {object}\n */\n this.validators = {\n Boolean: isBoolean,\n Number: isNumber,\n Integer: isInteger,\n Float: isFloat,\n Array: isArray,\n String: isString,\n Object: isObject,\n Symbol: isSymbol,\n Function: isFunction\n }\n\n /**\n * The list of errors occured during the check\n *\n * @type {Array.<string>}\n */\n this.errors = []\n\n }\n\n /**\n * Add a new validator schema to the validator instance\n *\n * @param type {string} - A string that represent the type of data to validate\n * @param validator {(function|object)} - A function or validation schema that represent the type of data to validate\n */\n add( type, validator ) {\n\n if ( isNotString( type ) ) { throw new TypeError( `Validator: Expect type to be a string` ) }\n if ( isNotFunction( validator ) && isNotObject( validator ) ) { throw new TypeError( `Validator: Expect validator to be an object or a function` ) }\n if ( isDefined( this.validators[ type ] ) ) { throw new TypeError( `Validator: a validator is already defined for type '${ type }'` ) }\n\n this.validators[ type ] = validator\n\n }\n\n /**\n * To remove a registered type\n *\n * @param type {string} - The type to remove\n */\n remove( type ) {\n\n delete this.validators[ type ]\n\n }\n\n /**\n * Allow to known the available types store in current validator instance\n *\n * @return {Array.<string>} - The list of registered type\n */\n getAvalaibleTypes() {\n\n const availablesTypes = []\n\n for ( let key in this.validators ) {\n availablesTypes.push( key )\n }\n\n return availablesTypes\n\n }\n\n /**\n * Will perform a deep structural comparison between the given data and the validation schema of the given type\n *\n * @param data {*} - The data to validate\n * @param type {string} - The type of the validation schema to apply\n * @param breakOnError {boolean} - Return on first validation error ( true by default )\n * @return {boolean} - Return true is the data is validated, false otherwise\n */\n check( data, type, breakOnError = true ) {\n\n const validator = this.validators[ type ]\n if ( isNotDefined( validator ) ) {\n throw new TypeError( `Validator: Unable to find schema validation of type '${ type }'` )\n }\n\n let result = true\n if ( isFunction( validator ) ) {\n\n result = validator( data )\n\n } else if ( isObject( validator ) ) {\n\n let subResult = true\n for ( let key in validator ) {\n\n const subValidator = validator[ key ]\n if ( isNotDefined( subValidator ) ) {\n throw new TypeError( `Validator: Missing validator for key '${ key }' of type '${ type }'` )\n }\n\n const value = data[ key ]\n const isRequired = subValidator.required\n if ( isNotDefined( value ) ) {\n if ( isRequired ) {\n subResult = false\n } else {\n continue\n }\n }\n\n // In case of overriden validation function check it first\n let validatorFunction = subValidator.fn\n if ( isDefined( validatorFunction ) ) {\n\n if ( isNotFunction( validatorFunction ) ) {\n throw new TypeError( `Validator: Invalid validation function for '${ key }' with type '${ type }'` )\n }\n\n subResult = validatorFunction( value )\n\n } else {\n\n subResult = this.check( value, subValidator.type, breakOnError )\n\n }\n\n if ( subResult === false ) {\n\n this.errors.push( `Validator: Invalid property '${ key }' of type '${ subValidator.type }' with value '${ value }' in object of type '${ type }'` )\n result = false\n if ( breakOnError ) {\n break\n }\n\n }\n\n }\n\n } else {\n\n throw new TypeError( `Validator: Unknown validator of type '${ type }'` )\n\n }\n\n return result\n\n }\n\n}\n\n/**\n * The singleton instance\n *\n * @type {Validator}\n */\nlet validatorInstance = undefined\nif ( isNotDefined( validatorInstance ) ) {\n validatorInstance = new Validator()\n}\n\nexport { validatorInstance as Validator }\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/typed-arrays/isArrayBuffer\n * @desc Export function to validate if a value is a array buffer\n * @example\n *\n * import { isArrayBuffer } from 'itee-validators'\n *\n * if( isArrayBuffer( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a array buffer\n *\n * @param data {*} The data to check against the array buffer type\n * @returns {boolean} true if data is a array buffer, false otherwise.\n */\nexport function isArrayBuffer( data ) {\n return ( data instanceof ArrayBuffer )\n}\n\n/**\n * Check if given data is not a array buffer\n *\n * @param data {*} The data to check against the array buffer type\n * @returns {boolean} true if data is not a array buffer, false otherwise.\n */\nexport function isNotArrayBuffer( data ) {\n return !isArrayBuffer( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/typed-arrays/isBigInt64Array\n * @desc Export function to validate if a value is a big int 64 array buffer\n * @example\n *\n * import { isBigInt64Array } from 'itee-validators'\n *\n * if( isBigInt64Array( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a big int 64 array\n *\n * @param data {*} The data to check against the big int 64 array type\n * @returns {boolean} true if data is a big int 64 array, false otherwise.\n */\nexport function isBigInt64Array( data ) {\n return ( data instanceof BigInt64Array )\n}\n\n/**\n * Check if given data is not a big int 64 array\n *\n * @param data {*} The data to check against the big int 64 array type\n * @returns {boolean} true if data is not a big int 64 array, false otherwise.\n */\nexport function isNotBigInt64Array( data ) {\n return !isBigInt64Array( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/typed-arrays/isBigUint64Array\n * @desc Export function to validate if a value is a big unsigned int 64 array buffer\n * @example\n *\n * import { isBigUint64Array } from 'itee-validators'\n *\n * if( isBigUint64Array( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a big unsigned int 64 array\n *\n * @param data {*} The data to check against the big unsigned int 64 array type\n * @returns {boolean} true if data is a big unsigned int 64 array, false otherwise.\n */\nexport function isBigUint64Array( data ) {\n return ( data instanceof BigUint64Array )\n}\n\n/**\n * Check if given data is not a big unsigned int 64 array\n *\n * @param data {*} The data to check against the big unsigned int 64 array type\n * @returns {boolean} true if data is not a big unsigned int 64 array, false otherwise.\n */\nexport function isNotBigUint64Array( data ) {\n return !isBigUint64Array( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/typed-arrays/isFloat32Array\n * @desc Export function to validate if a value is a float 32 array buffer\n * @example\n *\n * import { isFloat32Array } from 'itee-validators'\n *\n * if( isFloat32Array( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a float 32 array\n *\n * @param data {*} The data to check against the float 32 array type\n * @returns {boolean} true if data is a float 32 array , false otherwise.\n */\nexport function isFloat32Array( data ) {\n return ( data instanceof Float32Array )\n}\n\n/**\n * Check if given data is not a float 32 array\n *\n * @param data {*} The data to check against the float 32 array type\n * @returns {boolean} true if data is not a float 32 array , false otherwise.\n */\nexport function isNotFloat32Array( data ) {\n return !isFloat32Array( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/typed-arrays/isFloat64Array\n * @desc Export function to validate if a value is a float 64 array buffer\n * @example\n *\n * import { isFloat64Array } from 'itee-validators'\n *\n * if( isFloat64Array( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a float 64 array\n *\n * @param data {*} The data to check against the float 64 array type\n * @returns {boolean} true if data is a float 64 array , false otherwise.\n */\nexport function isFloat64Array( data ) {\n return ( data instanceof Float64Array )\n}\n\n/**\n * Check if given data is not a float 64 array\n *\n * @param data {*} The data to check against the float 64 array type\n * @returns {boolean} true if data is not a float 64 array , false otherwise.\n */\nexport function isNotFloat64Array( data ) {\n return !isFloat64Array( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/typed-arrays/isInt16Array\n * @desc Export function to validate if a value is a int 16 array buffer\n * @example\n *\n * import { isInt16Array } from 'itee-validators'\n *\n * if( isInt16Array( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a int 16 array\n *\n * @param data {*} The data to check against the int 16 array type\n * @returns {boolean} true if data is a int 16 array , false otherwise.\n */\nexport function isInt16Array( data ) {\n return ( data instanceof Int16Array )\n}\n\n/**\n * Check if given data is not a int 16 array\n *\n * @param data {*} The data to check against the int 16 array type\n * @returns {boolean} true if data is not a int 16 array , false otherwise.\n */\nexport function isNotInt16Array( data ) {\n return !isInt16Array( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/typed-arrays/isInt32Array\n * @desc Export function to validate if a value is a int 32 array buffer\n * @example\n *\n * import { isInt32Array } from 'itee-validators'\n *\n * if( isInt32Array( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a int 32 array\n *\n * @param data {*} The data to check against the int 32 array type\n * @returns {boolean} true if data is a int 32 array , false otherwise.\n */\nexport function isInt32Array( data ) {\n return ( data instanceof Int32Array )\n}\n\n/**\n * Check if given data is not a int 32 array\n *\n * @param data {*} The data to check against the int 32 array type\n * @returns {boolean} true if data is not a int 32 array , false otherwise.\n */\nexport function isNotInt32Array( data ) {\n return !isInt32Array( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/typed-arrays/isInt8Array\n * @desc Export function to validate if a value is a int 8 array buffer\n * @example\n *\n * import { isInt8Array } from 'itee-validators'\n *\n * if( isInt8Array( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a int 8 array\n *\n * @param data {*} The data to check against the int 8 array type\n * @returns {boolean} true if data is a int 8 array , false otherwise.\n */\nexport function isInt8Array( data ) {\n return ( data instanceof Int8Array )\n}\n\n/**\n * Check if given data is not a int 8 array\n *\n * @param data {*} The data to check against the int 8 array type\n * @returns {boolean} true if data is not a int 8 array , false otherwise.\n */\nexport function isNotInt8Array( data ) {\n return !isInt8Array( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/typed-arrays/isUint16Array\n * @desc Export function to validate if a value is a unsigned int 16 array buffer\n * @example\n *\n * import { isUint16Array } from 'itee-validators'\n *\n * if( isUint16Array( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a unsigned int 16 array\n *\n * @param data {*} The data to check against the unsigned int 16 array type\n * @returns {boolean} true if data is a unsigned int 16 array , false otherwise.\n */\nexport function isUint16Array( data ) {\n return ( data instanceof Uint16Array )\n}\n\n/**\n * Check if given data is not a unsigned int 16 array\n *\n * @param data {*} The data to check against the unsigned int 16 array type\n * @returns {boolean} true if data is not a unsigned int 16 array , false otherwise.\n */\nexport function isNotUint16Array( data ) {\n return !isUint16Array( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/typed-arrays/isUint32Array\n * @desc Export function to validate if a value is a unsigned int 32 array buffer\n * @example\n *\n * import { isUint32Array } from 'itee-validators'\n *\n * if( isUint32Array( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a unsigned int 32 array\n *\n * @param data {*} The data to check against the unsigned int 32 array type\n * @returns {boolean} true if data is a unsigned int 32 array , false otherwise.\n */\nexport function isUint32Array( data ) {\n return ( data instanceof Uint32Array )\n}\n\n/**\n * Check if given data is not a unsigned int 32 array\n *\n * @param data {*} The data to check against the unsigned int 32 array type\n * @returns {boolean} true if data is not a unsigned int 32 array , false otherwise.\n */\nexport function isNotUint32Array( data ) {\n return !isUint32Array( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/typed-arrays/isUint8Array\n * @desc Export function to validate if a value is a unsigned int 8 array buffer\n * @example\n *\n * import { isUint8Array } from 'itee-validators'\n *\n * if( isUint8Array( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a unsigned int 8 array\n *\n * @param data {*} The data to check against the unsigned int 8 array type\n * @returns {boolean} true if data is a unsigned int 8 array , false otherwise.\n */\nexport function isUint8Array( data ) {\n return ( data instanceof Uint8Array )\n}\n\n/**\n * Check if given data is not a unsigned int 8 array\n *\n * @param data {*} The data to check against the unsigned int 8 array type\n * @returns {boolean} true if data is not a unsigned int 8 array , false otherwise.\n */\nexport function isNotUint8Array( data ) {\n return !isUint8Array( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/cores/typed-arrays/isUint8ClampedArray\n * @desc Export function to validate if a value is a unsigned clamped int 8 array buffer\n * @example\n *\n * import { isUint8ClampedArray } from 'itee-validators'\n *\n * if( isUint8ClampedArray( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\n/**\n * Check if given data is a unsigned clamped int 8 array\n *\n * @param data {*} The data to check against the unsigned clamped int 8 array type\n * @returns {boolean} true if data is a unsigned clamped int 8 array , false otherwise.\n */\nexport function isUint8ClampedArray( data ) {\n return ( data instanceof Uint8ClampedArray )\n}\n\n/**\n * Check if given data is not a unsigned clamped int 8 array\n *\n * @param data {*} The data to check against the unsigned clamped int 8 array type\n * @returns {boolean} true if data is not a unsigned clamped int 8 array , false otherwise.\n */\nexport function isNotUint8ClampedArray( data ) {\n return !isUint8ClampedArray( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/physics/constants\n * @desc Export constants about temperatures\n *\n */\n\n/**\n * @const\n * @type {number}\n * @default 0.00000000045\n * @desc This value corresponding to the absolute zero kelvin value\n */\nexport const ABSOLUTE_ZERO_KELVIN = 0.00000000045\n\n/**\n * @const\n * @type {number}\n * @default -273.14999999955\n * @desc This value corresponding to the absolute zero celsius value\n */\nexport const ABSOLUTE_ZERO_CELSIUS = -273.14999999955\n\n/**\n * @const\n * @type {number}\n * @default -459.67\n * @desc This value corresponding to the absolute zero fahrenheit value\n */\nexport const ABSOLUTE_ZERO_FAHRENHEIT = -459.67\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/physics/temperatures\n * @desc Export function to validate if a value is a Celsius temperature\n * @example\n *\n * import { isCelsius } from 'itee-validators'\n *\n * if( isCelsius( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNumber } from '../../cores/numbers/isNumber.js'\nimport { ABSOLUTE_ZERO_CELSIUS } from './constants.js'\n\n/**\n *\n * @param data {*}\n * @return {boolean}\n */\nexport function isCelsius( data ) {\n return ( isNumber( data ) && data >= ABSOLUTE_ZERO_CELSIUS )\n}\n\n/**\n *\n * @param data {*}\n * @return {boolean}\n */\nexport function isNotCelsius( data ) {\n return !isCelsius( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/physics/temperatures\n * @desc Export function to validate if a value is a Fahrenheit temperature\n * @example\n *\n * import { isFahrenheit } from 'itee-validators'\n *\n * if( isFahrenheit( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNumber } from '../../cores/numbers/isNumber.js'\nimport { ABSOLUTE_ZERO_FAHRENHEIT } from './constants.js'\n\n/**\n *\n * @param data {*}\n * @return {boolean}\n */\nexport function isFahrenheit( data ) {\n return ( isNumber( data ) && data >= ABSOLUTE_ZERO_FAHRENHEIT )\n}\n\n/**\n *\n * @param data {*}\n * @return {boolean}\n */\nexport function isNotFahrenheit( data ) {\n return !isFahrenheit( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/physics/temperatures\n * @desc Export function to validate if a value is a kelvin temperature\n * @example\n *\n * import { isKelvin } from 'itee-validators'\n *\n * if( isKelvin( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport { isNumber } from '../../cores/numbers/isNumber.js'\nimport { ABSOLUTE_ZERO_KELVIN } from './constants.js'\n\n/**\n *\n * @param data {*}\n * @return {boolean}\n */\nexport function isKelvin( data ) {\n return ( isNumber( data ) && data >= ABSOLUTE_ZERO_KELVIN )\n}\n\n/**\n *\n * @param data {*}\n * @return {boolean}\n */\nexport function isNotKelvin( data ) {\n return !isKelvin( data )\n}\n","/**\n * @author [Tristan Valcke]{@link https://github.com/Itee}\n * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}\n *\n * @module sources/physics/temperatures\n * @desc Export function to validate if a value is a temperature\n * @example\n *\n * import { isTemperature } from 'itee-validators'\n *\n * if( isTemperature( value ) ) {\n * //...\n * } else {\n * //...\n * }\n *\n */\n\nimport {\n isCelsius,\n isNotCelsius\n} from './isCelsius.js'\nimport {\n isFahrenheit,\n isNotFahrenheit\n} from './isFahrenheit.js'\nimport {\n isKelvin,\n isNotKelvin\n} from './isKelvin.js'\n\n/**\n *\n * @param data {*}\n * @return {boolean}\n */\nexport function isTemperature( data ) {\n return ( isKelvin( data ) || isCelsius( data ) || isFahrenheit( data ) )\n}\n\n/**\n *\n * @param data {*}\n * @return {boolean}\n */\nexport function isNotTemperature( data ) {\n return ( isNotKelvin( data ) && isNotCelsius( data ) && isNotFahrenheit( data ) )\n}\n"],"names":[],"mappings":"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;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,OAAO,EAAE,IAAI,GAAG;AAChC,IAAI,SAAS,SAAS,EAAE,IAAI,EAAE,MAAM,IAAI,KAAK,KAAK,EAAE;AACpD;;ACtCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,aAAa,EAAE,IAAI,GAAG;AACtC,IAAI,SAAS,IAAI,KAAK,MAAM,CAAC,SAAS;AACtC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,aAAa,EAAE,IAAI,GAAG;AACtC,IAAI,SAAS,IAAI,KAAK,CAAC,MAAM,CAAC,SAAS;AACvC;;ACpCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,aAAa,EAAE,IAAI,GAAG;AACtC,IAAI,SAAS,IAAI,KAAK,MAAM,CAAC,SAAS;AACtC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,aAAa,EAAE,IAAI,GAAG;AACtC,IAAI,SAAS,IAAI,KAAK,CAAC,MAAM,CAAC,SAAS;AACvC;;ACpCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,gBAAgB,EAAE,IAAI,GAAG;AACzC,IAAI,SAAS,IAAI,KAAK,MAAM,CAAC,gBAAgB;AAC7C;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,gBAAgB,EAAE,IAAI,GAAG;AACzC,IAAI,SAAS,IAAI,KAAK,MAAM,CAAC,gBAAgB;AAC7C;;AAEA;;ACxCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAIA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,aAAa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;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,eAAe,EAAE,IAAI,GAAG;AACxC,IAAI,SAAS,IAAI,YAAY,aAAa;AAC1C;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,kBAAkB,EAAE,IAAI,GAAG;AAC3C,IAAI,OAAO,CAAC,eAAe,EAAE,IAAI;AACjC;;ACpCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,gBAAgB,EAAE,IAAI,GAAG;AACzC,IAAI,SAAS,IAAI,YAAY,cAAc;AAC3C;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,mBAAmB,EAAE,IAAI,GAAG;AAC5C,IAAI,OAAO,CAAC,gBAAgB,EAAE,IAAI;AAClC;;ACpCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,cAAc,EAAE,IAAI,GAAG;AACvC,IAAI,SAAS,IAAI,YAAY,YAAY;AACzC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,iBAAiB,EAAE,IAAI,GAAG;AAC1C,IAAI,OAAO,CAAC,cAAc,EAAE,IAAI;AAChC;;ACpCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,cAAc,EAAE,IAAI,GAAG;AACvC,IAAI,SAAS,IAAI,YAAY,YAAY;AACzC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,iBAAiB,EAAE,IAAI,GAAG;AAC1C,IAAI,OAAO,CAAC,cAAc,EAAE,IAAI;AAChC;;ACpCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,YAAY,EAAE,IAAI,GAAG;AACrC,IAAI,SAAS,IAAI,YAAY,UAAU;AACvC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,eAAe,EAAE,IAAI,GAAG;AACxC,IAAI,OAAO,CAAC,YAAY,EAAE,IAAI;AAC9B;;ACpCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,YAAY,EAAE,IAAI,GAAG;AACrC,IAAI,SAAS,IAAI,YAAY,UAAU;AACvC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,eAAe,EAAE,IAAI,GAAG;AACxC,IAAI,OAAO,CAAC,YAAY,EAAE,IAAI;AAC9B;;ACpCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,WAAW,EAAE,IAAI,GAAG;AACpC,IAAI,SAAS,IAAI,YAAY,SAAS;AACtC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,cAAc,EAAE,IAAI,GAAG;AACvC,IAAI,OAAO,CAAC,WAAW,EAAE,IAAI;AAC7B;;ACpCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,aAAa,EAAE,IAAI,GAAG;AACtC,IAAI,SAAS,IAAI,YAAY,WAAW;AACxC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,gBAAgB,EAAE,IAAI,GAAG;AACzC,IAAI,OAAO,CAAC,aAAa,EAAE,IAAI;AAC/B;;ACpCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,aAAa,EAAE,IAAI,GAAG;AACtC,IAAI,SAAS,IAAI,YAAY,WAAW;AACxC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,gBAAgB,EAAE,IAAI,GAAG;AACzC,IAAI,OAAO,CAAC,aAAa,EAAE,IAAI;AAC/B;;ACpCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,YAAY,EAAE,IAAI,GAAG;AACrC,IAAI,SAAS,IAAI,YAAY,UAAU;AACvC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,eAAe,EAAE,IAAI,GAAG;AACxC,IAAI,OAAO,CAAC,YAAY,EAAE,IAAI;AAC9B;;ACpCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,mBAAmB,EAAE,IAAI,GAAG;AAC5C,IAAI,SAAS,IAAI,YAAY,iBAAiB;AAC9C;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,sBAAsB,EAAE,IAAI,GAAG;AAC/C,IAAI,OAAO,CAAC,mBAAmB,EAAE,IAAI;AACrC;;ACpCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACY,MAAC,oBAAoB,GAAG;;AAEpC;AACA;AACA;AACA;AACA;AACA;AACY,MAAC,qBAAqB,GAAG;;AAErC;AACA;AACA;AACA;AACA;AACA;AACY,MAAC,wBAAwB,GAAG;;AC/BxC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAKA;AACA;AACA;AACA;AACA;AACO,SAAS,SAAS,EAAE,IAAI,GAAG;AAClC,IAAI,SAAS,QAAQ,EAAE,IAAI,EAAE,IAAI,IAAI,IAAI,qBAAqB;AAC9D;;AAEA;AACA;AACA;AACA;AACA;AACO,SAAS,YAAY,EAAE,IAAI,GAAG;AACrC,IAAI,OAAO,CAAC,SAAS,EAAE,IAAI;AAC3B;;ACrCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAKA;AACA;AACA;AACA;AACA;AACO,SAAS,YAAY,EAAE,IAAI,GAAG;AACrC,IAAI,SAAS,QAAQ,EAAE,IAAI,EAAE,IAAI,IAAI,IAAI,wBAAwB;AACjE;;AAEA;AACA;AACA;AACA;AACA;AACO,SAAS,eAAe,EAAE,IAAI,GAAG;AACxC,IAAI,OAAO,CAAC,YAAY,EAAE,IAAI;AAC9B;;ACrCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAKA;AACA;AACA;AACA;AACA;AACO,SAAS,QAAQ,EAAE,IAAI,GAAG;AACjC,IAAI,SAAS,QAAQ,EAAE,IAAI,EAAE,IAAI,IAAI,IAAI,oBAAoB;AAC7D;;AAEA;AACA;AACA;AACA;AACA;AACO,SAAS,WAAW,EAAE,IAAI,GAAG;AACpC,IAAI,OAAO,CAAC,QAAQ,EAAE,IAAI;AAC1B;;ACrCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAeA;AACA;AACA;AACA;AACA;AACO,SAAS,aAAa,EAAE,IAAI,GAAG;AACtC,IAAI,SAAS,QAAQ,EAAE,IAAI,EAAE,IAAI,SAAS,EAAE,IAAI,EAAE,IAAI,YAAY,EAAE,IAAI,EAAE;AAC1E;;AAEA;AACA;AACA;AACA;AACA;AACO,SAAS,gBAAgB,EAAE,IAAI,GAAG;AACzC,IAAI,SAAS,WAAW,EAAE,IAAI,EAAE,IAAI,YAAY,EAAE,IAAI,EAAE,IAAI,eAAe,EAAE,IAAI,EAAE;AACnF;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itee-validators",
3
- "version": "5.6.0",
3
+ "version": "6.1.0",
4
4
  "description": "A library of validation functions use in various Itee projects",
5
5
  "keywords": [
6
6
  "itee",
@@ -19,16 +19,17 @@
19
19
  "type": "git",
20
20
  "url": "https://github.com/Itee/itee-validators.git"
21
21
  },
22
- "main": "builds/itee-validators.cjs.js",
23
- "module": "builds/itee-validators.esm.js",
24
- "browser": "builds/itee-validators.iife.js",
22
+ "type": "module",
23
+ "main": "builds/validators.cjs",
24
+ "module": "builds/validators.mjs",
25
+ "browser": "builds/validators.js",
25
26
  "homepage": "https://github.com/Itee/itee-validators#readme",
26
27
  "man": "./docs/index.html",
27
28
  "bugs": {
28
29
  "url": "https://github.com/Itee/itee-validators/issues"
29
30
  },
30
31
  "engines": {
31
- "node": ">=18"
32
+ "node": ">=20"
32
33
  },
33
34
  "os": [
34
35
  "win32",
@@ -39,64 +40,38 @@
39
40
  "ia32"
40
41
  ],
41
42
  "scripts": {
42
- "default": "gulp",
43
+ "default": "gulp --tasks",
44
+ "refresh": "node ./node_modules/@itee/tasks/scripts/refresh.mjs",
43
45
  "help": "gulp help",
44
46
  "patch": "gulp patch",
45
47
  "clean": "gulp clean",
46
48
  "lint": "gulp lint",
47
49
  "doc": "gulp doc",
48
- "check-bundling": "gulp check-bundling",
49
- "build-test": "gulp build-tests",
50
- "bench": "gulp run-benchmarks",
51
- "unit": "gulp run-unit-tests",
52
- "test": "gulp test",
53
50
  "build": "gulp build",
51
+ "tests:run": "gulp run-tests",
52
+ "tests:bundling": "gulp check-bundling",
53
+ "tests:bundling:build-import": "gulp check-bundling-from-esm-build-import",
54
+ "tests:bundling:files-import": "gulp check-bundling-from-esm-files-import",
55
+ "tests:bundling:files-direct": "gulp check-bundling-from-esm-files-direct",
56
+ "tests:benches:compute": "gulp compute-benchmarks",
57
+ "tests:benches:run": "gulp run-benchmarks",
58
+ "tests:benches:run:back": "gulp run-benchmarks-for-backend",
59
+ "tests:benches:run:front": "gulp run-benchmarks-for-frontend",
60
+ "tests:units:compute": "gulp compute-unit-tests",
61
+ "tests:units:run": "gulp run-unit-tests",
62
+ "tests:units:run:back": "gulp run-unit-tests-for-backend",
63
+ "tests:units:run:front": "gulp run-unit-tests-for-frontend",
54
64
  "release": "gulp release",
55
- "semantic-release": "semantic-release --dry-run --no-ci",
56
- "postversion": "gulp build"
65
+ "semantic-release": "semantic-release --dry-run --no-ci"
57
66
  },
58
67
  "devDependencies": {
59
- "@rollup/plugin-commonjs": "^23.0.4",
60
- "@rollup/plugin-node-resolve": "^15.0.1",
61
- "@semantic-release/changelog": "^6.0.2",
68
+ "@itee/tasks": "^1.4.0",
69
+ "@semantic-release/changelog": "^6.0.3",
62
70
  "@semantic-release/git": "^10.0.1",
63
- "@semantic-release/github": "^8.0.7",
64
- "@semantic-release/npm": "^9.0.1",
65
- "ansi-colors": "^4.1.3",
66
- "benchmark": "^2.1.4",
67
- "chai": "^4.3.7",
71
+ "@semantic-release/github": "^11.0.6",
72
+ "@semantic-release/npm": "^12.0.2",
68
73
  "cz-emoji": "^1.3.2-canary.2",
69
- "del": "^7.0.0",
70
- "eslint-plugin-mocha": "^10.1.0",
71
- "fancy-log": "^2.0.0",
72
- "figlet": "^1.9.3",
73
- "glob": "^8.0.3",
74
- "gulp": "^4.0.2",
75
- "gulp-eslint": "^6.0.0",
76
- "gulp-jsdoc3": "^3.0.0",
77
- "gulp-replace": "^1.1.3",
78
- "itee-utils": "^5.4.2",
79
- "karma": "^4.4.1",
80
- "karma-benchmark": "^1.0.4",
81
- "karma-benchmarkjs-reporter": "^1.0.0",
82
- "karma-chai": "^0.1.0",
83
- "karma-chrome-launcher": "^3.1.1",
84
- "karma-edge-launcher": "^0.4.2",
85
- "karma-firefox-launcher": "^2.1.2",
86
- "karma-htmlfile-reporter": "^0.3.8",
87
- "karma-mocha": "^2.0.1",
88
- "karma-mocha-reporter": "^2.2.5",
89
- "leveldown": "^6.1.1",
90
- "minimist": "^1.2.7",
91
- "mocha": "^10.8.2",
92
- "mochawesome": "^7.1.3",
93
- "prettier": "^2.8.1",
94
- "rollup": "^2.67.2",
95
- "rollup-plugin-cleanup": "^3.2.1",
96
- "rollup-plugin-prettier": "^3.0.0",
97
- "rollup-plugin-re": "^1.0.7",
98
- "rollup-plugin-terser": "^7.0.2",
99
- "semantic-release": "^19.0.5",
74
+ "semantic-release": "^24.2.9",
100
75
  "semantic-release-gitmoji": "^1.6.8"
101
76
  }
102
77
  }
@@ -8,13 +8,13 @@
8
8
  *
9
9
  */
10
10
 
11
- export * from './arrays/_arrays'
12
- export * from './booleans/_booleans'
13
- export * from './cores'
14
- export * from './functions/_functions'
15
- export * from './numbers/_numbers'
16
- export * from './objects/_objects'
17
- export * from './strings/_strings'
18
- export * from './symbols/_symbols'
19
- export * from './typed-arrays/_typedArrays'
20
- export * from './voids/_voids'
11
+ export * from './arrays/_arrays.js'
12
+ export * from './booleans/_booleans.js'
13
+ export * from './cores.js'
14
+ export * from './functions/_functions.js'
15
+ export * from './numbers/_numbers.js'
16
+ export * from './objects/_objects.js'
17
+ export * from './strings/_strings.js'
18
+ export * from './symbols/_symbols.js'
19
+ export * from './typed-arrays/_typedArrays.js'
20
+ export * from './voids/_voids.js'
@@ -6,15 +6,15 @@
6
6
  * @description Export the validation methods about Arrays
7
7
  */
8
8
 
9
- export * from './isArray'
10
- export * from './isArrayOfArray'
11
- export * from './isArrayOfBoolean'
12
- export * from './isArrayOfFunction'
13
- export * from './isArrayOfMultiElement'
14
- export * from './isArrayOfNull'
15
- export * from './isArrayOfNumber'
16
- export * from './isArrayOfObject'
17
- export * from './isArrayOfSingleElement'
18
- export * from './isArrayOfString'
19
- export * from './isArrayOfUndefined'
20
- export * from './isEmptyArray'
9
+ export * from './isArray.js'
10
+ export * from './isArrayOfArray.js'
11
+ export * from './isArrayOfBoolean.js'
12
+ export * from './isArrayOfFunction.js'
13
+ export * from './isArrayOfMultiElement.js'
14
+ export * from './isArrayOfNull.js'
15
+ export * from './isArrayOfNumber.js'
16
+ export * from './isArrayOfObject.js'
17
+ export * from './isArrayOfSingleElement.js'
18
+ export * from './isArrayOfString.js'
19
+ export * from './isArrayOfUndefined.js'
20
+ export * from './isEmptyArray.js'