itee-validators 5.6.0 → 6.0.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 (131) hide show
  1. package/.github/workflows/node.js.yml +2 -2
  2. package/.releaserc.mjs +94 -0
  3. package/.tasks/.builds/build-benchmarks.task.mjs +16 -0
  4. package/.tasks/.builds/build-tests.task.mjs +18 -0
  5. package/.tasks/.builds/build-unit-tests.task.mjs +16 -0
  6. package/.tasks/.builds/build.task.mjs +46 -0
  7. package/.tasks/.cleans/clean.task.mjs +23 -0
  8. package/.tasks/.docs/doc.task.mjs +35 -0
  9. package/.tasks/.helps/help.task.mjs +151 -0
  10. package/.tasks/.lints/lint.task.mjs +37 -0
  11. package/.tasks/.patches/patch.task.mjs +13 -0
  12. package/.tasks/.releases/release.task.mjs +26 -0
  13. package/.tasks/.tests/benchmarks/build-benchmarks-backend.task.mjs +42 -0
  14. package/.tasks/{tests/benchmarks/compute-benchmarks.mjs → .tests/benchmarks/compute-benchmarks.task.mjs} +46 -51
  15. package/.tasks/.tests/benchmarks/run-benchmarks-for-backend.task.mjs +39 -0
  16. package/.tasks/.tests/benchmarks/run-benchmarks-for-frontend.task.mjs +41 -0
  17. package/.tasks/.tests/benchmarks/run-benchmarks.task.mjs +18 -0
  18. package/.tasks/{tests/bundling/check-bundling-from-esm-build-import.mjs → .tests/bundling/check-bundling-from-esm-build-import.task.mjs} +31 -75
  19. package/.tasks/.tests/bundling/check-bundling-from-esm-files-direct.task.mjs +77 -0
  20. package/.tasks/.tests/bundling/check-bundling-from-esm-files-import.task.mjs +95 -0
  21. package/.tasks/.tests/bundling/check-bundling.task.mjs +20 -0
  22. package/.tasks/.tests/run-tests.task.mjs +18 -0
  23. package/.tasks/.tests/unit-tests/build-unit-tests-backend.task.mjs +42 -0
  24. package/.tasks/{tests/unit-tests/compute-unit-tests.mjs → .tests/unit-tests/compute-unit-tests.task.mjs} +152 -193
  25. package/.tasks/.tests/unit-tests/run-unit-tests-for-backend.task.mjs +44 -0
  26. package/.tasks/.tests/unit-tests/run-unit-tests-for-frontend.task.mjs +41 -0
  27. package/.tasks/.tests/unit-tests/run-unit-tests.task.mjs +18 -0
  28. package/.tasks/_refresh-gulpfile.task.mjs +65 -0
  29. package/.tasks/_utils.mjs +159 -33
  30. package/.tasks/configs/benchmarks.conf.mjs +57 -0
  31. package/.tasks/configs/build-benchmarks-backend.conf.mjs +51 -0
  32. package/.tasks/configs/build-unit-tests-backend.conf.mjs +46 -0
  33. package/.tasks/configs/build.conf.mjs +354 -0
  34. package/.tasks/configs/check-bundling.conf.mjs +26 -0
  35. package/.tasks/configs/clean.conf.mjs +9 -0
  36. package/.tasks/configs/compute-benchmarks.conf.mjs +28 -0
  37. package/.tasks/configs/compute-unit-tests.conf.mjs +27 -0
  38. package/.tasks/configs/doc.conf.json +50 -0
  39. package/.tasks/configs/eslint.conf.mjs +121 -0
  40. package/.tasks/configs/units.conf.mjs +27 -0
  41. package/.tasks/itee-benchmarks-framework.js +186 -0
  42. package/.tasks/itee-reporter.mjs +217 -0
  43. package/CHANGELOG.md +12 -0
  44. package/builds/itee-validators.cjs.js +53 -15
  45. package/builds/itee-validators.cjs.js.map +1 -1
  46. package/builds/itee-validators.cjs.min.js +36 -35
  47. package/builds/itee-validators.esm.js +25 -2
  48. package/builds/itee-validators.esm.js.map +1 -1
  49. package/builds/itee-validators.esm.min.js +3 -3
  50. package/builds/itee-validators.iife.js +25 -4
  51. package/builds/itee-validators.iife.js.map +1 -1
  52. package/builds/itee-validators.iife.min.js +10 -10
  53. package/package.json +49 -41
  54. package/sources/cores/_cores.js +10 -10
  55. package/sources/cores/arrays/_arrays.js +12 -12
  56. package/sources/cores/arrays/isArrayOfArray.js +2 -2
  57. package/sources/cores/arrays/isArrayOfBoolean.js +3 -3
  58. package/sources/cores/arrays/isArrayOfFunction.js +3 -3
  59. package/sources/cores/arrays/isArrayOfMultiElement.js +1 -1
  60. package/sources/cores/arrays/isArrayOfNull.js +3 -3
  61. package/sources/cores/arrays/isArrayOfNumber.js +3 -3
  62. package/sources/cores/arrays/isArrayOfObject.js +3 -3
  63. package/sources/cores/arrays/isArrayOfSingleElement.js +1 -1
  64. package/sources/cores/arrays/isArrayOfString.js +3 -3
  65. package/sources/cores/arrays/isArrayOfUndefined.js +3 -3
  66. package/sources/cores/arrays/isEmptyArray.js +1 -1
  67. package/sources/cores/booleans/_booleans.js +2 -2
  68. package/sources/cores/booleans/isTrue.js +1 -1
  69. package/sources/cores/cores.js +8 -8
  70. package/sources/cores/functions/_functions.js +1 -1
  71. package/sources/cores/numbers/_numbers.js +6 -6
  72. package/sources/cores/numbers/isNumber.js +3 -3
  73. package/sources/cores/objects/_objects.js +2 -2
  74. package/sources/cores/objects/isEmptyObject.js +1 -1
  75. package/sources/cores/objects/isObject.js +1 -1
  76. package/sources/cores/strings/_strings.js +3 -3
  77. package/sources/cores/strings/isBlankString.js +2 -2
  78. package/sources/cores/strings/isEmptyString.js +1 -1
  79. package/sources/cores/symbols/_symbols.js +1 -1
  80. package/sources/cores/tests/isTestUnitGenerator.js +5 -6
  81. package/sources/cores/typed-arrays/_typedArrays.js +12 -12
  82. package/sources/cores/voids/_voids.js +4 -4
  83. package/sources/cores/voids/isEmpty.js +4 -4
  84. package/sources/file-system/_file-system.js +9 -9
  85. package/sources/file-system/block-devices/_blockDevices.js +3 -3
  86. package/sources/file-system/block-devices/isBlockDevicePath.js +3 -3
  87. package/sources/file-system/block-devices/isValidBlockDevicePath.js +2 -2
  88. package/sources/file-system/character-devices/_characterDevices.js +3 -3
  89. package/sources/file-system/character-devices/isCharacterDevicePath.js +3 -3
  90. package/sources/file-system/character-devices/isValidCharacterDevicePath.js +2 -2
  91. package/sources/file-system/directories/_directories.js +4 -4
  92. package/sources/file-system/directories/isDirectoryPath.js +3 -3
  93. package/sources/file-system/directories/isEmptyDirectory.js +2 -2
  94. package/sources/file-system/directories/isValidDirectoryPath.js +2 -2
  95. package/sources/file-system/fifo-pipes/_fifoPipes.js +3 -3
  96. package/sources/file-system/fifo-pipes/isFIFOPath.js +3 -3
  97. package/sources/file-system/fifo-pipes/isValidFIFOPath.js +2 -2
  98. package/sources/file-system/files/_files.js +4 -4
  99. package/sources/file-system/files/isEmptyFile.js +3 -3
  100. package/sources/file-system/files/isFilePath.js +3 -3
  101. package/sources/file-system/files/isValidFilePath.js +2 -2
  102. package/sources/file-system/paths/_paths.js +2 -2
  103. package/sources/file-system/paths/isValidPath.js +1 -1
  104. package/sources/file-system/sockets/_sockets.js +3 -3
  105. package/sources/file-system/sockets/isSocketPath.js +3 -3
  106. package/sources/file-system/sockets/isValidSocketPath.js +2 -2
  107. package/sources/file-system/symbolic-links/_symbolicLinks.js +3 -3
  108. package/sources/file-system/symbolic-links/isSymbolicLinkPath.js +3 -3
  109. package/sources/file-system/symbolic-links/isValidSymbolicLinkPath.js +2 -2
  110. package/sources/itee-validators.js +4 -4
  111. package/sources/maths/_maths.js +1 -1
  112. package/sources/physics/_physics.js +2 -2
  113. package/sources/physics/temperatures/_temperatures.js +5 -5
  114. package/sources/physics/temperatures/isCelsius.js +2 -2
  115. package/sources/physics/temperatures/isFahrenheit.js +2 -2
  116. package/sources/physics/temperatures/isKelvin.js +2 -2
  117. package/sources/physics/temperatures/isTemperature.js +3 -3
  118. package/.tasks/builds/build.mjs +0 -65
  119. package/.tasks/cleans/clean.mjs +0 -20
  120. package/.tasks/docs/doc.mjs +0 -37
  121. package/.tasks/helps/help.mjs +0 -195
  122. package/.tasks/lints/lint.mjs +0 -33
  123. package/.tasks/patches/patch.mjs +0 -9
  124. package/.tasks/tests/benchmarks/bundle-benchmarks.mjs +0 -33
  125. package/.tasks/tests/benchmarks/run-benchmarks-for-backend.mjs +0 -24
  126. package/.tasks/tests/benchmarks/run-benchmarks-for-frontend.mjs +0 -38
  127. package/.tasks/tests/bundling/check-bundling-from-esm-files-direct.mjs +0 -129
  128. package/.tasks/tests/bundling/check-bundling-from-esm-files-import.mjs +0 -149
  129. package/.tasks/tests/unit-tests/bundle-unit-tests.mjs +0 -33
  130. package/.tasks/tests/unit-tests/run-unit-tests-for-backend.mjs +0 -25
  131. package/.tasks/tests/unit-tests/run-unit-tests-for-frontend.mjs +0 -41
@@ -1,4 +1,4 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var t=require("fs");
1
+ "use strict";var t=require("node:fs");
2
2
  /**
3
3
  * @author [Tristan Valcke]{@link https://github.com/Itee}
4
4
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -600,7 +600,7 @@ function L(t){return t instanceof Int16Array}
600
600
  * }
601
601
  *
602
602
  */
603
- function _(t){return t instanceof Int32Array}
603
+ function D(t){return t instanceof Int32Array}
604
604
  /**
605
605
  * @author [Tristan Valcke]{@link https://github.com/Itee}
606
606
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -618,7 +618,7 @@ function _(t){return t instanceof Int32Array}
618
618
  * }
619
619
  *
620
620
  */
621
- function D(t){return t instanceof Int8Array}
621
+ function _(t){return t instanceof Int8Array}
622
622
  /**
623
623
  * @author [Tristan Valcke]{@link https://github.com/Itee}
624
624
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -691,6 +691,15 @@ function j(t){return t instanceof Uint8Array}
691
691
  *
692
692
  */
693
693
  function C(t){return t instanceof Uint8ClampedArray}exports.Validator=void 0,c(exports.Validator)&&(exports.Validator=new U);
694
+ /**
695
+ * @author [Tristan Valcke]{@link https://github.com/Itee}
696
+ * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
697
+ *
698
+ * @module sources/physics/constants
699
+ * @desc Export constants about temperatures
700
+ *
701
+ */
702
+ const $=4.5e-10,Z=-273.14999999955,G=-459.67;
694
703
  /**
695
704
  * @author [Tristan Valcke]{@link https://github.com/Itee}
696
705
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -708,7 +717,7 @@ function C(t){return t instanceof Uint8ClampedArray}exports.Validator=void 0,c(e
708
717
  * }
709
718
  *
710
719
  */
711
- function $(t){return N(t)&&t>=-273.14999999955}function Z(t){return!$(t)}
720
+ function Y(t){return N(t)&&t>=Z}function K(t){return!Y(t)}
712
721
  /**
713
722
  * @author [Tristan Valcke]{@link https://github.com/Itee}
714
723
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -725,7 +734,7 @@ function $(t){return N(t)&&t>=-273.14999999955}function Z(t){return!$(t)}
725
734
  * //...
726
735
  * }
727
736
  *
728
- */function G(t){return N(t)&&t>=-459.67}function Y(t){return!G(t)}
737
+ */function X(t){return N(t)&&t>=G}function q(t){return!X(t)}
729
738
  /**
730
739
  * @author [Tristan Valcke]{@link https://github.com/Itee}
731
740
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -742,7 +751,7 @@ function $(t){return N(t)&&t>=-273.14999999955}function Z(t){return!$(t)}
742
751
  * //...
743
752
  * }
744
753
  *
745
- */function K(t){return N(t)&&t>=4.5e-10}function X(t){return!K(t)}
754
+ */function H(t){return N(t)&&t>=$}function z(t){return!H(t)}
746
755
  /**
747
756
  * @author [Tristan Valcke]{@link https://github.com/Itee}
748
757
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -780,7 +789,7 @@ function $(t){return N(t)&&t>=-273.14999999955}function Z(t){return!$(t)}
780
789
  * }
781
790
  *
782
791
  */
783
- function q(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isBlockDevice()}
792
+ function J(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isBlockDevice()}
784
793
  /**
785
794
  * @author [Tristan Valcke]{@link https://github.com/Itee}
786
795
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -801,7 +810,7 @@ function q(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;cons
801
810
  * }
802
811
  *
803
812
  */
804
- function H(r){return t.existsSync(r)}
813
+ function Q(r){return t.existsSync(r)}
805
814
  /**
806
815
  * @author [Tristan Valcke]{@link https://github.com/Itee}
807
816
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -819,7 +828,7 @@ function H(r){return t.existsSync(r)}
819
828
  * }
820
829
  *
821
830
  */
822
- function z(t){return H(t)&&q(t)}
831
+ function W(t){return Q(t)&&J(t)}
823
832
  /**
824
833
  * @author [Tristan Valcke]{@link https://github.com/Itee}
825
834
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -840,7 +849,7 @@ function z(t){return H(t)&&q(t)}
840
849
  * }
841
850
  *
842
851
  */
843
- function J(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isCharacterDevice()}
852
+ function tt(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isCharacterDevice()}
844
853
  /**
845
854
  * @author [Tristan Valcke]{@link https://github.com/Itee}
846
855
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -858,7 +867,7 @@ function J(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;cons
858
867
  * }
859
868
  *
860
869
  */
861
- function Q(t){return H(t)&&J(t)}
870
+ function rt(t){return Q(t)&&tt(t)}
862
871
  /**
863
872
  * @author [Tristan Valcke]{@link https://github.com/Itee}
864
873
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -879,7 +888,7 @@ function Q(t){return H(t)&&J(t)}
879
888
  * }
880
889
  *
881
890
  */
882
- function W(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isDirectory()}
891
+ function nt(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isDirectory()}
883
892
  /**
884
893
  * @author [Tristan Valcke]{@link https://github.com/Itee}
885
894
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -900,7 +909,7 @@ function W(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;cons
900
909
  * }
901
910
  *
902
911
  */
903
- function tt(r){return W(r)&&0===t.readdirSync(r).length}
912
+ function et(r){return nt(r)&&0===t.readdirSync(r).length}
904
913
  /**
905
914
  * @author [Tristan Valcke]{@link https://github.com/Itee}
906
915
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -918,7 +927,7 @@ function tt(r){return W(r)&&0===t.readdirSync(r).length}
918
927
  * }
919
928
  *
920
929
  */
921
- function rt(t){return H(t)&&W(t)}
930
+ function it(t){return Q(t)&&nt(t)}
922
931
  /**
923
932
  * @author [Tristan Valcke]{@link https://github.com/Itee}
924
933
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -939,7 +948,7 @@ function rt(t){return H(t)&&W(t)}
939
948
  * }
940
949
  *
941
950
  */
942
- function nt(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isFIFO()}
951
+ function ot(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isFIFO()}
943
952
  /**
944
953
  * @author [Tristan Valcke]{@link https://github.com/Itee}
945
954
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -960,7 +969,7 @@ function nt(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;con
960
969
  * }
961
970
  *
962
971
  */
963
- function et(t){return H(t)&&nt(t)}
972
+ function ut(t){return Q(t)&&ot(t)}
964
973
  /**
965
974
  * @author [Tristan Valcke]{@link https://github.com/Itee}
966
975
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -981,7 +990,7 @@ function et(t){return H(t)&&nt(t)}
981
990
  * }
982
991
  *
983
992
  */
984
- function it(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isFile()}
993
+ function st(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isFile()}
985
994
  /**
986
995
  * @author [Tristan Valcke]{@link https://github.com/Itee}
987
996
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -1002,7 +1011,7 @@ function it(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;con
1002
1011
  * }
1003
1012
  *
1004
1013
  */
1005
- function ot(r,n=0){return(!m(r)||r instanceof Buffer||r instanceof URL)&&(it(r)&&t.statSync(r).size<=n)}
1014
+ function ft(r,n=0){return(!m(r)||r instanceof Buffer||r instanceof URL)&&(st(r)&&t.statSync(r).size<=n)}
1006
1015
  /**
1007
1016
  * @author [Tristan Valcke]{@link https://github.com/Itee}
1008
1017
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -1020,7 +1029,7 @@ function ot(r,n=0){return(!m(r)||r instanceof Buffer||r instanceof URL)&&(it(r)&
1020
1029
  * }
1021
1030
  *
1022
1031
  */
1023
- function ut(t){return H(t)&&it(t)}
1032
+ function at(t){return Q(t)&&st(t)}
1024
1033
  /**
1025
1034
  * @author [Tristan Valcke]{@link https://github.com/Itee}
1026
1035
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -1041,7 +1050,7 @@ function ut(t){return H(t)&&it(t)}
1041
1050
  * }
1042
1051
  *
1043
1052
  */
1044
- function st(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isSocket()}
1053
+ function ct(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isSocket()}
1045
1054
  /**
1046
1055
  * @author [Tristan Valcke]{@link https://github.com/Itee}
1047
1056
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -1059,7 +1068,7 @@ function st(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;con
1059
1068
  * }
1060
1069
  *
1061
1070
  */
1062
- function ft(t){return H(t)&&st(t)}
1071
+ function pt(t){return Q(t)&&ct(t)}
1063
1072
  /**
1064
1073
  * @author [Tristan Valcke]{@link https://github.com/Itee}
1065
1074
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -1080,7 +1089,7 @@ function ft(t){return H(t)&&st(t)}
1080
1089
  * }
1081
1090
  *
1082
1091
  */
1083
- function at(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isSymbolicLink()}
1092
+ function lt(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;const n=t.statSync(r,{throwIfNoEntry:!1});return a(n)&&n.isSymbolicLink()}
1084
1093
  /**
1085
1094
  * @author [Tristan Valcke]{@link https://github.com/Itee}
1086
1095
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -1098,7 +1107,7 @@ function at(r){if(m(r)&&!(r instanceof Buffer)&&!(r instanceof URL))return!1;con
1098
1107
  * }
1099
1108
  *
1100
1109
  */
1101
- function ct(t){return H(t)&&at(t)}exports.ABSOLUTE_ZERO_CELSIUS=-273.14999999955,exports.ABSOLUTE_ZERO_FAHRENHEIT=-459.67,exports.ABSOLUTE_ZERO_KELVIN=4.5e-10,exports.isArray=r,exports.isArrayBuffer=B,exports.isArrayOfArray=
1110
+ function xt(t){return Q(t)&&lt(t)}exports.ABSOLUTE_ZERO_CELSIUS=Z,exports.ABSOLUTE_ZERO_FAHRENHEIT=G,exports.ABSOLUTE_ZERO_KELVIN=$,exports.isArray=r,exports.isArrayBuffer=B,exports.isArrayOfArray=
1102
1111
  /**
1103
1112
  * @author [Tristan Valcke]{@link https://github.com/Itee}
1104
1113
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -1187,7 +1196,7 @@ function(t){if(n(t))return!1;if(e(t))return!1;for(let r=0,n=t.length;r<n;r++)if(
1187
1196
  * }
1188
1197
  *
1189
1198
  */
1190
- function(t){return!n(t)&&1===t.length},exports.isArrayOfString=function(t){if(n(t))return!1;if(e(t))return!1;for(let r=0,n=t.length;r<n;r++)if(m(t[r]))return!1;return!0},exports.isArrayOfUndefined=function(t){if(n(t))return!1;if(e(t))return!1;for(let r=0,n=t.length;r<n;r++)if(v(t[r]))return!1;return!0},exports.isBigInt64Array=V,exports.isBigUint64Array=w,exports.isBlankString=F,exports.isBlockDevicePath=q,exports.isBoolean=i,exports.isCelsius=$,exports.isCharacterDevicePath=J,exports.isDefined=a,exports.isDirectoryPath=W,exports.isEmpty=P,exports.isEmptyArray=e,exports.isEmptyDirectory=tt,exports.isEmptyFile=ot,exports.isEmptyObject=b,exports.isEmptyString=S,exports.isFIFOPath=nt,exports.isFahrenheit=G,exports.isFalse=function(t){return i(t)&&!1===t}
1199
+ function(t){return!n(t)&&1===t.length},exports.isArrayOfString=function(t){if(n(t))return!1;if(e(t))return!1;for(let r=0,n=t.length;r<n;r++)if(m(t[r]))return!1;return!0},exports.isArrayOfUndefined=function(t){if(n(t))return!1;if(e(t))return!1;for(let r=0,n=t.length;r<n;r++)if(v(t[r]))return!1;return!0},exports.isBigInt64Array=V,exports.isBigUint64Array=w,exports.isBlankString=F,exports.isBlockDevicePath=J,exports.isBoolean=i,exports.isCelsius=Y,exports.isCharacterDevicePath=tt,exports.isDefined=a,exports.isDirectoryPath=nt,exports.isEmpty=P,exports.isEmptyArray=e,exports.isEmptyDirectory=et,exports.isEmptyFile=ft,exports.isEmptyObject=b,exports.isEmptyString=S,exports.isFIFOPath=ot,exports.isFahrenheit=X,exports.isFalse=function(t){return i(t)&&!1===t}
1191
1200
  /**
1192
1201
  * @author [Tristan Valcke]{@link https://github.com/Itee}
1193
1202
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -1204,7 +1213,7 @@ function(t){return!n(t)&&1===t.length},exports.isArrayOfString=function(t){if(n(
1204
1213
  * //...
1205
1214
  * }
1206
1215
  *
1207
- */,exports.isFilePath=it,exports.isFinite=function(t){return Number.isFinite(t)}
1216
+ */,exports.isFilePath=st,exports.isFinite=function(t){return Number.isFinite(t)}
1208
1217
  /**
1209
1218
  * @author [Tristan Valcke]{@link https://github.com/Itee}
1210
1219
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -1221,7 +1230,7 @@ function(t){return!n(t)&&1===t.length},exports.isArrayOfString=function(t){if(n(
1221
1230
  * //...
1222
1231
  * }
1223
1232
  *
1224
- */,exports.isFloat=d,exports.isFloat32Array=T,exports.isFloat64Array=k,exports.isFunction=u,exports.isInfinite=x,exports.isInfiniteNegative=p,exports.isInfinitePositive=l,exports.isInt16Array=L,exports.isInt32Array=_,exports.isInt8Array=D,exports.isInteger=A,exports.isInvalidBlockDevicePath=function(t){return!z(t)},exports.isInvalidCharacterDevicePath=function(t){return!Q(t)},exports.isInvalidDirectoryPath=function(t){return!rt(t)},exports.isInvalidFIFOPath=function(t){return!et(t)},exports.isInvalidFilePath=function(t){return!ut(t)},exports.isInvalidPath=function(t){return!H(t)},exports.isInvalidSocketPath=function(t){return!ft(t)},exports.isInvalidSymbolicLinkPath=function(t){return!ct(t)},exports.isKelvin=K,exports.isMaxNegative=function(t){return t===-Number.MAX_VALUE}
1233
+ */,exports.isFloat=d,exports.isFloat32Array=T,exports.isFloat64Array=k,exports.isFunction=u,exports.isInfinite=x,exports.isInfiniteNegative=p,exports.isInfinitePositive=l,exports.isInt16Array=L,exports.isInt32Array=D,exports.isInt8Array=_,exports.isInteger=A,exports.isInvalidBlockDevicePath=function(t){return!W(t)},exports.isInvalidCharacterDevicePath=function(t){return!rt(t)},exports.isInvalidDirectoryPath=function(t){return!it(t)},exports.isInvalidFIFOPath=function(t){return!ut(t)},exports.isInvalidFilePath=function(t){return!at(t)},exports.isInvalidPath=function(t){return!Q(t)},exports.isInvalidSocketPath=function(t){return!pt(t)},exports.isInvalidSymbolicLinkPath=function(t){return!xt(t)},exports.isKelvin=H,exports.isMaxNegative=function(t){return t===-Number.MAX_VALUE}
1225
1234
  /**
1226
1235
  * @author [Tristan Valcke]{@link https://github.com/Itee}
1227
1236
  * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
@@ -1290,12 +1299,4 @@ function(t){return t===Number.MAX_SAFE_INTEGER},exports.isMinNegative=function(t
1290
1299
  * //...
1291
1300
  * }
1292
1301
  *
1293
- */,exports.isNotBigInt64Array=function(t){return!V(t)},exports.isNotBigUint64Array=function(t){return!w(t)},exports.isNotBlankString=function(t){return!F(t)},exports.isNotBlockDevicePath=function(t){return!q(t)},exports.isNotBoolean=o,exports.isNotCelsius=Z,exports.isNotCharacterDevicePath=function(t){return!J(t)},exports.isNotDefined=c,exports.isNotDirectoryPath=function(t){return!W(t)},exports.isNotEmpty=function(t){return!P(t)},exports.isNotEmptyArray=function(t){return!!n(t)||t.length>0},exports.isNotEmptyDirectory=function(t){return!tt(t)},exports.isNotEmptyFile=function(t,r=0){return!ot(t,r)},exports.isNotEmptyObject=function(t){return!b(t)},exports.isNotEmptyString=function(t){return!S(t)},exports.isNotFIFOPath=function(t){return!nt(t)},exports.isNotFahrenheit=Y,exports.isNotFilePath=function(t){return!it(t)},exports.isNotFloat32Array=function(t){return!T(t)},exports.isNotFloat64Array=function(t){return!k(t)},exports.isNotFunction=s,exports.isNotInt16Array=function(t){return!L(t)},exports.isNotInt32Array=function(t){return!_(t)},exports.isNotInt8Array=function(t){return!D(t)},exports.isNotKelvin=X,exports.isNotNull=f,exports.isNotNumber=h,exports.isNotObject=E,exports.isNotSocketPath=function(t){return!st(t)},exports.isNotString=m,exports.isNotSymbol=function(t){return"symbol"!=typeof t},exports.isNotSymbolicLinkPath=function(t){return!at(t)},exports.isNotTemperature=function(t){return X(t)&&Z(t)&&Y(t)},exports.isNotUint16Array=function(t){return!M(t)},exports.isNotUint32Array=function(t){return!R(t)},exports.isNotUint8Array=function(t){return!j(t)},exports.isNotUint8ClampedArray=function(t){return!C(t)}
1294
- /**
1295
- * @author [Tristan Valcke]{@link https://github.com/Itee}
1296
- * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
1297
- *
1298
- * @module sources/physics/constants
1299
- * @desc Export constants about temperatures
1300
- *
1301
- */,exports.isNotUndefined=v,exports.isNull=function(t){return null===t},exports.isNumber=N,exports.isNumberNegative=function(t){return N(t)&&t<0},exports.isNumberPositive=function(t){return!h(t)&&(t>0||y(t)||l(t))},exports.isObject=I,exports.isSocketPath=st,exports.isString=g,exports.isSymbol=O,exports.isSymbolicLinkPath=at,exports.isTemperature=function(t){return K(t)||$(t)||G(t)},exports.isTrue=function(t){return i(t)&&!0===t},exports.isUint16Array=M,exports.isUint32Array=R,exports.isUint8Array=j,exports.isUint8ClampedArray=C,exports.isUndefined=function(t){return void 0===t},exports.isValidBlockDevicePath=z,exports.isValidCharacterDevicePath=Q,exports.isValidDirectoryPath=rt,exports.isValidFIFOPath=et,exports.isValidFilePath=ut,exports.isValidPath=H,exports.isValidSocketPath=ft,exports.isValidSymbolicLinkPath=ct,exports.isZero=function(t){return 0===t},exports.isZeroNegative=function(t){return 0===t&&1/t===Number.NEGATIVE_INFINITY},exports.isZeroPositive=y;
1302
+ */,exports.isNotBigInt64Array=function(t){return!V(t)},exports.isNotBigUint64Array=function(t){return!w(t)},exports.isNotBlankString=function(t){return!F(t)},exports.isNotBlockDevicePath=function(t){return!J(t)},exports.isNotBoolean=o,exports.isNotCelsius=K,exports.isNotCharacterDevicePath=function(t){return!tt(t)},exports.isNotDefined=c,exports.isNotDirectoryPath=function(t){return!nt(t)},exports.isNotEmpty=function(t){return!P(t)},exports.isNotEmptyArray=function(t){return!!n(t)||t.length>0},exports.isNotEmptyDirectory=function(t){return!et(t)},exports.isNotEmptyFile=function(t,r=0){return!ft(t,r)},exports.isNotEmptyObject=function(t){return!b(t)},exports.isNotEmptyString=function(t){return!S(t)},exports.isNotFIFOPath=function(t){return!ot(t)},exports.isNotFahrenheit=q,exports.isNotFilePath=function(t){return!st(t)},exports.isNotFloat32Array=function(t){return!T(t)},exports.isNotFloat64Array=function(t){return!k(t)},exports.isNotFunction=s,exports.isNotInt16Array=function(t){return!L(t)},exports.isNotInt32Array=function(t){return!D(t)},exports.isNotInt8Array=function(t){return!_(t)},exports.isNotKelvin=z,exports.isNotNull=f,exports.isNotNumber=h,exports.isNotObject=E,exports.isNotSocketPath=function(t){return!ct(t)},exports.isNotString=m,exports.isNotSymbol=function(t){return"symbol"!=typeof t},exports.isNotSymbolicLinkPath=function(t){return!lt(t)},exports.isNotTemperature=function(t){return z(t)&&K(t)&&q(t)},exports.isNotUint16Array=function(t){return!M(t)},exports.isNotUint32Array=function(t){return!R(t)},exports.isNotUint8Array=function(t){return!j(t)},exports.isNotUint8ClampedArray=function(t){return!C(t)},exports.isNotUndefined=v,exports.isNull=function(t){return null===t},exports.isNumber=N,exports.isNumberNegative=function(t){return N(t)&&t<0},exports.isNumberPositive=function(t){return!h(t)&&(t>0||y(t)||l(t))},exports.isObject=I,exports.isSocketPath=ct,exports.isString=g,exports.isSymbol=O,exports.isSymbolicLinkPath=lt,exports.isTemperature=function(t){return H(t)||Y(t)||X(t)},exports.isTrue=function(t){return i(t)&&!0===t},exports.isUint16Array=M,exports.isUint32Array=R,exports.isUint8Array=j,exports.isUint8ClampedArray=C,exports.isUndefined=function(t){return void 0===t},exports.isValidBlockDevicePath=W,exports.isValidCharacterDevicePath=rt,exports.isValidDirectoryPath=it,exports.isValidFIFOPath=ut,exports.isValidFilePath=at,exports.isValidPath=Q,exports.isValidSocketPath=pt,exports.isValidSymbolicLinkPath=xt,exports.isZero=function(t){return 0===t},exports.isZeroNegative=function(t){return 0===t&&1/t===Number.NEGATIVE_INFINITY},exports.isZeroPositive=y;
@@ -1,6 +1,6 @@
1
1
  /**
2
- * ┳ ┓┏ ┓• ┓ ┏━ ┏┓ ┏┓ ┏┓ ┳┳┓ ┓ ┓
3
- * ┃╋┏┓┏┓ ┃┃┏┓┃┓┏┫┏┓╋┏┓┏┓┏ ┓┏┗┓ ┣┓ ┃┫ ━━ ┣ ┏┃┃┃┏┓┏┫┓┏┃┏┓
2
+ * ┳ ┓┏ ┓• ┓ ┏┓ ┏┓ ┏┓ ┏┓ ┳┳┓ ┓ ┓
3
+ * ┃╋┏┓┏┓ ┃┃┏┓┃┓┏┫┏┓╋┏┓┏┓┏ ┓┏┣┓ ┃┫ ┃┫ ━━ ┣ ┏┃┃┃┏┓┏┫┓┏┃┏┓
4
4
  * ┻┗┗ ┗ •┗┛┗┻┗┗┗┻┗┻┗┗┛┛ ┛ ┗┛┗┛•┗┛•┗┛ ┗┛┛┛ ┗┗┛┗┻┗┻┗┗
5
5
  *
6
6
  * @desc A library of validation functions use in various Itee projects
@@ -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 {*}