umt 1.9.0 → 2.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 (1242) hide show
  1. package/module/Array/binarySearch.d.ts +6 -0
  2. package/module/Array/binarySearch.js +24 -0
  3. package/module/Array/binarySearch.js.map +1 -0
  4. package/module/Array/compact.d.ts +1 -0
  5. package/module/Array/compact.js +2 -0
  6. package/module/Array/compact.js.map +1 -0
  7. package/module/Array/getArraysCommon.d.ts +5 -5
  8. package/module/Array/getArraysCommon.js +5 -5
  9. package/module/Array/getArraysCommon.js.map +1 -1
  10. package/module/Array/index.d.ts +2 -0
  11. package/module/Array/index.js +2 -0
  12. package/module/Array/index.js.map +1 -1
  13. package/module/Array/range.d.ts +3 -1
  14. package/module/Array/range.js +5 -3
  15. package/module/Array/range.js.map +1 -1
  16. package/module/Math/flexibleNumberConversion.d.ts +27 -0
  17. package/module/Math/flexibleNumberConversion.js +64 -0
  18. package/module/Math/flexibleNumberConversion.js.map +1 -0
  19. package/module/Math/index.d.ts +1 -0
  20. package/module/Math/index.js +1 -0
  21. package/module/Math/index.js.map +1 -1
  22. package/module/Math/linearCongruentialGenerator.d.ts +4 -4
  23. package/module/Math/linearCongruentialGenerator.js +4 -8
  24. package/module/Math/linearCongruentialGenerator.js.map +1 -1
  25. package/module/Math/xoshiro256.d.ts +4 -6
  26. package/module/Math/xoshiro256.js +14 -16
  27. package/module/Math/xoshiro256.js.map +1 -1
  28. package/module/Object/index.d.ts +3 -0
  29. package/module/Object/index.js +3 -0
  30. package/module/Object/index.js.map +1 -1
  31. package/module/Object/keyBy.d.ts +10 -0
  32. package/module/Object/keyBy.js +34 -0
  33. package/module/Object/keyBy.js.map +1 -0
  34. package/module/Object/pick.d.ts +16 -0
  35. package/module/Object/pick.js +23 -0
  36. package/module/Object/pick.js.map +1 -0
  37. package/module/Object/pickDeep.d.ts +19 -0
  38. package/module/Object/pickDeep.js +41 -0
  39. package/module/Object/pickDeep.js.map +1 -0
  40. package/module/String/hasNoLetters.d.ts +6 -0
  41. package/module/String/hasNoLetters.js +13 -0
  42. package/module/String/hasNoLetters.js.map +1 -0
  43. package/module/String/index.d.ts +1 -0
  44. package/module/String/index.js +1 -0
  45. package/module/String/index.js.map +1 -1
  46. package/module/Time/convertTime.d.ts +10 -0
  47. package/module/Time/convertTime.js +23 -0
  48. package/module/Time/convertTime.js.map +1 -0
  49. package/module/Time/index.d.ts +1 -0
  50. package/module/Time/index.js +2 -0
  51. package/module/Time/index.js.map +1 -0
  52. package/module/Tool/index.d.ts +1 -0
  53. package/module/Tool/index.js +1 -0
  54. package/module/Tool/index.js.map +1 -1
  55. package/module/Tool/parseJson.d.ts +1 -0
  56. package/module/Tool/parseJson.js +4 -0
  57. package/module/Tool/parseJson.js.map +1 -0
  58. package/module/UA/extractBrowserFromUserAgent.d.ts +2 -2
  59. package/module/UA/extractBrowserFromUserAgent.js.map +1 -1
  60. package/module/UA/extractDeviceFromUserAgent.d.ts +2 -2
  61. package/module/UA/extractDeviceFromUserAgent.js.map +1 -1
  62. package/module/UA/extractOsFromUserAgent.d.ts +2 -0
  63. package/module/UA/{extractOSFromUserAgent.js.map → extractOsFromUserAgent.js.map} +1 -1
  64. package/module/Validate/isBrowser.d.ts +1 -1
  65. package/module/Validate/isBrowser.js +9 -8
  66. package/module/Validate/isBrowser.js.map +1 -1
  67. package/module/Validate/isBun.d.ts +1 -1
  68. package/module/Validate/isBun.js +9 -9
  69. package/module/Validate/isBun.js.map +1 -1
  70. package/module/Validate/isNode.d.ts +1 -1
  71. package/module/Validate/isNode.js +8 -8
  72. package/module/Validate/isNode.js.map +1 -1
  73. package/module/Validate/isNodeWebkit.d.ts +1 -1
  74. package/module/Validate/isNodeWebkit.js +1 -1
  75. package/module/Validate/isNodeWebkit.js.map +1 -1
  76. package/module/es5/Advance/index.d.ts +1 -0
  77. package/module/es5/Advance/index.js +16 -0
  78. package/module/es5/Advance/rangeAdvance.d.ts +10 -0
  79. package/module/es5/Advance/rangeAdvance.js +27 -0
  80. package/module/es5/Array/arraysJoin.d.ts +8 -0
  81. package/module/es5/Array/arraysJoin.js +25 -0
  82. package/module/es5/Array/binarySearch.d.ts +6 -0
  83. package/module/es5/Array/binarySearch.js +28 -0
  84. package/module/es5/Array/checkFlagAlignment.d.ts +13 -0
  85. package/module/es5/Array/checkFlagAlignment.js +60 -0
  86. package/module/es5/Array/chunk.d.ts +8 -0
  87. package/module/es5/Array/chunk.js +20 -0
  88. package/module/es5/Array/compact.d.ts +1 -0
  89. package/module/es5/Array/compact.js +9 -0
  90. package/module/es5/Array/compareFunctionDefault.d.ts +1 -0
  91. package/module/es5/Array/compareFunctionDefault.js +9 -0
  92. package/module/es5/Array/drop.d.ts +13 -0
  93. package/module/es5/Array/drop.js +52 -0
  94. package/module/es5/Array/first.d.ts +8 -0
  95. package/module/es5/Array/first.js +15 -0
  96. package/module/es5/Array/generateNumberArray.d.ts +11 -0
  97. package/module/es5/Array/generateNumberArray.js +43 -0
  98. package/module/es5/Array/getArraysCommon.d.ts +8 -0
  99. package/module/es5/Array/getArraysCommon.js +24 -0
  100. package/module/es5/Array/getArraysDiff.d.ts +8 -0
  101. package/module/es5/Array/getArraysDiff.js +49 -0
  102. package/module/es5/Array/groupBy.d.ts +7 -0
  103. package/module/es5/Array/groupBy.js +22 -0
  104. package/module/es5/Array/index.d.ts +23 -0
  105. package/module/es5/Array/index.js +258 -0
  106. package/module/es5/Array/insertionSort.d.ts +22 -0
  107. package/module/es5/Array/insertionSort.js +43 -0
  108. package/module/es5/Array/mergeSort.d.ts +8 -0
  109. package/module/es5/Array/mergeSort.js +45 -0
  110. package/module/es5/Array/pop.d.ts +6 -0
  111. package/module/es5/Array/pop.js +20 -0
  112. package/module/es5/Array/quickSort.d.ts +14 -0
  113. package/module/es5/Array/quickSort.js +99 -0
  114. package/module/es5/Array/randomSelect.d.ts +9 -0
  115. package/module/es5/Array/randomSelect.js +27 -0
  116. package/module/es5/Array/range.d.ts +11 -0
  117. package/module/es5/Array/range.js +29 -0
  118. package/module/es5/Array/shuffle.d.ts +7 -0
  119. package/module/es5/Array/shuffle.js +30 -0
  120. package/module/es5/Array/shuffle2DArray.d.ts +9 -0
  121. package/module/es5/Array/shuffle2DArray.js +51 -0
  122. package/module/es5/Array/sum.d.ts +7 -0
  123. package/module/es5/Array/sum.js +18 -0
  124. package/module/es5/Array/timSort.d.ts +15 -0
  125. package/module/es5/Array/timSort.js +88 -0
  126. package/module/es5/Array/zip.d.ts +7 -0
  127. package/module/es5/Array/zip.js +35 -0
  128. package/module/es5/Array/zipLongest.d.ts +10 -0
  129. package/module/es5/Array/zipLongest.js +35 -0
  130. package/module/es5/Color/cmykToRgba.d.ts +16 -0
  131. package/module/es5/Color/cmykToRgba.js +55 -0
  132. package/module/es5/Color/hexaToRgba.d.ts +12 -0
  133. package/module/es5/Color/hexaToRgba.js +30 -0
  134. package/module/es5/Color/hslaToRgba.d.ts +15 -0
  135. package/module/es5/Color/hslaToRgba.js +77 -0
  136. package/module/es5/Color/index.d.ts +6 -0
  137. package/module/es5/Color/index.js +71 -0
  138. package/module/es5/Color/rgbaToCmyk.d.ts +18 -0
  139. package/module/es5/Color/rgbaToCmyk.js +36 -0
  140. package/module/es5/Color/rgbaToHexA.d.ts +12 -0
  141. package/module/es5/Color/rgbaToHexA.js +28 -0
  142. package/module/es5/Color/rgbaToHsla.d.ts +17 -0
  143. package/module/es5/Color/rgbaToHsla.js +60 -0
  144. package/module/es5/Consts/clock.d.ts +44 -0
  145. package/module/es5/Consts/clock.js +60 -0
  146. package/module/es5/Consts/index.d.ts +1 -0
  147. package/module/es5/Consts/index.js +16 -0
  148. package/module/es5/Date/birthday.d.ts +12 -0
  149. package/module/es5/Date/birthday.js +24 -0
  150. package/module/es5/Date/dateRange.d.ts +8 -0
  151. package/module/es5/Date/dateRange.js +23 -0
  152. package/module/es5/Date/dayOfWeek.d.ts +15 -0
  153. package/module/es5/Date/dayOfWeek.js +23 -0
  154. package/module/es5/Date/format.d.ts +7 -0
  155. package/module/es5/Date/format.js +56 -0
  156. package/module/es5/Date/getDay.d.ts +17 -0
  157. package/module/es5/Date/getDay.js +57 -0
  158. package/module/es5/Date/getTimezoneOffsetString.d.ts +6 -0
  159. package/module/es5/Date/getTimezoneOffsetString.js +19 -0
  160. package/module/es5/Date/index.d.ts +9 -0
  161. package/module/es5/Date/index.js +104 -0
  162. package/module/es5/Date/isLeapYear.d.ts +6 -0
  163. package/module/es5/Date/isLeapYear.js +14 -0
  164. package/module/es5/Date/new.d.ts +37 -0
  165. package/module/es5/Date/new.js +46 -0
  166. package/module/es5/Date/now.d.ts +8 -0
  167. package/module/es5/Date/now.js +17 -0
  168. package/module/es5/Error/index.d.ts +1 -0
  169. package/module/es5/Error/index.js +16 -0
  170. package/module/es5/Error/safeExecute.d.ts +11 -0
  171. package/module/es5/Error/safeExecute.js +25 -0
  172. package/module/es5/IP/cidrToLong.d.ts +6 -0
  173. package/module/es5/IP/cidrToLong.js +14 -0
  174. package/module/es5/IP/cidrToSubnetMask.d.ts +6 -0
  175. package/module/es5/IP/cidrToSubnetMask.js +16 -0
  176. package/module/es5/IP/getIpClass.d.ts +6 -0
  177. package/module/es5/IP/getIpClass.js +34 -0
  178. package/module/es5/IP/getNetworkAddress.d.ts +7 -0
  179. package/module/es5/IP/getNetworkAddress.js +19 -0
  180. package/module/es5/IP/index.d.ts +9 -0
  181. package/module/es5/IP/index.js +104 -0
  182. package/module/es5/IP/ipToBinaryString.d.ts +6 -0
  183. package/module/es5/IP/ipToBinaryString.js +16 -0
  184. package/module/es5/IP/ipToLong.d.ts +6 -0
  185. package/module/es5/IP/ipToLong.js +15 -0
  186. package/module/es5/IP/isInRange.d.ts +8 -0
  187. package/module/es5/IP/isInRange.js +18 -0
  188. package/module/es5/IP/isPrivateIp.d.ts +6 -0
  189. package/module/es5/IP/isPrivateIp.js +29 -0
  190. package/module/es5/IP/longToIp.d.ts +6 -0
  191. package/module/es5/IP/longToIp.js +19 -0
  192. package/module/es5/IP/subnetMaskToCidr.d.ts +6 -0
  193. package/module/es5/IP/subnetMaskToCidr.js +23 -0
  194. package/module/es5/Math/addition.d.ts +7 -0
  195. package/module/es5/Math/addition.js +32 -0
  196. package/module/es5/Math/average.d.ts +7 -0
  197. package/module/es5/Math/average.js +24 -0
  198. package/module/es5/Math/bitwise.d.ts +13 -0
  199. package/module/es5/Math/bitwise.js +36 -0
  200. package/module/es5/Math/calculator/calculator.d.ts +10 -0
  201. package/module/es5/Math/calculator/calculator.js +21 -0
  202. package/module/es5/Math/calculator/calculatorInitialization.d.ts +9 -0
  203. package/module/es5/Math/calculator/calculatorInitialization.js +22 -0
  204. package/module/es5/Math/calculator/convertCurrency.d.ts +11 -0
  205. package/module/es5/Math/calculator/convertCurrency.js +33 -0
  206. package/module/es5/Math/calculator/core.d.ts +3 -0
  207. package/module/es5/Math/calculator/core.js +132 -0
  208. package/module/es5/Math/calculator/index.d.ts +5 -0
  209. package/module/es5/Math/calculator/index.js +60 -0
  210. package/module/es5/Math/calculator/literalExpression.d.ts +7 -0
  211. package/module/es5/Math/calculator/literalExpression.js +74 -0
  212. package/module/es5/Math/degToRad.d.ts +7 -0
  213. package/module/es5/Math/degToRad.js +17 -0
  214. package/module/es5/Math/deviationValue.d.ts +9 -0
  215. package/module/es5/Math/deviationValue.js +17 -0
  216. package/module/es5/Math/division.d.ts +10 -0
  217. package/module/es5/Math/division.js +36 -0
  218. package/module/es5/Math/factorial.d.ts +7 -0
  219. package/module/es5/Math/factorial.js +20 -0
  220. package/module/es5/Math/factorize.d.ts +7 -0
  221. package/module/es5/Math/factorize.js +26 -0
  222. package/module/es5/Math/flexibleNumberConversion.d.ts +27 -0
  223. package/module/es5/Math/flexibleNumberConversion.js +75 -0
  224. package/module/es5/Math/gcd.d.ts +9 -0
  225. package/module/es5/Math/gcd.js +55 -0
  226. package/module/es5/Math/getDecimalLength.d.ts +7 -0
  227. package/module/es5/Math/getDecimalLength.js +19 -0
  228. package/module/es5/Math/index.d.ts +39 -0
  229. package/module/es5/Math/index.js +434 -0
  230. package/module/es5/Math/lcm.d.ts +8 -0
  231. package/module/es5/Math/lcm.js +33 -0
  232. package/module/es5/Math/linearCongruentialGenerator.d.ts +11 -0
  233. package/module/es5/Math/linearCongruentialGenerator.js +22 -0
  234. package/module/es5/Math/mathConverter.d.ts +7 -0
  235. package/module/es5/Math/mathConverter.js +46 -0
  236. package/module/es5/Math/mathSeparator.d.ts +7 -0
  237. package/module/es5/Math/mathSeparator.js +37 -0
  238. package/module/es5/Math/max.d.ts +7 -0
  239. package/module/es5/Math/max.js +24 -0
  240. package/module/es5/Math/median.d.ts +7 -0
  241. package/module/es5/Math/median.js +18 -0
  242. package/module/es5/Math/min.d.ts +7 -0
  243. package/module/es5/Math/min.js +24 -0
  244. package/module/es5/Math/multiples.d.ts +8 -0
  245. package/module/es5/Math/multiples.js +20 -0
  246. package/module/es5/Math/multiplication.d.ts +7 -0
  247. package/module/es5/Math/multiplication.js +24 -0
  248. package/module/es5/Math/nCr.d.ts +8 -0
  249. package/module/es5/Math/nCr.js +26 -0
  250. package/module/es5/Math/nHr.d.ts +8 -0
  251. package/module/es5/Math/nHr.js +21 -0
  252. package/module/es5/Math/nPr.d.ts +8 -0
  253. package/module/es5/Math/nPr.js +23 -0
  254. package/module/es5/Math/primeFactorization.d.ts +10 -0
  255. package/module/es5/Math/primeFactorization.js +31 -0
  256. package/module/es5/Math/quotient.d.ts +8 -0
  257. package/module/es5/Math/quotient.js +16 -0
  258. package/module/es5/Math/radToDeg.d.ts +7 -0
  259. package/module/es5/Math/radToDeg.js +16 -0
  260. package/module/es5/Math/random.d.ts +8 -0
  261. package/module/es5/Math/random.js +17 -0
  262. package/module/es5/Math/reduce.d.ts +16 -0
  263. package/module/es5/Math/reduce.js +28 -0
  264. package/module/es5/Math/repeatedTrial.d.ts +12 -0
  265. package/module/es5/Math/repeatedTrial.js +23 -0
  266. package/module/es5/Math/roundOf.d.ts +8 -0
  267. package/module/es5/Math/roundOf.js +17 -0
  268. package/module/es5/Math/solveEquation.d.ts +19 -0
  269. package/module/es5/Math/solveEquation.js +80 -0
  270. package/module/es5/Math/standardDeviation.d.ts +7 -0
  271. package/module/es5/Math/standardDeviation.js +24 -0
  272. package/module/es5/Math/subtract.d.ts +7 -0
  273. package/module/es5/Math/subtract.js +30 -0
  274. package/module/es5/Math/toBaseN.d.ts +8 -0
  275. package/module/es5/Math/toBaseN.js +17 -0
  276. package/module/es5/Math/toCelsius.d.ts +7 -0
  277. package/module/es5/Math/toCelsius.js +16 -0
  278. package/module/es5/Math/toKelvin.d.ts +7 -0
  279. package/module/es5/Math/toKelvin.js +16 -0
  280. package/module/es5/Math/uuidv7.d.ts +6 -0
  281. package/module/es5/Math/uuidv7.js +59 -0
  282. package/module/es5/Math/valueSwap.d.ts +8 -0
  283. package/module/es5/Math/valueSwap.js +16 -0
  284. package/module/es5/Math/xoshiro256.d.ts +6 -0
  285. package/module/es5/Math/xoshiro256.js +26 -0
  286. package/module/es5/Object/has.d.ts +12 -0
  287. package/module/es5/Object/has.js +44 -0
  288. package/module/es5/Object/index.d.ts +4 -0
  289. package/module/es5/Object/index.js +49 -0
  290. package/module/es5/Object/keyBy.d.ts +10 -0
  291. package/module/es5/Object/keyBy.js +57 -0
  292. package/module/es5/Object/pick.d.ts +16 -0
  293. package/module/es5/Object/pick.js +32 -0
  294. package/module/es5/Object/pickDeep.d.ts +19 -0
  295. package/module/es5/Object/pickDeep.js +73 -0
  296. package/module/es5/Simple/Array/index.d.ts +1 -0
  297. package/module/es5/Simple/Array/index.js +16 -0
  298. package/module/es5/Simple/Array/quickSortSimple.d.ts +10 -0
  299. package/module/es5/Simple/Array/quickSortSimple.js +31 -0
  300. package/module/es5/Simple/Date/birthdaySimple.d.ts +20 -0
  301. package/module/es5/Simple/Date/birthdaySimple.js +55 -0
  302. package/module/es5/Simple/Date/dayOfWeekSimple.d.ts +26 -0
  303. package/module/es5/Simple/Date/dayOfWeekSimple.js +78 -0
  304. package/module/es5/Simple/Date/index.d.ts +3 -0
  305. package/module/es5/Simple/Date/index.js +38 -0
  306. package/module/es5/Simple/Date/nowSimple.d.ts +9 -0
  307. package/module/es5/Simple/Date/nowSimple.js +24 -0
  308. package/module/es5/Simple/Math/deviationValueSimple.d.ts +13 -0
  309. package/module/es5/Simple/Math/deviationValueSimple.js +24 -0
  310. package/module/es5/Simple/Math/index.d.ts +1 -0
  311. package/module/es5/Simple/Math/index.js +16 -0
  312. package/module/es5/Simple/index.d.ts +3 -0
  313. package/module/es5/Simple/index.js +38 -0
  314. package/module/es5/String/deleteSpaces.d.ts +7 -0
  315. package/module/es5/String/deleteSpaces.js +15 -0
  316. package/module/es5/String/formatString.d.ts +13 -0
  317. package/module/es5/String/formatString.js +26 -0
  318. package/module/es5/String/fromBase64.d.ts +6 -0
  319. package/module/es5/String/fromBase64.js +19 -0
  320. package/module/es5/String/hasNoLetters.d.ts +6 -0
  321. package/module/es5/String/hasNoLetters.js +18 -0
  322. package/module/es5/String/index.d.ts +13 -0
  323. package/module/es5/String/index.js +148 -0
  324. package/module/es5/String/padEnd.d.ts +9 -0
  325. package/module/es5/String/padEnd.js +24 -0
  326. package/module/es5/String/padStart.d.ts +9 -0
  327. package/module/es5/String/padStart.js +25 -0
  328. package/module/es5/String/randomString.d.ts +7 -0
  329. package/module/es5/String/randomString.js +22 -0
  330. package/module/es5/String/randomStringInitialization.d.ts +6 -0
  331. package/module/es5/String/randomStringInitialization.js +18 -0
  332. package/module/es5/String/reverseString.d.ts +7 -0
  333. package/module/es5/String/reverseString.js +15 -0
  334. package/module/es5/String/toBase64.d.ts +6 -0
  335. package/module/es5/String/toBase64.js +16 -0
  336. package/module/es5/String/toHalfWidth.d.ts +6 -0
  337. package/module/es5/String/toHalfWidth.js +18 -0
  338. package/module/es5/String/trimCharacters.d.ts +8 -0
  339. package/module/es5/String/trimCharacters.js +18 -0
  340. package/module/es5/String/trimEndCharacters.d.ts +8 -0
  341. package/module/es5/String/trimEndCharacters.js +20 -0
  342. package/module/es5/String/trimStartCharacters.d.ts +8 -0
  343. package/module/es5/String/trimStartCharacters.js +20 -0
  344. package/module/es5/Time/convertTime.d.ts +10 -0
  345. package/module/es5/Time/convertTime.js +29 -0
  346. package/module/es5/Time/index.d.ts +1 -0
  347. package/module/es5/Time/index.js +16 -0
  348. package/module/es5/Tool/createPipeline.d.ts +18 -0
  349. package/module/es5/Tool/createPipeline.js +29 -0
  350. package/module/es5/Tool/index.d.ts +2 -0
  351. package/module/es5/Tool/index.js +27 -0
  352. package/module/es5/Tool/parseJson.d.ts +1 -0
  353. package/module/es5/Tool/parseJson.js +9 -0
  354. package/module/es5/UA/extractBrowserFromUserAgent.d.ts +2 -0
  355. package/module/es5/UA/extractBrowserFromUserAgent.js +24 -0
  356. package/module/es5/UA/extractDeviceFromUserAgent.d.ts +2 -0
  357. package/module/es5/UA/extractDeviceFromUserAgent.js +27 -0
  358. package/module/es5/UA/extractOsFromUserAgent.d.ts +2 -0
  359. package/module/es5/UA/extractOsFromUserAgent.js +24 -0
  360. package/module/es5/UA/index.d.ts +4 -0
  361. package/module/es5/UA/index.js +49 -0
  362. package/module/es5/UA/parseUserAgent.d.ts +2 -0
  363. package/module/es5/UA/parseUserAgent.js +17 -0
  364. package/module/es5/Validate/array/core.d.ts +2 -0
  365. package/module/es5/Validate/array/core.js +51 -0
  366. package/module/es5/Validate/array/index.d.ts +1 -0
  367. package/module/es5/Validate/array/index.js +16 -0
  368. package/module/es5/Validate/boolean/core.d.ts +2 -0
  369. package/module/es5/Validate/boolean/core.js +12 -0
  370. package/module/es5/Validate/boolean/index.d.ts +1 -0
  371. package/module/es5/Validate/boolean/index.js +16 -0
  372. package/module/es5/Validate/core/index.d.ts +2 -0
  373. package/module/es5/Validate/core/index.js +47 -0
  374. package/module/es5/Validate/index.d.ts +17 -0
  375. package/module/es5/Validate/index.js +192 -0
  376. package/module/es5/Validate/isArray.d.ts +8 -0
  377. package/module/es5/Validate/isArray.js +16 -0
  378. package/module/es5/Validate/isBrowser.d.ts +4 -0
  379. package/module/es5/Validate/isBrowser.js +17 -0
  380. package/module/es5/Validate/isBun.d.ts +4 -0
  381. package/module/es5/Validate/isBun.js +17 -0
  382. package/module/es5/Validate/isDouble.d.ts +11 -0
  383. package/module/es5/Validate/isDouble.js +26 -0
  384. package/module/es5/Validate/isNode.d.ts +4 -0
  385. package/module/es5/Validate/isNode.js +16 -0
  386. package/module/es5/Validate/isNodeWebkit.d.ts +4 -0
  387. package/module/es5/Validate/isNodeWebkit.js +14 -0
  388. package/module/es5/Validate/isNotEmpty.d.ts +8 -0
  389. package/module/es5/Validate/isNotEmpty.js +17 -0
  390. package/module/es5/Validate/isNumber.d.ts +11 -0
  391. package/module/es5/Validate/isNumber.js +21 -0
  392. package/module/es5/Validate/isObject.d.ts +10 -0
  393. package/module/es5/Validate/isObject.js +17 -0
  394. package/module/es5/Validate/isPerfectSquare.d.ts +6 -0
  395. package/module/es5/Validate/isPerfectSquare.js +18 -0
  396. package/module/es5/Validate/isPrimeNumber.d.ts +7 -0
  397. package/module/es5/Validate/isPrimeNumber.js +23 -0
  398. package/module/es5/Validate/isValueNaN.d.ts +10 -0
  399. package/module/es5/Validate/isValueNaN.js +20 -0
  400. package/module/es5/Validate/number/core.d.ts +2 -0
  401. package/module/es5/Validate/number/core.js +12 -0
  402. package/module/es5/Validate/number/double.d.ts +2 -0
  403. package/module/es5/Validate/number/double.js +16 -0
  404. package/module/es5/Validate/number/even.d.ts +2 -0
  405. package/module/es5/Validate/number/even.js +15 -0
  406. package/module/es5/Validate/number/index.d.ts +7 -0
  407. package/module/es5/Validate/number/index.js +82 -0
  408. package/module/es5/Validate/number/maxValue.d.ts +2 -0
  409. package/module/es5/Validate/number/maxValue.js +15 -0
  410. package/module/es5/Validate/number/minValue.d.ts +2 -0
  411. package/module/es5/Validate/number/minValue.js +15 -0
  412. package/module/es5/Validate/number/odd.d.ts +2 -0
  413. package/module/es5/Validate/number/odd.js +15 -0
  414. package/module/es5/Validate/number/prime.d.ts +2 -0
  415. package/module/es5/Validate/number/prime.js +16 -0
  416. package/module/es5/Validate/object/core.d.ts +8 -0
  417. package/module/es5/Validate/object/core.js +34 -0
  418. package/module/es5/Validate/object/index.d.ts +1 -0
  419. package/module/es5/Validate/object/index.js +16 -0
  420. package/module/es5/Validate/string/core.d.ts +2 -0
  421. package/module/es5/Validate/string/core.js +12 -0
  422. package/module/es5/Validate/string/email.d.ts +2 -0
  423. package/module/es5/Validate/string/email.js +17 -0
  424. package/module/es5/Validate/string/index.d.ts +8 -0
  425. package/module/es5/Validate/string/index.js +93 -0
  426. package/module/es5/Validate/string/length.d.ts +2 -0
  427. package/module/es5/Validate/string/length.js +15 -0
  428. package/module/es5/Validate/string/maxLength.d.ts +2 -0
  429. package/module/es5/Validate/string/maxLength.js +15 -0
  430. package/module/es5/Validate/string/minLength.d.ts +2 -0
  431. package/module/es5/Validate/string/minLength.js +15 -0
  432. package/module/es5/Validate/string/numberString.d.ts +2 -0
  433. package/module/es5/Validate/string/numberString.js +16 -0
  434. package/module/es5/Validate/string/regexMatch.d.ts +2 -0
  435. package/module/es5/Validate/string/regexMatch.js +15 -0
  436. package/module/es5/Validate/string/uuid.d.ts +7 -0
  437. package/module/es5/Validate/string/uuid.js +26 -0
  438. package/module/es5/Validate/type.d.ts +13 -0
  439. package/module/es5/Validate/type.js +5 -0
  440. package/module/es5/index.d.ts +16 -0
  441. package/module/es5/index.js +181 -0
  442. package/module/es5/tests/integration/Array/drop-and-first.test.d.ts +1 -0
  443. package/module/es5/tests/integration/Array/drop-and-first.test.js +14 -0
  444. package/module/es5/tests/integration/Tool/parseJson-and-Validate.test.d.ts +1 -0
  445. package/module/es5/tests/integration/Tool/parseJson-and-Validate.test.js +26 -0
  446. package/module/es5/tests/unit/Advance/rangeAdvance.test.d.ts +1 -0
  447. package/module/es5/tests/unit/Advance/rangeAdvance.test.js +26 -0
  448. package/module/es5/tests/unit/Array/arraysJoin.test.d.ts +1 -0
  449. package/module/es5/tests/unit/Array/arraysJoin.test.js +7 -0
  450. package/module/es5/tests/unit/Array/binarySearch.test.d.ts +1 -0
  451. package/module/es5/tests/unit/Array/binarySearch.test.js +32 -0
  452. package/module/es5/tests/unit/Array/checkFlagAlignment.test.d.ts +1 -0
  453. package/module/es5/tests/unit/Array/checkFlagAlignment.test.js +206 -0
  454. package/module/es5/tests/unit/Array/chunk.test.d.ts +1 -0
  455. package/module/es5/tests/unit/Array/chunk.test.js +51 -0
  456. package/module/es5/tests/unit/Array/compact.test.d.ts +1 -0
  457. package/module/es5/tests/unit/Array/compact.test.js +53 -0
  458. package/module/es5/tests/unit/Array/drop.test.d.ts +1 -0
  459. package/module/es5/tests/unit/Array/drop.test.js +84 -0
  460. package/module/es5/tests/unit/Array/first.test.d.ts +1 -0
  461. package/module/es5/tests/unit/Array/first.test.js +28 -0
  462. package/module/es5/tests/unit/Array/generateNumberArray.test.d.ts +1 -0
  463. package/module/es5/tests/unit/Array/generateNumberArray.test.js +34 -0
  464. package/module/es5/tests/unit/Array/getArraysCommon.test.d.ts +1 -0
  465. package/module/es5/tests/unit/Array/getArraysCommon.test.js +8 -0
  466. package/module/es5/tests/unit/Array/getArraysDiff.test.d.ts +1 -0
  467. package/module/es5/tests/unit/Array/getArraysDiff.test.js +99 -0
  468. package/module/es5/tests/unit/Array/groupBy.test.d.ts +1 -0
  469. package/module/es5/tests/unit/Array/groupBy.test.js +87 -0
  470. package/module/es5/tests/unit/Array/insertionSort.test.d.ts +1 -0
  471. package/module/es5/tests/unit/Array/insertionSort.test.js +37 -0
  472. package/module/es5/tests/unit/Array/mergeSort.test.d.ts +1 -0
  473. package/module/es5/tests/unit/Array/mergeSort.test.js +20 -0
  474. package/module/es5/tests/unit/Array/pop.test.d.ts +1 -0
  475. package/module/es5/tests/unit/Array/pop.test.js +50 -0
  476. package/module/es5/tests/unit/Array/quickSort.test.d.ts +1 -0
  477. package/module/es5/tests/unit/Array/quickSort.test.js +53 -0
  478. package/module/es5/tests/unit/Array/randomSelect.test.d.ts +1 -0
  479. package/module/es5/tests/unit/Array/randomSelect.test.js +46 -0
  480. package/module/es5/tests/unit/Array/range.test.d.ts +1 -0
  481. package/module/es5/tests/unit/Array/range.test.js +21 -0
  482. package/module/es5/tests/unit/Array/shuffle.test.d.ts +1 -0
  483. package/module/es5/tests/unit/Array/shuffle.test.js +37 -0
  484. package/module/es5/tests/unit/Array/shuffle2DArray.test.d.ts +1 -0
  485. package/module/es5/tests/unit/Array/shuffle2DArray.test.js +47 -0
  486. package/module/es5/tests/unit/Array/sum.test.d.ts +1 -0
  487. package/module/es5/tests/unit/Array/sum.test.js +6 -0
  488. package/module/es5/tests/unit/Array/timSort.test.d.ts +1 -0
  489. package/module/es5/tests/unit/Array/timSort.test.js +48 -0
  490. package/module/es5/tests/unit/Array/zip.test.d.ts +1 -0
  491. package/module/es5/tests/unit/Array/zip.test.js +30 -0
  492. package/module/es5/tests/unit/Array/zipLongest.test.d.ts +1 -0
  493. package/module/es5/tests/unit/Array/zipLongest.test.js +31 -0
  494. package/module/es5/tests/unit/Color/cmykToRgba.test.d.ts +1 -0
  495. package/module/es5/tests/unit/Color/cmykToRgba.test.js +58 -0
  496. package/module/es5/tests/unit/Color/hexaToRgba.test.d.ts +1 -0
  497. package/module/es5/tests/unit/Color/hexaToRgba.test.js +63 -0
  498. package/module/es5/tests/unit/Color/hslaToRgba.test.d.ts +1 -0
  499. package/module/es5/tests/unit/Color/hslaToRgba.test.js +159 -0
  500. package/module/es5/tests/unit/Color/rgbaToCmyk.test.d.ts +1 -0
  501. package/module/es5/tests/unit/Color/rgbaToCmyk.test.js +73 -0
  502. package/module/es5/tests/unit/Color/rgbaToHexA.test.d.ts +1 -0
  503. package/module/es5/tests/unit/Color/rgbaToHexA.test.js +114 -0
  504. package/module/es5/tests/unit/Color/rgbaToHsla.test.d.ts +1 -0
  505. package/module/es5/tests/unit/Color/rgbaToHsla.test.js +100 -0
  506. package/module/es5/tests/unit/Consts/clock.test.d.ts +1 -0
  507. package/module/es5/tests/unit/Consts/clock.test.js +38 -0
  508. package/module/es5/tests/unit/Date/dayOfWeek.test.d.ts +1 -0
  509. package/module/es5/tests/unit/Date/dayOfWeek.test.js +39 -0
  510. package/module/es5/tests/unit/Date/deleteSpace.test.d.ts +1 -0
  511. package/module/es5/tests/unit/Date/deleteSpace.test.js +35 -0
  512. package/module/es5/tests/unit/Date/format.test.d.ts +1 -0
  513. package/module/es5/tests/unit/Date/format.test.js +28 -0
  514. package/module/es5/tests/unit/Date/getTimezoneOffsetString.test.d.ts +1 -0
  515. package/module/es5/tests/unit/Date/getTimezoneOffsetString.test.js +26 -0
  516. package/module/es5/tests/unit/Error/safeExecute.test.d.ts +1 -0
  517. package/module/es5/tests/unit/Error/safeExecute.test.js +21 -0
  518. package/module/es5/tests/unit/IP/cidrToLong.test.d.ts +1 -0
  519. package/module/es5/tests/unit/IP/cidrToLong.test.js +10 -0
  520. package/module/es5/tests/unit/IP/cidrToSubnetMask.test.d.ts +1 -0
  521. package/module/es5/tests/unit/IP/cidrToSubnetMask.test.js +17 -0
  522. package/module/es5/tests/unit/IP/getIpClass.test.d.ts +1 -0
  523. package/module/es5/tests/unit/IP/getIpClass.test.js +25 -0
  524. package/module/es5/tests/unit/IP/getNetworkAddress.test.d.ts +1 -0
  525. package/module/es5/tests/unit/IP/getNetworkAddress.test.js +19 -0
  526. package/module/es5/tests/unit/IP/ipToBinaryString.test.d.ts +1 -0
  527. package/module/es5/tests/unit/IP/ipToBinaryString.test.js +17 -0
  528. package/module/es5/tests/unit/IP/ipToLong.test.d.ts +1 -0
  529. package/module/es5/tests/unit/IP/ipToLong.test.js +20 -0
  530. package/module/es5/tests/unit/IP/isInRange.test.d.ts +1 -0
  531. package/module/es5/tests/unit/IP/isInRange.test.js +11 -0
  532. package/module/es5/tests/unit/IP/isPrivateIp.test.d.ts +1 -0
  533. package/module/es5/tests/unit/IP/isPrivateIp.test.js +20 -0
  534. package/module/es5/tests/unit/IP/subnetMaskToCidr.test.d.ts +1 -0
  535. package/module/es5/tests/unit/IP/subnetMaskToCidr.test.js +27 -0
  536. package/module/es5/tests/unit/Math/addition.test.d.ts +1 -0
  537. package/module/es5/tests/unit/Math/addition.test.js +79 -0
  538. package/module/es5/tests/unit/Math/average.test.d.ts +1 -0
  539. package/module/es5/tests/unit/Math/average.test.js +26 -0
  540. package/module/es5/tests/unit/Math/bitwise.test.d.ts +1 -0
  541. package/module/es5/tests/unit/Math/bitwise.test.js +62 -0
  542. package/module/es5/tests/unit/Math/calculator/calculator.test.d.ts +1 -0
  543. package/module/es5/tests/unit/Math/calculator/calculator.test.js +76 -0
  544. package/module/es5/tests/unit/Math/calculator/calculatorInitialization.test.d.ts +1 -0
  545. package/module/es5/tests/unit/Math/calculator/calculatorInitialization.test.js +10 -0
  546. package/module/es5/tests/unit/Math/calculator/convertCurrency.test.d.ts +1 -0
  547. package/module/es5/tests/unit/Math/calculator/convertCurrency.test.js +40 -0
  548. package/module/es5/tests/unit/Math/calculator/literalExpression.test.d.ts +1 -0
  549. package/module/es5/tests/unit/Math/calculator/literalExpression.test.js +51 -0
  550. package/module/es5/tests/unit/Math/degToRad.test.d.ts +1 -0
  551. package/module/es5/tests/unit/Math/degToRad.test.js +50 -0
  552. package/module/es5/tests/unit/Math/deviationValue.test.d.ts +1 -0
  553. package/module/es5/tests/unit/Math/deviationValue.test.js +30 -0
  554. package/module/es5/tests/unit/Math/division.test.d.ts +1 -0
  555. package/module/es5/tests/unit/Math/division.test.js +34 -0
  556. package/module/es5/tests/unit/Math/factorial.test.d.ts +1 -0
  557. package/module/es5/tests/unit/Math/factorial.test.js +26 -0
  558. package/module/es5/tests/unit/Math/factorize.test.d.ts +1 -0
  559. package/module/es5/tests/unit/Math/factorize.test.js +13 -0
  560. package/module/es5/tests/unit/Math/flexibleNumberConversion.test.d.ts +1 -0
  561. package/module/es5/tests/unit/Math/flexibleNumberConversion.test.js +195 -0
  562. package/module/es5/tests/unit/Math/gcd.test.d.ts +1 -0
  563. package/module/es5/tests/unit/Math/gcd.test.js +35 -0
  564. package/module/es5/tests/unit/Math/getDecimalLength.test.d.ts +1 -0
  565. package/module/es5/tests/unit/Math/getDecimalLength.test.js +8 -0
  566. package/module/es5/tests/unit/Math/lcm.test.d.ts +1 -0
  567. package/module/es5/tests/unit/Math/lcm.test.js +36 -0
  568. package/module/es5/tests/unit/Math/linearCongruentialGenerator.test.d.ts +1 -0
  569. package/module/es5/tests/unit/Math/linearCongruentialGenerator.test.js +25 -0
  570. package/module/es5/tests/unit/Math/mathConverter.test.d.ts +1 -0
  571. package/module/es5/tests/unit/Math/mathConverter.test.js +37 -0
  572. package/module/es5/tests/unit/Math/mathSeparator.test.d.ts +1 -0
  573. package/module/es5/tests/unit/Math/mathSeparator.test.js +41 -0
  574. package/module/es5/tests/unit/Math/max.test.d.ts +1 -0
  575. package/module/es5/tests/unit/Math/max.test.js +7 -0
  576. package/module/es5/tests/unit/Math/median.test.d.ts +1 -0
  577. package/module/es5/tests/unit/Math/median.test.js +17 -0
  578. package/module/es5/tests/unit/Math/min.test.d.ts +1 -0
  579. package/module/es5/tests/unit/Math/min.test.js +7 -0
  580. package/module/es5/tests/unit/Math/multiples.test.d.ts +1 -0
  581. package/module/es5/tests/unit/Math/multiples.test.js +14 -0
  582. package/module/es5/tests/unit/Math/multiplication.test.d.ts +1 -0
  583. package/module/es5/tests/unit/Math/multiplication.test.js +14 -0
  584. package/module/es5/tests/unit/Math/nCr.test.d.ts +1 -0
  585. package/module/es5/tests/unit/Math/nCr.test.js +21 -0
  586. package/module/es5/tests/unit/Math/nHr.test.d.ts +1 -0
  587. package/module/es5/tests/unit/Math/nHr.test.js +22 -0
  588. package/module/es5/tests/unit/Math/nPr.test.d.ts +1 -0
  589. package/module/es5/tests/unit/Math/nPr.test.js +21 -0
  590. package/module/es5/tests/unit/Math/primeFactorization.test.d.ts +1 -0
  591. package/module/es5/tests/unit/Math/primeFactorization.test.js +13 -0
  592. package/module/es5/tests/unit/Math/quotient.test.d.ts +1 -0
  593. package/module/es5/tests/unit/Math/quotient.test.js +14 -0
  594. package/module/es5/tests/unit/Math/radToDeg.test.d.ts +1 -0
  595. package/module/es5/tests/unit/Math/radToDeg.test.js +49 -0
  596. package/module/es5/tests/unit/Math/random.test.d.ts +1 -0
  597. package/module/es5/tests/unit/Math/random.test.js +23 -0
  598. package/module/es5/tests/unit/Math/reduce.test.d.ts +1 -0
  599. package/module/es5/tests/unit/Math/reduce.test.js +14 -0
  600. package/module/es5/tests/unit/Math/repeatedTrial.test.d.ts +1 -0
  601. package/module/es5/tests/unit/Math/repeatedTrial.test.js +9 -0
  602. package/module/es5/tests/unit/Math/roundOf.test.d.ts +1 -0
  603. package/module/es5/tests/unit/Math/roundOf.test.js +15 -0
  604. package/module/es5/tests/unit/Math/solveEquation.test.d.ts +1 -0
  605. package/module/es5/tests/unit/Math/solveEquation.test.js +24 -0
  606. package/module/es5/tests/unit/Math/standardDeviation.test.d.ts +1 -0
  607. package/module/es5/tests/unit/Math/standardDeviation.test.js +6 -0
  608. package/module/es5/tests/unit/Math/subtract.test.d.ts +1 -0
  609. package/module/es5/tests/unit/Math/subtract.test.js +34 -0
  610. package/module/es5/tests/unit/Math/toBaseN.test.d.ts +1 -0
  611. package/module/es5/tests/unit/Math/toBaseN.test.js +23 -0
  612. package/module/es5/tests/unit/Math/toCelsius.test.d.ts +1 -0
  613. package/module/es5/tests/unit/Math/toCelsius.test.js +6 -0
  614. package/module/es5/tests/unit/Math/toKelvin.test.d.ts +1 -0
  615. package/module/es5/tests/unit/Math/toKelvin.test.js +6 -0
  616. package/module/es5/tests/unit/Math/uuidv7.test.d.ts +1 -0
  617. package/module/es5/tests/unit/Math/uuidv7.test.js +33 -0
  618. package/module/es5/tests/unit/Math/valueSwap.test.d.ts +1 -0
  619. package/module/es5/tests/unit/Math/valueSwap.test.js +10 -0
  620. package/module/es5/tests/unit/Math/xoshiro256.test.d.ts +1 -0
  621. package/module/es5/tests/unit/Math/xoshiro256.test.js +22 -0
  622. package/module/es5/tests/unit/Object/has.test.d.ts +1 -0
  623. package/module/es5/tests/unit/Object/has.test.js +60 -0
  624. package/module/es5/tests/unit/Object/keyBy.test.d.ts +1 -0
  625. package/module/es5/tests/unit/Object/keyBy.test.js +120 -0
  626. package/module/es5/tests/unit/Object/pick.test.d.ts +1 -0
  627. package/module/es5/tests/unit/Object/pick.test.js +109 -0
  628. package/module/es5/tests/unit/Object/pickDeep.test.d.ts +1 -0
  629. package/module/es5/tests/unit/Object/pickDeep.test.js +222 -0
  630. package/module/es5/tests/unit/Simple/Array/quickSortSimple.test.d.ts +1 -0
  631. package/module/es5/tests/unit/Simple/Array/quickSortSimple.test.js +18 -0
  632. package/module/es5/tests/unit/Simple/Date/dayOfWeekSimple.test.d.ts +1 -0
  633. package/module/es5/tests/unit/Simple/Date/dayOfWeekSimple.test.js +58 -0
  634. package/module/es5/tests/unit/Simple/Math/deviationValueSimple.test.d.ts +1 -0
  635. package/module/es5/tests/unit/Simple/Math/deviationValueSimple.test.js +7 -0
  636. package/module/es5/tests/unit/String/formatString.test.d.ts +1 -0
  637. package/module/es5/tests/unit/String/formatString.test.js +20 -0
  638. package/module/es5/tests/unit/String/fromBase64.test.d.ts +1 -0
  639. package/module/es5/tests/unit/String/fromBase64.test.js +26 -0
  640. package/module/es5/tests/unit/String/hasNoLetters.test.d.ts +1 -0
  641. package/module/es5/tests/unit/String/hasNoLetters.test.js +33 -0
  642. package/module/es5/tests/unit/String/padEnd.test.d.ts +1 -0
  643. package/module/es5/tests/unit/String/padEnd.test.js +22 -0
  644. package/module/es5/tests/unit/String/padStart.test.d.ts +1 -0
  645. package/module/es5/tests/unit/String/padStart.test.js +27 -0
  646. package/module/es5/tests/unit/String/randomString.test.d.ts +1 -0
  647. package/module/es5/tests/unit/String/randomString.test.js +21 -0
  648. package/module/es5/tests/unit/String/randomStringInitialization.test.d.ts +1 -0
  649. package/module/es5/tests/unit/String/randomStringInitialization.test.js +25 -0
  650. package/module/es5/tests/unit/String/reverseString.test.d.ts +1 -0
  651. package/module/es5/tests/unit/String/reverseString.test.js +37 -0
  652. package/module/es5/tests/unit/String/toBase64.test.d.ts +1 -0
  653. package/module/es5/tests/unit/String/toBase64.test.js +20 -0
  654. package/module/es5/tests/unit/String/toHalfWidth.test.d.ts +1 -0
  655. package/module/es5/tests/unit/String/toHalfWidth.test.js +16 -0
  656. package/module/es5/tests/unit/String/trimCharacters.test.d.ts +1 -0
  657. package/module/es5/tests/unit/String/trimCharacters.test.js +17 -0
  658. package/module/es5/tests/unit/String/trimEndCharacters.test.d.ts +1 -0
  659. package/module/es5/tests/unit/String/trimEndCharacters.test.js +23 -0
  660. package/module/es5/tests/unit/String/trimStartCharacters.test.d.ts +1 -0
  661. package/module/es5/tests/unit/String/trimStartCharacters.test.js +20 -0
  662. package/module/es5/tests/unit/Time/convertTime.test.d.ts +1 -0
  663. package/module/es5/tests/unit/Time/convertTime.test.js +43 -0
  664. package/module/es5/tests/unit/Tool/createPipeline.test.d.ts +1 -0
  665. package/module/es5/tests/unit/Tool/createPipeline.test.js +184 -0
  666. package/module/es5/tests/unit/Tool/parseJson.test.d.ts +1 -0
  667. package/module/es5/tests/unit/Tool/parseJson.test.js +46 -0
  668. package/module/es5/tests/unit/UA/parseUserAgent.test.d.ts +1 -0
  669. package/module/es5/tests/unit/UA/parseUserAgent.test.js +95 -0
  670. package/module/es5/tests/unit/Validate/array/core.test.d.ts +1 -0
  671. package/module/es5/tests/unit/Validate/array/core.test.js +57 -0
  672. package/module/es5/tests/unit/Validate/boolean/core.test.d.ts +1 -0
  673. package/module/es5/tests/unit/Validate/boolean/core.test.js +29 -0
  674. package/module/es5/tests/unit/Validate/isArray.test.d.ts +1 -0
  675. package/module/es5/tests/unit/Validate/isArray.test.js +25 -0
  676. package/module/es5/tests/unit/Validate/isDouble.test.d.ts +1 -0
  677. package/module/es5/tests/unit/Validate/isDouble.test.js +30 -0
  678. package/module/es5/tests/unit/Validate/isNotEmpty.test.d.ts +1 -0
  679. package/module/es5/tests/unit/Validate/isNotEmpty.test.js +43 -0
  680. package/module/es5/tests/unit/Validate/isNumber.test.d.ts +1 -0
  681. package/module/es5/tests/unit/Validate/isNumber.test.js +39 -0
  682. package/module/es5/tests/unit/Validate/isObject.test.d.ts +1 -0
  683. package/module/es5/tests/unit/Validate/isObject.test.js +48 -0
  684. package/module/es5/tests/unit/Validate/isPerfectSquare.test.d.ts +1 -0
  685. package/module/es5/tests/unit/Validate/isPerfectSquare.test.js +22 -0
  686. package/module/es5/tests/unit/Validate/isPrimeNumber.test.d.ts +1 -0
  687. package/module/es5/tests/unit/Validate/isPrimeNumber.test.js +41 -0
  688. package/module/es5/tests/unit/Validate/isValueNaN.test.d.ts +1 -0
  689. package/module/es5/tests/unit/Validate/isValueNaN.test.js +15 -0
  690. package/module/es5/tests/unit/Validate/number/core.test.d.ts +1 -0
  691. package/module/es5/tests/unit/Validate/number/core.test.js +36 -0
  692. package/module/es5/tests/unit/Validate/number/double.test.d.ts +1 -0
  693. package/module/es5/tests/unit/Validate/number/double.test.js +23 -0
  694. package/module/es5/tests/unit/Validate/number/even.test.d.ts +1 -0
  695. package/module/es5/tests/unit/Validate/number/even.test.js +23 -0
  696. package/module/es5/tests/unit/Validate/number/maxValue.test.d.ts +1 -0
  697. package/module/es5/tests/unit/Validate/number/maxValue.test.js +20 -0
  698. package/module/es5/tests/unit/Validate/number/minValue.test.d.ts +1 -0
  699. package/module/es5/tests/unit/Validate/number/minValue.test.js +20 -0
  700. package/module/es5/tests/unit/Validate/number/odd.test.d.ts +1 -0
  701. package/module/es5/tests/unit/Validate/number/odd.test.js +23 -0
  702. package/module/es5/tests/unit/Validate/number/prime.test.d.ts +1 -0
  703. package/module/es5/tests/unit/Validate/number/prime.test.js +25 -0
  704. package/module/es5/tests/unit/Validate/object/core.test.d.ts +1 -0
  705. package/module/es5/tests/unit/Validate/object/core.test.js +79 -0
  706. package/module/es5/tests/unit/Validate/string/core.test.d.ts +1 -0
  707. package/module/es5/tests/unit/Validate/string/core.test.js +27 -0
  708. package/module/es5/tests/unit/Validate/string/email.test.d.ts +1 -0
  709. package/module/es5/tests/unit/Validate/string/email.test.js +21 -0
  710. package/module/es5/tests/unit/Validate/string/length.test.d.ts +1 -0
  711. package/module/es5/tests/unit/Validate/string/length.test.js +18 -0
  712. package/module/es5/tests/unit/Validate/string/maxLength.test.d.ts +1 -0
  713. package/module/es5/tests/unit/Validate/string/maxLength.test.js +18 -0
  714. package/module/es5/tests/unit/Validate/string/minLength.test.d.ts +1 -0
  715. package/module/es5/tests/unit/Validate/string/minLength.test.js +18 -0
  716. package/module/es5/tests/unit/Validate/string/numberString.test.d.ts +1 -0
  717. package/module/es5/tests/unit/Validate/string/numberString.test.js +22 -0
  718. package/module/es5/tests/unit/Validate/string/regexMatch.test.d.ts +1 -0
  719. package/module/es5/tests/unit/Validate/string/regexMatch.test.js +29 -0
  720. package/module/es5/tests/unit/Validate/string/uuid.test.d.ts +1 -0
  721. package/module/es5/tests/unit/Validate/string/uuid.test.js +72 -0
  722. package/module/es5/tests/unit/types/arrayType.test.d.ts +1 -0
  723. package/module/es5/tests/unit/types/arrayType.test.js +11 -0
  724. package/module/es5/tests/unit/types/clockType.test.d.ts +1 -0
  725. package/module/es5/tests/unit/types/clockType.test.js +37 -0
  726. package/module/es5/tsconfig.tsbuildinfo +1 -0
  727. package/module/es5/types/array/chunk.d.ts +4 -0
  728. package/module/es5/types/array/chunk.js +5 -0
  729. package/module/es5/types/array/index.d.ts +2 -0
  730. package/module/es5/types/array/index.js +27 -0
  731. package/module/es5/types/array/zip.d.ts +3 -0
  732. package/module/es5/types/array/zip.js +5 -0
  733. package/module/es5/types/clock/hoursAm.d.ts +2 -0
  734. package/module/es5/types/clock/hoursAm.js +5 -0
  735. package/module/es5/types/clock/hoursAmInt.d.ts +2 -0
  736. package/module/es5/types/clock/hoursAmInt.js +5 -0
  737. package/module/es5/types/clock/hoursPm.d.ts +2 -0
  738. package/module/es5/types/clock/hoursPm.js +5 -0
  739. package/module/es5/types/clock/hoursPmInt.d.ts +1 -0
  740. package/module/es5/types/clock/hoursPmInt.js +5 -0
  741. package/module/es5/types/clock/hoursType.d.ts +3 -0
  742. package/module/es5/types/clock/hoursType.js +5 -0
  743. package/module/es5/types/clock/hoursTypeInt.d.ts +3 -0
  744. package/module/es5/types/clock/hoursTypeInt.js +5 -0
  745. package/module/es5/types/clock/index.d.ts +12 -0
  746. package/module/es5/types/clock/index.js +137 -0
  747. package/module/es5/types/clock/millisecondsType.d.ts +4 -0
  748. package/module/es5/types/clock/millisecondsType.js +5 -0
  749. package/module/es5/types/clock/millisecondsTypeInt.d.ts +4 -0
  750. package/module/es5/types/clock/millisecondsTypeInt.js +5 -0
  751. package/module/es5/types/clock/minutesType.d.ts +7 -0
  752. package/module/es5/types/clock/minutesType.js +5 -0
  753. package/module/es5/types/clock/minutesTypeInt.d.ts +7 -0
  754. package/module/es5/types/clock/minutesTypeInt.js +5 -0
  755. package/module/es5/types/clock/secondsType.d.ts +2 -0
  756. package/module/es5/types/clock/secondsType.js +5 -0
  757. package/module/es5/types/clock/secondsTypeInt.d.ts +2 -0
  758. package/module/es5/types/clock/secondsTypeInt.js +5 -0
  759. package/module/es5/types/date/convertMonTypeNoZero.d.ts +1 -0
  760. package/module/es5/types/date/convertMonTypeNoZero.js +5 -0
  761. package/module/es5/types/date/convertMonTypeZero.d.ts +1 -0
  762. package/module/es5/types/date/convertMonTypeZero.js +5 -0
  763. package/module/es5/types/date/dateType.d.ts +6 -0
  764. package/module/es5/types/date/dateType.js +5 -0
  765. package/module/es5/types/date/dayType.d.ts +2 -0
  766. package/module/es5/types/date/dayType.js +5 -0
  767. package/module/es5/types/date/dayTypeInt.d.ts +2 -0
  768. package/module/es5/types/date/dayTypeInt.js +5 -0
  769. package/module/es5/types/date/index.d.ts +13 -0
  770. package/module/es5/types/date/index.js +148 -0
  771. package/module/es5/types/date/monType.d.ts +3 -0
  772. package/module/es5/types/date/monType.js +5 -0
  773. package/module/es5/types/date/monTypeInt.d.ts +1 -0
  774. package/module/es5/types/date/monTypeInt.js +5 -0
  775. package/module/es5/types/date/monTypeNoZero.d.ts +1 -0
  776. package/module/es5/types/date/monTypeNoZero.js +5 -0
  777. package/module/es5/types/date/monTypeZero.d.ts +1 -0
  778. package/module/es5/types/date/monTypeZero.js +5 -0
  779. package/module/es5/types/date/monthsWith31Days.d.ts +2 -0
  780. package/module/es5/types/date/monthsWith31Days.js +5 -0
  781. package/module/es5/types/date/monthsWith31DaysInt.d.ts +1 -0
  782. package/module/es5/types/date/monthsWith31DaysInt.js +5 -0
  783. package/module/es5/types/date/monthsWithout31Days.d.ts +2 -0
  784. package/module/es5/types/date/monthsWithout31Days.js +5 -0
  785. package/module/es5/types/date/monthsWithout31DaysInt.d.ts +1 -0
  786. package/module/es5/types/date/monthsWithout31DaysInt.js +5 -0
  787. package/module/es5/types/index.d.ts +10 -0
  788. package/module/es5/types/index.js +115 -0
  789. package/module/es5/types/int/doubleDigit.d.ts +2 -0
  790. package/module/es5/types/int/doubleDigit.js +5 -0
  791. package/module/es5/types/int/doubleDigitInt.d.ts +10 -0
  792. package/module/es5/types/int/doubleDigitInt.js +5 -0
  793. package/module/es5/types/int/fourDigit.d.ts +3 -0
  794. package/module/es5/types/int/fourDigit.js +5 -0
  795. package/module/es5/types/int/index.d.ts +108 -0
  796. package/module/es5/types/int/index.js +1193 -0
  797. package/module/es5/types/int/int.d.ts +3 -0
  798. package/module/es5/types/int/int.js +5 -0
  799. package/module/es5/types/int/intEven.d.ts +1 -0
  800. package/module/es5/types/int/intEven.js +5 -0
  801. package/module/es5/types/int/intOdd.d.ts +1 -0
  802. package/module/es5/types/int/intOdd.js +5 -0
  803. package/module/es5/types/int/intWithoutZero.d.ts +3 -0
  804. package/module/es5/types/int/intWithoutZero.js +5 -0
  805. package/module/es5/types/int/tripleDigit.d.ts +2 -0
  806. package/module/es5/types/int/tripleDigit.js +5 -0
  807. package/module/es5/types/int/tripleDigitInt.d.ts +91 -0
  808. package/module/es5/types/int/tripleDigitInt.js +5 -0
  809. package/module/es5/types/int/upToEightHundred.d.ts +1 -0
  810. package/module/es5/types/int/upToEightHundred.js +5 -0
  811. package/module/es5/types/int/upToEightHundredEighty.d.ts +1 -0
  812. package/module/es5/types/int/upToEightHundredEighty.js +5 -0
  813. package/module/es5/types/int/upToEightHundredFifty.d.ts +1 -0
  814. package/module/es5/types/int/upToEightHundredFifty.js +5 -0
  815. package/module/es5/types/int/upToEightHundredForty.d.ts +1 -0
  816. package/module/es5/types/int/upToEightHundredForty.js +5 -0
  817. package/module/es5/types/int/upToEightHundredNinety.d.ts +1 -0
  818. package/module/es5/types/int/upToEightHundredNinety.js +5 -0
  819. package/module/es5/types/int/upToEightHundredSeventy.d.ts +1 -0
  820. package/module/es5/types/int/upToEightHundredSeventy.js +5 -0
  821. package/module/es5/types/int/upToEightHundredSixty.d.ts +1 -0
  822. package/module/es5/types/int/upToEightHundredSixty.js +5 -0
  823. package/module/es5/types/int/upToEightHundredTen.d.ts +1 -0
  824. package/module/es5/types/int/upToEightHundredTen.js +5 -0
  825. package/module/es5/types/int/upToEightHundredThirty.d.ts +1 -0
  826. package/module/es5/types/int/upToEightHundredThirty.js +5 -0
  827. package/module/es5/types/int/upToEightHundredTwenty.d.ts +1 -0
  828. package/module/es5/types/int/upToEightHundredTwenty.js +5 -0
  829. package/module/es5/types/int/upToEighty.d.ts +1 -0
  830. package/module/es5/types/int/upToEighty.js +5 -0
  831. package/module/es5/types/int/upToFifty.d.ts +1 -0
  832. package/module/es5/types/int/upToFifty.js +5 -0
  833. package/module/es5/types/int/upToFiveHundred.d.ts +1 -0
  834. package/module/es5/types/int/upToFiveHundred.js +5 -0
  835. package/module/es5/types/int/upToFiveHundredEighty.d.ts +1 -0
  836. package/module/es5/types/int/upToFiveHundredEighty.js +5 -0
  837. package/module/es5/types/int/upToFiveHundredFifty.d.ts +1 -0
  838. package/module/es5/types/int/upToFiveHundredFifty.js +5 -0
  839. package/module/es5/types/int/upToFiveHundredForty.d.ts +1 -0
  840. package/module/es5/types/int/upToFiveHundredForty.js +5 -0
  841. package/module/es5/types/int/upToFiveHundredNinety.d.ts +1 -0
  842. package/module/es5/types/int/upToFiveHundredNinety.js +5 -0
  843. package/module/es5/types/int/upToFiveHundredSeventy.d.ts +1 -0
  844. package/module/es5/types/int/upToFiveHundredSeventy.js +5 -0
  845. package/module/es5/types/int/upToFiveHundredSixty.d.ts +1 -0
  846. package/module/es5/types/int/upToFiveHundredSixty.js +5 -0
  847. package/module/es5/types/int/upToFiveHundredTen.d.ts +1 -0
  848. package/module/es5/types/int/upToFiveHundredTen.js +5 -0
  849. package/module/es5/types/int/upToFiveHundredThirty.d.ts +1 -0
  850. package/module/es5/types/int/upToFiveHundredThirty.js +5 -0
  851. package/module/es5/types/int/upToFiveHundredTwenty.d.ts +1 -0
  852. package/module/es5/types/int/upToFiveHundredTwenty.js +5 -0
  853. package/module/es5/types/int/upToForty.d.ts +1 -0
  854. package/module/es5/types/int/upToForty.js +5 -0
  855. package/module/es5/types/int/upToFourHundred.d.ts +1 -0
  856. package/module/es5/types/int/upToFourHundred.js +5 -0
  857. package/module/es5/types/int/upToFourHundredEighty.d.ts +1 -0
  858. package/module/es5/types/int/upToFourHundredEighty.js +5 -0
  859. package/module/es5/types/int/upToFourHundredFifty.d.ts +1 -0
  860. package/module/es5/types/int/upToFourHundredFifty.js +5 -0
  861. package/module/es5/types/int/upToFourHundredForty.d.ts +1 -0
  862. package/module/es5/types/int/upToFourHundredForty.js +5 -0
  863. package/module/es5/types/int/upToFourHundredNinety.d.ts +1 -0
  864. package/module/es5/types/int/upToFourHundredNinety.js +5 -0
  865. package/module/es5/types/int/upToFourHundredSeventy.d.ts +1 -0
  866. package/module/es5/types/int/upToFourHundredSeventy.js +5 -0
  867. package/module/es5/types/int/upToFourHundredSixty.d.ts +1 -0
  868. package/module/es5/types/int/upToFourHundredSixty.js +5 -0
  869. package/module/es5/types/int/upToFourHundredTen.d.ts +1 -0
  870. package/module/es5/types/int/upToFourHundredTen.js +5 -0
  871. package/module/es5/types/int/upToFourHundredThirty.d.ts +1 -0
  872. package/module/es5/types/int/upToFourHundredThirty.js +5 -0
  873. package/module/es5/types/int/upToFourHundredTwenty.d.ts +1 -0
  874. package/module/es5/types/int/upToFourHundredTwenty.js +5 -0
  875. package/module/es5/types/int/upToHundredEighty.d.ts +1 -0
  876. package/module/es5/types/int/upToHundredEighty.js +5 -0
  877. package/module/es5/types/int/upToHundredFifty.d.ts +1 -0
  878. package/module/es5/types/int/upToHundredFifty.js +5 -0
  879. package/module/es5/types/int/upToHundredForty.d.ts +1 -0
  880. package/module/es5/types/int/upToHundredForty.js +5 -0
  881. package/module/es5/types/int/upToHundredNinety.d.ts +1 -0
  882. package/module/es5/types/int/upToHundredNinety.js +5 -0
  883. package/module/es5/types/int/upToHundredSeventy.d.ts +1 -0
  884. package/module/es5/types/int/upToHundredSeventy.js +5 -0
  885. package/module/es5/types/int/upToHundredSixty.d.ts +1 -0
  886. package/module/es5/types/int/upToHundredSixty.js +5 -0
  887. package/module/es5/types/int/upToHundredTen.d.ts +1 -0
  888. package/module/es5/types/int/upToHundredTen.js +5 -0
  889. package/module/es5/types/int/upToHundredThirty.d.ts +1 -0
  890. package/module/es5/types/int/upToHundredThirty.js +5 -0
  891. package/module/es5/types/int/upToHundredTwenty.d.ts +1 -0
  892. package/module/es5/types/int/upToHundredTwenty.js +5 -0
  893. package/module/es5/types/int/upToNineHundred.d.ts +1 -0
  894. package/module/es5/types/int/upToNineHundred.js +5 -0
  895. package/module/es5/types/int/upToNineHundredEighty.d.ts +1 -0
  896. package/module/es5/types/int/upToNineHundredEighty.js +5 -0
  897. package/module/es5/types/int/upToNineHundredFifty.d.ts +1 -0
  898. package/module/es5/types/int/upToNineHundredFifty.js +5 -0
  899. package/module/es5/types/int/upToNineHundredForty.d.ts +1 -0
  900. package/module/es5/types/int/upToNineHundredForty.js +5 -0
  901. package/module/es5/types/int/upToNineHundredNinety.d.ts +1 -0
  902. package/module/es5/types/int/upToNineHundredNinety.js +5 -0
  903. package/module/es5/types/int/upToNineHundredNinetyNine.d.ts +1 -0
  904. package/module/es5/types/int/upToNineHundredNinetyNine.js +5 -0
  905. package/module/es5/types/int/upToNineHundredSeventy.d.ts +1 -0
  906. package/module/es5/types/int/upToNineHundredSeventy.js +5 -0
  907. package/module/es5/types/int/upToNineHundredSixty.d.ts +1 -0
  908. package/module/es5/types/int/upToNineHundredSixty.js +5 -0
  909. package/module/es5/types/int/upToNineHundredTen.d.ts +1 -0
  910. package/module/es5/types/int/upToNineHundredTen.js +5 -0
  911. package/module/es5/types/int/upToNineHundredThirty.d.ts +1 -0
  912. package/module/es5/types/int/upToNineHundredThirty.js +5 -0
  913. package/module/es5/types/int/upToNineHundredTwenty.d.ts +1 -0
  914. package/module/es5/types/int/upToNineHundredTwenty.js +5 -0
  915. package/module/es5/types/int/upToNinety.d.ts +1 -0
  916. package/module/es5/types/int/upToNinety.js +5 -0
  917. package/module/es5/types/int/upToNinetyNine.d.ts +1 -0
  918. package/module/es5/types/int/upToNinetyNine.js +5 -0
  919. package/module/es5/types/int/upToSevenHundred.d.ts +1 -0
  920. package/module/es5/types/int/upToSevenHundred.js +5 -0
  921. package/module/es5/types/int/upToSevenHundredEighty.d.ts +1 -0
  922. package/module/es5/types/int/upToSevenHundredEighty.js +5 -0
  923. package/module/es5/types/int/upToSevenHundredFifty.d.ts +1 -0
  924. package/module/es5/types/int/upToSevenHundredFifty.js +5 -0
  925. package/module/es5/types/int/upToSevenHundredForty.d.ts +1 -0
  926. package/module/es5/types/int/upToSevenHundredForty.js +5 -0
  927. package/module/es5/types/int/upToSevenHundredNinety.d.ts +1 -0
  928. package/module/es5/types/int/upToSevenHundredNinety.js +5 -0
  929. package/module/es5/types/int/upToSevenHundredSeventy.d.ts +1 -0
  930. package/module/es5/types/int/upToSevenHundredSeventy.js +5 -0
  931. package/module/es5/types/int/upToSevenHundredSixty.d.ts +1 -0
  932. package/module/es5/types/int/upToSevenHundredSixty.js +5 -0
  933. package/module/es5/types/int/upToSevenHundredTen.d.ts +1 -0
  934. package/module/es5/types/int/upToSevenHundredTen.js +5 -0
  935. package/module/es5/types/int/upToSevenHundredThirty.d.ts +1 -0
  936. package/module/es5/types/int/upToSevenHundredThirty.js +5 -0
  937. package/module/es5/types/int/upToSevenHundredTwenty.d.ts +1 -0
  938. package/module/es5/types/int/upToSevenHundredTwenty.js +5 -0
  939. package/module/es5/types/int/upToSeventy.d.ts +1 -0
  940. package/module/es5/types/int/upToSeventy.js +5 -0
  941. package/module/es5/types/int/upToSixHundred.d.ts +1 -0
  942. package/module/es5/types/int/upToSixHundred.js +5 -0
  943. package/module/es5/types/int/upToSixHundredEighty.d.ts +1 -0
  944. package/module/es5/types/int/upToSixHundredEighty.js +5 -0
  945. package/module/es5/types/int/upToSixHundredFifty.d.ts +1 -0
  946. package/module/es5/types/int/upToSixHundredFifty.js +5 -0
  947. package/module/es5/types/int/upToSixHundredForty.d.ts +1 -0
  948. package/module/es5/types/int/upToSixHundredForty.js +5 -0
  949. package/module/es5/types/int/upToSixHundredNinety.d.ts +1 -0
  950. package/module/es5/types/int/upToSixHundredNinety.js +5 -0
  951. package/module/es5/types/int/upToSixHundredSeventy.d.ts +1 -0
  952. package/module/es5/types/int/upToSixHundredSeventy.js +5 -0
  953. package/module/es5/types/int/upToSixHundredSixty.d.ts +1 -0
  954. package/module/es5/types/int/upToSixHundredSixty.js +5 -0
  955. package/module/es5/types/int/upToSixHundredTen.d.ts +1 -0
  956. package/module/es5/types/int/upToSixHundredTen.js +5 -0
  957. package/module/es5/types/int/upToSixHundredThirty.d.ts +1 -0
  958. package/module/es5/types/int/upToSixHundredThirty.js +5 -0
  959. package/module/es5/types/int/upToSixHundredTwenty.d.ts +1 -0
  960. package/module/es5/types/int/upToSixHundredTwenty.js +5 -0
  961. package/module/es5/types/int/upToSixty.d.ts +1 -0
  962. package/module/es5/types/int/upToSixty.js +5 -0
  963. package/module/es5/types/int/upToThirty.d.ts +1 -0
  964. package/module/es5/types/int/upToThirty.js +5 -0
  965. package/module/es5/types/int/upToThreeHundred.d.ts +1 -0
  966. package/module/es5/types/int/upToThreeHundred.js +5 -0
  967. package/module/es5/types/int/upToThreeHundredEighty.d.ts +1 -0
  968. package/module/es5/types/int/upToThreeHundredEighty.js +5 -0
  969. package/module/es5/types/int/upToThreeHundredFifty.d.ts +1 -0
  970. package/module/es5/types/int/upToThreeHundredFifty.js +5 -0
  971. package/module/es5/types/int/upToThreeHundredForty.d.ts +1 -0
  972. package/module/es5/types/int/upToThreeHundredForty.js +5 -0
  973. package/module/es5/types/int/upToThreeHundredNinety.d.ts +1 -0
  974. package/module/es5/types/int/upToThreeHundredNinety.js +5 -0
  975. package/module/es5/types/int/upToThreeHundredSeventy.d.ts +1 -0
  976. package/module/es5/types/int/upToThreeHundredSeventy.js +5 -0
  977. package/module/es5/types/int/upToThreeHundredSixty.d.ts +1 -0
  978. package/module/es5/types/int/upToThreeHundredSixty.js +5 -0
  979. package/module/es5/types/int/upToThreeHundredTen.d.ts +1 -0
  980. package/module/es5/types/int/upToThreeHundredTen.js +5 -0
  981. package/module/es5/types/int/upToThreeHundredThirty.d.ts +1 -0
  982. package/module/es5/types/int/upToThreeHundredThirty.js +5 -0
  983. package/module/es5/types/int/upToThreeHundredTwenty.d.ts +1 -0
  984. package/module/es5/types/int/upToThreeHundredTwenty.js +5 -0
  985. package/module/es5/types/int/upToTwenty.d.ts +1 -0
  986. package/module/es5/types/int/upToTwenty.js +5 -0
  987. package/module/es5/types/int/upToTwoHundred.d.ts +1 -0
  988. package/module/es5/types/int/upToTwoHundred.js +5 -0
  989. package/module/es5/types/int/upToTwoHundredEighty.d.ts +1 -0
  990. package/module/es5/types/int/upToTwoHundredEighty.js +5 -0
  991. package/module/es5/types/int/upToTwoHundredFifty.d.ts +1 -0
  992. package/module/es5/types/int/upToTwoHundredFifty.js +5 -0
  993. package/module/es5/types/int/upToTwoHundredForty.d.ts +1 -0
  994. package/module/es5/types/int/upToTwoHundredForty.js +5 -0
  995. package/module/es5/types/int/upToTwoHundredNinety.d.ts +1 -0
  996. package/module/es5/types/int/upToTwoHundredNinety.js +5 -0
  997. package/module/es5/types/int/upToTwoHundredSeventy.d.ts +1 -0
  998. package/module/es5/types/int/upToTwoHundredSeventy.js +5 -0
  999. package/module/es5/types/int/upToTwoHundredSixty.d.ts +1 -0
  1000. package/module/es5/types/int/upToTwoHundredSixty.js +5 -0
  1001. package/module/es5/types/int/upToTwoHundredTen.d.ts +1 -0
  1002. package/module/es5/types/int/upToTwoHundredTen.js +5 -0
  1003. package/module/es5/types/int/upToTwoHundredThirty.d.ts +1 -0
  1004. package/module/es5/types/int/upToTwoHundredThirty.js +5 -0
  1005. package/module/es5/types/int/upToTwoHundredTwenty.d.ts +1 -0
  1006. package/module/es5/types/int/upToTwoHundredTwenty.js +5 -0
  1007. package/module/es5/types/joke/index.d.ts +1 -0
  1008. package/module/es5/types/joke/index.js +16 -0
  1009. package/module/es5/types/joke/threeStepsForwardTwoStepsBack.d.ts +4 -0
  1010. package/module/es5/types/joke/threeStepsForwardTwoStepsBack.js +5 -0
  1011. package/module/es5/types/logic/and.d.ts +2 -0
  1012. package/module/es5/types/logic/and.js +5 -0
  1013. package/module/es5/types/logic/arrayReverse.d.ts +1 -0
  1014. package/module/es5/types/logic/arrayReverse.js +5 -0
  1015. package/module/es5/types/logic/arrayToUnion.d.ts +1 -0
  1016. package/module/es5/types/logic/arrayToUnion.js +5 -0
  1017. package/module/es5/types/logic/bGreaterThanA.d.ts +4 -0
  1018. package/module/es5/types/logic/bGreaterThanA.js +5 -0
  1019. package/module/es5/types/logic/binary1bitAnd.js +5 -0
  1020. package/module/es5/types/logic/binary1bitNand.js +5 -0
  1021. package/module/es5/types/logic/binary1bitNor.js +5 -0
  1022. package/module/es5/types/logic/binary1bitOr.js +5 -0
  1023. package/module/es5/types/logic/binary1bitXnor.js +5 -0
  1024. package/module/es5/types/logic/binary1bitXor.js +5 -0
  1025. package/module/es5/types/logic/binaryAbs.d.ts +2 -0
  1026. package/module/es5/types/logic/binaryAbs.js +5 -0
  1027. package/module/es5/types/logic/binaryAdd.d.ts +4 -0
  1028. package/module/es5/types/logic/binaryAdd.js +5 -0
  1029. package/module/es5/types/logic/binaryAnd.js +5 -0
  1030. package/module/es5/types/logic/binaryComplement.d.ts +4 -0
  1031. package/module/es5/types/logic/binaryComplement.js +5 -0
  1032. package/module/es5/types/logic/binaryFullAdder.d.ts +9 -0
  1033. package/module/es5/types/logic/binaryFullAdder.js +5 -0
  1034. package/module/es5/types/logic/binaryHalfAdder.d.ts +4 -0
  1035. package/module/es5/types/logic/binaryHalfAdder.js +5 -0
  1036. package/module/es5/types/logic/binaryNComplement.d.ts +7 -0
  1037. package/module/es5/types/logic/binaryNComplement.js +5 -0
  1038. package/module/es5/types/logic/binaryNand.js +5 -0
  1039. package/module/es5/types/logic/binaryNor.js +5 -0
  1040. package/module/es5/types/logic/binaryNot.js +5 -0
  1041. package/module/es5/types/logic/binaryOr.js +5 -0
  1042. package/module/es5/types/logic/binaryToDecimal.d.ts +6 -0
  1043. package/module/es5/types/logic/binaryToDecimal.js +5 -0
  1044. package/module/es5/types/logic/binaryToHex.d.ts +5 -0
  1045. package/module/es5/types/logic/binaryToHex.js +5 -0
  1046. package/module/es5/types/logic/binaryXnor.js +5 -0
  1047. package/module/es5/types/logic/binaryXor.js +5 -0
  1048. package/module/es5/types/logic/capitalize.d.ts +1 -0
  1049. package/module/es5/types/logic/capitalize.js +5 -0
  1050. package/module/{types/logic/decimal1biteTobinary.d.ts → es5/types/logic/decimal1byteTobinary.d.ts} +1 -1
  1051. package/module/es5/types/logic/decimal1byteTobinary.js +5 -0
  1052. package/module/es5/types/logic/decimal4bitToHex.d.ts +1 -0
  1053. package/module/es5/types/logic/decimal4bitToHex.js +5 -0
  1054. package/module/es5/types/logic/decimal4bitTobinary.d.ts +1 -0
  1055. package/module/es5/types/logic/decimal4bitTobinary.js +5 -0
  1056. package/module/es5/types/logic/equal.d.ts +1 -0
  1057. package/module/es5/types/logic/equal.js +5 -0
  1058. package/module/es5/types/logic/first.d.ts +1 -0
  1059. package/module/es5/types/logic/first.js +5 -0
  1060. package/module/es5/types/logic/first8Chars.d.ts +11 -0
  1061. package/module/es5/types/logic/first8Chars.js +5 -0
  1062. package/module/es5/types/logic/firstNChars.d.ts +1 -0
  1063. package/module/es5/types/logic/firstNChars.js +5 -0
  1064. package/module/es5/types/logic/hex4bitToDecimal.d.ts +1 -0
  1065. package/module/es5/types/logic/hex4bitToDecimal.js +5 -0
  1066. package/module/es5/types/logic/hexToBinary.d.ts +5 -0
  1067. package/module/es5/types/logic/hexToBinary.js +5 -0
  1068. package/module/es5/types/logic/if.d.ts +1 -0
  1069. package/module/es5/types/logic/if.js +5 -0
  1070. package/module/es5/types/logic/imply.d.ts +3 -0
  1071. package/module/es5/types/logic/imply.js +5 -0
  1072. package/module/es5/types/logic/index.d.ts +59 -0
  1073. package/module/es5/types/logic/index.js +654 -0
  1074. package/module/es5/types/logic/isAny.d.ts +1 -0
  1075. package/module/es5/types/logic/isAny.js +5 -0
  1076. package/module/es5/types/logic/isBoolean.d.ts +1 -0
  1077. package/module/es5/types/logic/isBoolean.js +5 -0
  1078. package/module/es5/types/logic/isFloat.d.ts +1 -0
  1079. package/module/es5/types/logic/isFloat.js +5 -0
  1080. package/module/es5/types/logic/length.d.ts +3 -0
  1081. package/module/es5/types/logic/length.js +5 -0
  1082. package/module/es5/types/logic/lengthOfString.d.ts +2 -0
  1083. package/module/es5/types/logic/lengthOfString.js +5 -0
  1084. package/module/es5/types/logic/nand.d.ts +3 -0
  1085. package/module/es5/types/logic/nand.js +5 -0
  1086. package/module/es5/types/logic/nor.d.ts +3 -0
  1087. package/module/es5/types/logic/nor.js +5 -0
  1088. package/module/es5/types/logic/not.d.ts +2 -0
  1089. package/module/es5/types/logic/not.js +5 -0
  1090. package/module/es5/types/logic/or.d.ts +2 -0
  1091. package/module/es5/types/logic/or.js +5 -0
  1092. package/module/es5/types/logic/pop.d.ts +1 -0
  1093. package/module/es5/types/logic/pop.js +5 -0
  1094. package/module/es5/types/logic/popString.d.ts +1 -0
  1095. package/module/es5/types/logic/popString.js +5 -0
  1096. package/module/es5/types/logic/shift.d.ts +1 -0
  1097. package/module/es5/types/logic/shift.js +5 -0
  1098. package/module/es5/types/logic/shiftString.d.ts +1 -0
  1099. package/module/es5/types/logic/shiftString.js +5 -0
  1100. package/module/es5/types/logic/slice.d.ts +2 -0
  1101. package/module/es5/types/logic/slice.js +5 -0
  1102. package/module/es5/types/logic/stringReverse.d.ts +1 -0
  1103. package/module/es5/types/logic/stringReverse.js +5 -0
  1104. package/module/es5/types/logic/stringToArray.d.ts +1 -0
  1105. package/module/es5/types/logic/stringToArray.js +5 -0
  1106. package/module/es5/types/logic/stringToUnion.d.ts +1 -0
  1107. package/module/es5/types/logic/stringToUnion.js +5 -0
  1108. package/module/es5/types/logic/toNumber.d.ts +1 -0
  1109. package/module/es5/types/logic/toNumber.js +5 -0
  1110. package/module/es5/types/logic/xnor.d.ts +3 -0
  1111. package/module/es5/types/logic/xnor.js +5 -0
  1112. package/module/es5/types/logic/xor.d.ts +2 -0
  1113. package/module/es5/types/logic/xor.js +5 -0
  1114. package/module/es5/types/logic/zeroAorB.d.ts +2 -0
  1115. package/module/es5/types/logic/zeroAorB.js +5 -0
  1116. package/module/es5/types/logic/zeroString.d.ts +2 -0
  1117. package/module/es5/types/logic/zeroString.js +5 -0
  1118. package/module/es5/types/math/add.d.ts +4 -0
  1119. package/module/es5/types/math/add.js +5 -0
  1120. package/module/es5/types/math/divide.d.ts +6 -0
  1121. package/module/es5/types/math/divide.js +5 -0
  1122. package/module/es5/types/math/index.d.ts +6 -0
  1123. package/module/es5/types/math/index.js +71 -0
  1124. package/module/es5/types/math/modulo.d.ts +3 -0
  1125. package/module/es5/types/math/modulo.js +5 -0
  1126. package/module/es5/types/math/multiply.d.ts +5 -0
  1127. package/module/es5/types/math/multiply.js +5 -0
  1128. package/module/es5/types/math/numberToArray.d.ts +1 -0
  1129. package/module/es5/types/math/numberToArray.js +5 -0
  1130. package/module/es5/types/math/subtract.d.ts +4 -0
  1131. package/module/es5/types/math/subtract.js +5 -0
  1132. package/module/es5/types/object/index.d.ts +1 -0
  1133. package/module/es5/types/object/index.js +16 -0
  1134. package/module/es5/types/object/pickDeep.d.ts +1 -0
  1135. package/module/es5/types/object/pickDeep.js +5 -0
  1136. package/module/es5/types/object/pickDeepKey.d.ts +1 -0
  1137. package/module/es5/types/object/pickDeepKey.js +5 -0
  1138. package/module/es5/types/time/index.d.ts +1 -0
  1139. package/module/es5/types/time/index.js +16 -0
  1140. package/module/es5/types/time/timeUnit.d.ts +4 -0
  1141. package/module/es5/types/time/timeUnit.js +5 -0
  1142. package/module/es5/types/ua/index.d.ts +4 -0
  1143. package/module/es5/types/ua/index.js +49 -0
  1144. package/module/es5/types/ua/simplifiedUserAgentInfo.d.ts +8 -0
  1145. package/module/es5/types/ua/simplifiedUserAgentInfo.js +5 -0
  1146. package/module/es5/types/ua/simplifiedUserAgentInfoBrowser.d.ts +1 -0
  1147. package/module/es5/types/ua/simplifiedUserAgentInfoBrowser.js +5 -0
  1148. package/module/es5/types/ua/simplifiedUserAgentInfoDevice.d.ts +1 -0
  1149. package/module/es5/types/ua/simplifiedUserAgentInfoDevice.js +5 -0
  1150. package/module/es5/types/ua/simplifiedUserAgentInfoOs.d.ts +1 -0
  1151. package/module/es5/types/ua/simplifiedUserAgentInfoOs.js +5 -0
  1152. package/module/index.d.ts +1 -0
  1153. package/module/index.js +1 -0
  1154. package/module/index.js.map +1 -1
  1155. package/module/types/index.d.ts +3 -0
  1156. package/module/types/index.js +3 -0
  1157. package/module/types/index.js.map +1 -1
  1158. package/module/types/logic/binary1bitAnd.d.ts +2 -0
  1159. package/module/types/logic/binary1bitNand.d.ts +2 -0
  1160. package/module/types/logic/binary1bitNor.d.ts +3 -0
  1161. package/module/types/logic/binary1bitOr.d.ts +2 -0
  1162. package/module/types/logic/binary1bitXnor.d.ts +2 -0
  1163. package/module/types/logic/binary1bitXor.d.ts +2 -0
  1164. package/module/types/logic/binaryAnd.d.ts +2 -0
  1165. package/module/types/logic/binaryNand.d.ts +2 -0
  1166. package/module/types/logic/binaryNor.d.ts +2 -0
  1167. package/module/types/logic/binaryNot.d.ts +2 -0
  1168. package/module/types/logic/binaryOr.d.ts +2 -0
  1169. package/module/types/logic/binaryXnor.d.ts +2 -0
  1170. package/module/types/logic/binaryXor.d.ts +2 -0
  1171. package/module/types/object/index.d.ts +1 -0
  1172. package/module/types/object/index.js +2 -0
  1173. package/module/types/object/index.js.map +1 -0
  1174. package/module/types/object/pickDeep.d.ts +1 -0
  1175. package/module/types/object/pickDeep.js +2 -0
  1176. package/module/types/object/pickDeep.js.map +1 -0
  1177. package/module/types/object/pickDeepKey.d.ts +1 -0
  1178. package/module/types/object/pickDeepKey.js +2 -0
  1179. package/module/types/object/pickDeepKey.js.map +1 -0
  1180. package/module/types/time/index.d.ts +1 -0
  1181. package/module/types/time/index.js +2 -0
  1182. package/module/types/time/index.js.map +1 -0
  1183. package/module/types/time/timeUnit.d.ts +4 -0
  1184. package/module/types/time/timeUnit.js +2 -0
  1185. package/module/types/time/timeUnit.js.map +1 -0
  1186. package/module/types/ua/index.d.ts +4 -0
  1187. package/module/types/ua/index.js +5 -0
  1188. package/module/types/ua/index.js.map +1 -0
  1189. package/module/types/ua/simplifiedUserAgentInfo.d.ts +6 -3
  1190. package/module/types/ua/simplifiedUserAgentInfoBrowser.d.ts +1 -0
  1191. package/module/types/ua/simplifiedUserAgentInfoBrowser.js +2 -0
  1192. package/module/types/ua/simplifiedUserAgentInfoBrowser.js.map +1 -0
  1193. package/module/types/ua/simplifiedUserAgentInfoDevice.d.ts +1 -0
  1194. package/module/types/ua/simplifiedUserAgentInfoDevice.js +2 -0
  1195. package/module/types/ua/simplifiedUserAgentInfoDevice.js.map +1 -0
  1196. package/module/types/ua/simplifiedUserAgentInfoOs.d.ts +1 -0
  1197. package/module/types/ua/simplifiedUserAgentInfoOs.js +2 -0
  1198. package/module/types/ua/simplifiedUserAgentInfoOs.js.map +1 -0
  1199. package/package.json +26 -18
  1200. package/module/UA/extractOSFromUserAgent.d.ts +0 -2
  1201. package/module/types/logic/decimal1biteTobinary.js +0 -2
  1202. package/module/types/logic/decimal1biteTobinary.js.map +0 -1
  1203. /package/module/UA/{extractOSFromUserAgent.js → extractOsFromUserAgent.js} +0 -0
  1204. /package/module/{types/logic/binary1bitAND.d.ts → es5/types/logic/binary1bitAnd.d.ts} +0 -0
  1205. /package/module/{types/logic/binary1bitNAND.d.ts → es5/types/logic/binary1bitNand.d.ts} +0 -0
  1206. /package/module/{types/logic/binary1bitNOR.d.ts → es5/types/logic/binary1bitNor.d.ts} +0 -0
  1207. /package/module/{types/logic/binary1bitOR.d.ts → es5/types/logic/binary1bitOr.d.ts} +0 -0
  1208. /package/module/{types/logic/binary1bitXNOR.d.ts → es5/types/logic/binary1bitXnor.d.ts} +0 -0
  1209. /package/module/{types/logic/binary1bitXOR.d.ts → es5/types/logic/binary1bitXor.d.ts} +0 -0
  1210. /package/module/{types/logic/binaryAND.d.ts → es5/types/logic/binaryAnd.d.ts} +0 -0
  1211. /package/module/{types/logic/binaryNAND.d.ts → es5/types/logic/binaryNand.d.ts} +0 -0
  1212. /package/module/{types/logic/binaryNOR.d.ts → es5/types/logic/binaryNor.d.ts} +0 -0
  1213. /package/module/{types/logic/binaryNOT.d.ts → es5/types/logic/binaryNot.d.ts} +0 -0
  1214. /package/module/{types/logic/binaryOR.d.ts → es5/types/logic/binaryOr.d.ts} +0 -0
  1215. /package/module/{types/logic/binaryXNOR.d.ts → es5/types/logic/binaryXnor.d.ts} +0 -0
  1216. /package/module/{types/logic/binaryXOR.d.ts → es5/types/logic/binaryXor.d.ts} +0 -0
  1217. /package/module/types/logic/{binary1bitAND.js → binary1bitAnd.js} +0 -0
  1218. /package/module/types/logic/{binary1bitAND.js.map → binary1bitAnd.js.map} +0 -0
  1219. /package/module/types/logic/{binary1bitNAND.js → binary1bitNand.js} +0 -0
  1220. /package/module/types/logic/{binary1bitNAND.js.map → binary1bitNand.js.map} +0 -0
  1221. /package/module/types/logic/{binary1bitNOR.js → binary1bitNor.js} +0 -0
  1222. /package/module/types/logic/{binary1bitNOR.js.map → binary1bitNor.js.map} +0 -0
  1223. /package/module/types/logic/{binary1bitOR.js → binary1bitOr.js} +0 -0
  1224. /package/module/types/logic/{binary1bitOR.js.map → binary1bitOr.js.map} +0 -0
  1225. /package/module/types/logic/{binary1bitXNOR.js → binary1bitXnor.js} +0 -0
  1226. /package/module/types/logic/{binary1bitXNOR.js.map → binary1bitXnor.js.map} +0 -0
  1227. /package/module/types/logic/{binary1bitXOR.js → binary1bitXor.js} +0 -0
  1228. /package/module/types/logic/{binary1bitXOR.js.map → binary1bitXor.js.map} +0 -0
  1229. /package/module/types/logic/{binaryAND.js → binaryAnd.js} +0 -0
  1230. /package/module/types/logic/{binaryAND.js.map → binaryAnd.js.map} +0 -0
  1231. /package/module/types/logic/{binaryNAND.js → binaryNand.js} +0 -0
  1232. /package/module/types/logic/{binaryNAND.js.map → binaryNand.js.map} +0 -0
  1233. /package/module/types/logic/{binaryNOR.js → binaryNor.js} +0 -0
  1234. /package/module/types/logic/{binaryNOR.js.map → binaryNor.js.map} +0 -0
  1235. /package/module/types/logic/{binaryNOT.js → binaryNot.js} +0 -0
  1236. /package/module/types/logic/{binaryNOT.js.map → binaryNot.js.map} +0 -0
  1237. /package/module/types/logic/{binaryOR.js → binaryOr.js} +0 -0
  1238. /package/module/types/logic/{binaryOR.js.map → binaryOr.js.map} +0 -0
  1239. /package/module/types/logic/{binaryXNOR.js → binaryXnor.js} +0 -0
  1240. /package/module/types/logic/{binaryXNOR.js.map → binaryXnor.js.map} +0 -0
  1241. /package/module/types/logic/{binaryXOR.js → binaryXor.js} +0 -0
  1242. /package/module/types/logic/{binaryXOR.js.map → binaryXor.js.map} +0 -0
@@ -0,0 +1,654 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _and = require("./and");
7
+ Object.keys(_and).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _and[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function get() {
13
+ return _and[key];
14
+ }
15
+ });
16
+ });
17
+ var _arrayReverse = require("./arrayReverse");
18
+ Object.keys(_arrayReverse).forEach(function (key) {
19
+ if (key === "default" || key === "__esModule") return;
20
+ if (key in exports && exports[key] === _arrayReverse[key]) return;
21
+ Object.defineProperty(exports, key, {
22
+ enumerable: true,
23
+ get: function get() {
24
+ return _arrayReverse[key];
25
+ }
26
+ });
27
+ });
28
+ var _arrayToUnion = require("./arrayToUnion");
29
+ Object.keys(_arrayToUnion).forEach(function (key) {
30
+ if (key === "default" || key === "__esModule") return;
31
+ if (key in exports && exports[key] === _arrayToUnion[key]) return;
32
+ Object.defineProperty(exports, key, {
33
+ enumerable: true,
34
+ get: function get() {
35
+ return _arrayToUnion[key];
36
+ }
37
+ });
38
+ });
39
+ var _bGreaterThanA = require("./bGreaterThanA");
40
+ Object.keys(_bGreaterThanA).forEach(function (key) {
41
+ if (key === "default" || key === "__esModule") return;
42
+ if (key in exports && exports[key] === _bGreaterThanA[key]) return;
43
+ Object.defineProperty(exports, key, {
44
+ enumerable: true,
45
+ get: function get() {
46
+ return _bGreaterThanA[key];
47
+ }
48
+ });
49
+ });
50
+ var _binary1bitAnd = require("./binary1bitAnd");
51
+ Object.keys(_binary1bitAnd).forEach(function (key) {
52
+ if (key === "default" || key === "__esModule") return;
53
+ if (key in exports && exports[key] === _binary1bitAnd[key]) return;
54
+ Object.defineProperty(exports, key, {
55
+ enumerable: true,
56
+ get: function get() {
57
+ return _binary1bitAnd[key];
58
+ }
59
+ });
60
+ });
61
+ var _binary1bitNand = require("./binary1bitNand");
62
+ Object.keys(_binary1bitNand).forEach(function (key) {
63
+ if (key === "default" || key === "__esModule") return;
64
+ if (key in exports && exports[key] === _binary1bitNand[key]) return;
65
+ Object.defineProperty(exports, key, {
66
+ enumerable: true,
67
+ get: function get() {
68
+ return _binary1bitNand[key];
69
+ }
70
+ });
71
+ });
72
+ var _binary1bitNor = require("./binary1bitNor");
73
+ Object.keys(_binary1bitNor).forEach(function (key) {
74
+ if (key === "default" || key === "__esModule") return;
75
+ if (key in exports && exports[key] === _binary1bitNor[key]) return;
76
+ Object.defineProperty(exports, key, {
77
+ enumerable: true,
78
+ get: function get() {
79
+ return _binary1bitNor[key];
80
+ }
81
+ });
82
+ });
83
+ var _binary1bitOr = require("./binary1bitOr");
84
+ Object.keys(_binary1bitOr).forEach(function (key) {
85
+ if (key === "default" || key === "__esModule") return;
86
+ if (key in exports && exports[key] === _binary1bitOr[key]) return;
87
+ Object.defineProperty(exports, key, {
88
+ enumerable: true,
89
+ get: function get() {
90
+ return _binary1bitOr[key];
91
+ }
92
+ });
93
+ });
94
+ var _binary1bitXnor = require("./binary1bitXnor");
95
+ Object.keys(_binary1bitXnor).forEach(function (key) {
96
+ if (key === "default" || key === "__esModule") return;
97
+ if (key in exports && exports[key] === _binary1bitXnor[key]) return;
98
+ Object.defineProperty(exports, key, {
99
+ enumerable: true,
100
+ get: function get() {
101
+ return _binary1bitXnor[key];
102
+ }
103
+ });
104
+ });
105
+ var _binary1bitXor = require("./binary1bitXor");
106
+ Object.keys(_binary1bitXor).forEach(function (key) {
107
+ if (key === "default" || key === "__esModule") return;
108
+ if (key in exports && exports[key] === _binary1bitXor[key]) return;
109
+ Object.defineProperty(exports, key, {
110
+ enumerable: true,
111
+ get: function get() {
112
+ return _binary1bitXor[key];
113
+ }
114
+ });
115
+ });
116
+ var _binaryAbs = require("./binaryAbs");
117
+ Object.keys(_binaryAbs).forEach(function (key) {
118
+ if (key === "default" || key === "__esModule") return;
119
+ if (key in exports && exports[key] === _binaryAbs[key]) return;
120
+ Object.defineProperty(exports, key, {
121
+ enumerable: true,
122
+ get: function get() {
123
+ return _binaryAbs[key];
124
+ }
125
+ });
126
+ });
127
+ var _binaryAdd = require("./binaryAdd");
128
+ Object.keys(_binaryAdd).forEach(function (key) {
129
+ if (key === "default" || key === "__esModule") return;
130
+ if (key in exports && exports[key] === _binaryAdd[key]) return;
131
+ Object.defineProperty(exports, key, {
132
+ enumerable: true,
133
+ get: function get() {
134
+ return _binaryAdd[key];
135
+ }
136
+ });
137
+ });
138
+ var _binaryAnd = require("./binaryAnd");
139
+ Object.keys(_binaryAnd).forEach(function (key) {
140
+ if (key === "default" || key === "__esModule") return;
141
+ if (key in exports && exports[key] === _binaryAnd[key]) return;
142
+ Object.defineProperty(exports, key, {
143
+ enumerable: true,
144
+ get: function get() {
145
+ return _binaryAnd[key];
146
+ }
147
+ });
148
+ });
149
+ var _binaryComplement = require("./binaryComplement");
150
+ Object.keys(_binaryComplement).forEach(function (key) {
151
+ if (key === "default" || key === "__esModule") return;
152
+ if (key in exports && exports[key] === _binaryComplement[key]) return;
153
+ Object.defineProperty(exports, key, {
154
+ enumerable: true,
155
+ get: function get() {
156
+ return _binaryComplement[key];
157
+ }
158
+ });
159
+ });
160
+ var _binaryFullAdder = require("./binaryFullAdder");
161
+ Object.keys(_binaryFullAdder).forEach(function (key) {
162
+ if (key === "default" || key === "__esModule") return;
163
+ if (key in exports && exports[key] === _binaryFullAdder[key]) return;
164
+ Object.defineProperty(exports, key, {
165
+ enumerable: true,
166
+ get: function get() {
167
+ return _binaryFullAdder[key];
168
+ }
169
+ });
170
+ });
171
+ var _binaryHalfAdder = require("./binaryHalfAdder");
172
+ Object.keys(_binaryHalfAdder).forEach(function (key) {
173
+ if (key === "default" || key === "__esModule") return;
174
+ if (key in exports && exports[key] === _binaryHalfAdder[key]) return;
175
+ Object.defineProperty(exports, key, {
176
+ enumerable: true,
177
+ get: function get() {
178
+ return _binaryHalfAdder[key];
179
+ }
180
+ });
181
+ });
182
+ var _binaryNand = require("./binaryNand");
183
+ Object.keys(_binaryNand).forEach(function (key) {
184
+ if (key === "default" || key === "__esModule") return;
185
+ if (key in exports && exports[key] === _binaryNand[key]) return;
186
+ Object.defineProperty(exports, key, {
187
+ enumerable: true,
188
+ get: function get() {
189
+ return _binaryNand[key];
190
+ }
191
+ });
192
+ });
193
+ var _binaryNComplement = require("./binaryNComplement");
194
+ Object.keys(_binaryNComplement).forEach(function (key) {
195
+ if (key === "default" || key === "__esModule") return;
196
+ if (key in exports && exports[key] === _binaryNComplement[key]) return;
197
+ Object.defineProperty(exports, key, {
198
+ enumerable: true,
199
+ get: function get() {
200
+ return _binaryNComplement[key];
201
+ }
202
+ });
203
+ });
204
+ var _binaryNor = require("./binaryNor");
205
+ Object.keys(_binaryNor).forEach(function (key) {
206
+ if (key === "default" || key === "__esModule") return;
207
+ if (key in exports && exports[key] === _binaryNor[key]) return;
208
+ Object.defineProperty(exports, key, {
209
+ enumerable: true,
210
+ get: function get() {
211
+ return _binaryNor[key];
212
+ }
213
+ });
214
+ });
215
+ var _binaryNot = require("./binaryNot");
216
+ Object.keys(_binaryNot).forEach(function (key) {
217
+ if (key === "default" || key === "__esModule") return;
218
+ if (key in exports && exports[key] === _binaryNot[key]) return;
219
+ Object.defineProperty(exports, key, {
220
+ enumerable: true,
221
+ get: function get() {
222
+ return _binaryNot[key];
223
+ }
224
+ });
225
+ });
226
+ var _binaryOr = require("./binaryOr");
227
+ Object.keys(_binaryOr).forEach(function (key) {
228
+ if (key === "default" || key === "__esModule") return;
229
+ if (key in exports && exports[key] === _binaryOr[key]) return;
230
+ Object.defineProperty(exports, key, {
231
+ enumerable: true,
232
+ get: function get() {
233
+ return _binaryOr[key];
234
+ }
235
+ });
236
+ });
237
+ var _binaryToDecimal = require("./binaryToDecimal");
238
+ Object.keys(_binaryToDecimal).forEach(function (key) {
239
+ if (key === "default" || key === "__esModule") return;
240
+ if (key in exports && exports[key] === _binaryToDecimal[key]) return;
241
+ Object.defineProperty(exports, key, {
242
+ enumerable: true,
243
+ get: function get() {
244
+ return _binaryToDecimal[key];
245
+ }
246
+ });
247
+ });
248
+ var _binaryToHex = require("./binaryToHex");
249
+ Object.keys(_binaryToHex).forEach(function (key) {
250
+ if (key === "default" || key === "__esModule") return;
251
+ if (key in exports && exports[key] === _binaryToHex[key]) return;
252
+ Object.defineProperty(exports, key, {
253
+ enumerable: true,
254
+ get: function get() {
255
+ return _binaryToHex[key];
256
+ }
257
+ });
258
+ });
259
+ var _binaryXnor = require("./binaryXnor");
260
+ Object.keys(_binaryXnor).forEach(function (key) {
261
+ if (key === "default" || key === "__esModule") return;
262
+ if (key in exports && exports[key] === _binaryXnor[key]) return;
263
+ Object.defineProperty(exports, key, {
264
+ enumerable: true,
265
+ get: function get() {
266
+ return _binaryXnor[key];
267
+ }
268
+ });
269
+ });
270
+ var _binaryXor = require("./binaryXor");
271
+ Object.keys(_binaryXor).forEach(function (key) {
272
+ if (key === "default" || key === "__esModule") return;
273
+ if (key in exports && exports[key] === _binaryXor[key]) return;
274
+ Object.defineProperty(exports, key, {
275
+ enumerable: true,
276
+ get: function get() {
277
+ return _binaryXor[key];
278
+ }
279
+ });
280
+ });
281
+ var _capitalize = require("./capitalize");
282
+ Object.keys(_capitalize).forEach(function (key) {
283
+ if (key === "default" || key === "__esModule") return;
284
+ if (key in exports && exports[key] === _capitalize[key]) return;
285
+ Object.defineProperty(exports, key, {
286
+ enumerable: true,
287
+ get: function get() {
288
+ return _capitalize[key];
289
+ }
290
+ });
291
+ });
292
+ var _decimal1byteTobinary = require("./decimal1byteTobinary");
293
+ Object.keys(_decimal1byteTobinary).forEach(function (key) {
294
+ if (key === "default" || key === "__esModule") return;
295
+ if (key in exports && exports[key] === _decimal1byteTobinary[key]) return;
296
+ Object.defineProperty(exports, key, {
297
+ enumerable: true,
298
+ get: function get() {
299
+ return _decimal1byteTobinary[key];
300
+ }
301
+ });
302
+ });
303
+ var _decimal4bitTobinary = require("./decimal4bitTobinary");
304
+ Object.keys(_decimal4bitTobinary).forEach(function (key) {
305
+ if (key === "default" || key === "__esModule") return;
306
+ if (key in exports && exports[key] === _decimal4bitTobinary[key]) return;
307
+ Object.defineProperty(exports, key, {
308
+ enumerable: true,
309
+ get: function get() {
310
+ return _decimal4bitTobinary[key];
311
+ }
312
+ });
313
+ });
314
+ var _decimal4bitToHex = require("./decimal4bitToHex");
315
+ Object.keys(_decimal4bitToHex).forEach(function (key) {
316
+ if (key === "default" || key === "__esModule") return;
317
+ if (key in exports && exports[key] === _decimal4bitToHex[key]) return;
318
+ Object.defineProperty(exports, key, {
319
+ enumerable: true,
320
+ get: function get() {
321
+ return _decimal4bitToHex[key];
322
+ }
323
+ });
324
+ });
325
+ var _equal = require("./equal");
326
+ Object.keys(_equal).forEach(function (key) {
327
+ if (key === "default" || key === "__esModule") return;
328
+ if (key in exports && exports[key] === _equal[key]) return;
329
+ Object.defineProperty(exports, key, {
330
+ enumerable: true,
331
+ get: function get() {
332
+ return _equal[key];
333
+ }
334
+ });
335
+ });
336
+ var _first = require("./first");
337
+ Object.keys(_first).forEach(function (key) {
338
+ if (key === "default" || key === "__esModule") return;
339
+ if (key in exports && exports[key] === _first[key]) return;
340
+ Object.defineProperty(exports, key, {
341
+ enumerable: true,
342
+ get: function get() {
343
+ return _first[key];
344
+ }
345
+ });
346
+ });
347
+ var _first8Chars = require("./first8Chars");
348
+ Object.keys(_first8Chars).forEach(function (key) {
349
+ if (key === "default" || key === "__esModule") return;
350
+ if (key in exports && exports[key] === _first8Chars[key]) return;
351
+ Object.defineProperty(exports, key, {
352
+ enumerable: true,
353
+ get: function get() {
354
+ return _first8Chars[key];
355
+ }
356
+ });
357
+ });
358
+ var _firstNChars = require("./firstNChars");
359
+ Object.keys(_firstNChars).forEach(function (key) {
360
+ if (key === "default" || key === "__esModule") return;
361
+ if (key in exports && exports[key] === _firstNChars[key]) return;
362
+ Object.defineProperty(exports, key, {
363
+ enumerable: true,
364
+ get: function get() {
365
+ return _firstNChars[key];
366
+ }
367
+ });
368
+ });
369
+ var _hex4bitToDecimal = require("./hex4bitToDecimal");
370
+ Object.keys(_hex4bitToDecimal).forEach(function (key) {
371
+ if (key === "default" || key === "__esModule") return;
372
+ if (key in exports && exports[key] === _hex4bitToDecimal[key]) return;
373
+ Object.defineProperty(exports, key, {
374
+ enumerable: true,
375
+ get: function get() {
376
+ return _hex4bitToDecimal[key];
377
+ }
378
+ });
379
+ });
380
+ var _hexToBinary = require("./hexToBinary");
381
+ Object.keys(_hexToBinary).forEach(function (key) {
382
+ if (key === "default" || key === "__esModule") return;
383
+ if (key in exports && exports[key] === _hexToBinary[key]) return;
384
+ Object.defineProperty(exports, key, {
385
+ enumerable: true,
386
+ get: function get() {
387
+ return _hexToBinary[key];
388
+ }
389
+ });
390
+ });
391
+ var _if = require("./if");
392
+ Object.keys(_if).forEach(function (key) {
393
+ if (key === "default" || key === "__esModule") return;
394
+ if (key in exports && exports[key] === _if[key]) return;
395
+ Object.defineProperty(exports, key, {
396
+ enumerable: true,
397
+ get: function get() {
398
+ return _if[key];
399
+ }
400
+ });
401
+ });
402
+ var _imply = require("./imply");
403
+ Object.keys(_imply).forEach(function (key) {
404
+ if (key === "default" || key === "__esModule") return;
405
+ if (key in exports && exports[key] === _imply[key]) return;
406
+ Object.defineProperty(exports, key, {
407
+ enumerable: true,
408
+ get: function get() {
409
+ return _imply[key];
410
+ }
411
+ });
412
+ });
413
+ var _isAny = require("./isAny");
414
+ Object.keys(_isAny).forEach(function (key) {
415
+ if (key === "default" || key === "__esModule") return;
416
+ if (key in exports && exports[key] === _isAny[key]) return;
417
+ Object.defineProperty(exports, key, {
418
+ enumerable: true,
419
+ get: function get() {
420
+ return _isAny[key];
421
+ }
422
+ });
423
+ });
424
+ var _isBoolean = require("./isBoolean");
425
+ Object.keys(_isBoolean).forEach(function (key) {
426
+ if (key === "default" || key === "__esModule") return;
427
+ if (key in exports && exports[key] === _isBoolean[key]) return;
428
+ Object.defineProperty(exports, key, {
429
+ enumerable: true,
430
+ get: function get() {
431
+ return _isBoolean[key];
432
+ }
433
+ });
434
+ });
435
+ var _isFloat = require("./isFloat");
436
+ Object.keys(_isFloat).forEach(function (key) {
437
+ if (key === "default" || key === "__esModule") return;
438
+ if (key in exports && exports[key] === _isFloat[key]) return;
439
+ Object.defineProperty(exports, key, {
440
+ enumerable: true,
441
+ get: function get() {
442
+ return _isFloat[key];
443
+ }
444
+ });
445
+ });
446
+ var _length = require("./length");
447
+ Object.keys(_length).forEach(function (key) {
448
+ if (key === "default" || key === "__esModule") return;
449
+ if (key in exports && exports[key] === _length[key]) return;
450
+ Object.defineProperty(exports, key, {
451
+ enumerable: true,
452
+ get: function get() {
453
+ return _length[key];
454
+ }
455
+ });
456
+ });
457
+ var _lengthOfString = require("./lengthOfString");
458
+ Object.keys(_lengthOfString).forEach(function (key) {
459
+ if (key === "default" || key === "__esModule") return;
460
+ if (key in exports && exports[key] === _lengthOfString[key]) return;
461
+ Object.defineProperty(exports, key, {
462
+ enumerable: true,
463
+ get: function get() {
464
+ return _lengthOfString[key];
465
+ }
466
+ });
467
+ });
468
+ var _nand = require("./nand");
469
+ Object.keys(_nand).forEach(function (key) {
470
+ if (key === "default" || key === "__esModule") return;
471
+ if (key in exports && exports[key] === _nand[key]) return;
472
+ Object.defineProperty(exports, key, {
473
+ enumerable: true,
474
+ get: function get() {
475
+ return _nand[key];
476
+ }
477
+ });
478
+ });
479
+ var _nor = require("./nor");
480
+ Object.keys(_nor).forEach(function (key) {
481
+ if (key === "default" || key === "__esModule") return;
482
+ if (key in exports && exports[key] === _nor[key]) return;
483
+ Object.defineProperty(exports, key, {
484
+ enumerable: true,
485
+ get: function get() {
486
+ return _nor[key];
487
+ }
488
+ });
489
+ });
490
+ var _not = require("./not");
491
+ Object.keys(_not).forEach(function (key) {
492
+ if (key === "default" || key === "__esModule") return;
493
+ if (key in exports && exports[key] === _not[key]) return;
494
+ Object.defineProperty(exports, key, {
495
+ enumerable: true,
496
+ get: function get() {
497
+ return _not[key];
498
+ }
499
+ });
500
+ });
501
+ var _or = require("./or");
502
+ Object.keys(_or).forEach(function (key) {
503
+ if (key === "default" || key === "__esModule") return;
504
+ if (key in exports && exports[key] === _or[key]) return;
505
+ Object.defineProperty(exports, key, {
506
+ enumerable: true,
507
+ get: function get() {
508
+ return _or[key];
509
+ }
510
+ });
511
+ });
512
+ var _pop = require("./pop");
513
+ Object.keys(_pop).forEach(function (key) {
514
+ if (key === "default" || key === "__esModule") return;
515
+ if (key in exports && exports[key] === _pop[key]) return;
516
+ Object.defineProperty(exports, key, {
517
+ enumerable: true,
518
+ get: function get() {
519
+ return _pop[key];
520
+ }
521
+ });
522
+ });
523
+ var _popString = require("./popString");
524
+ Object.keys(_popString).forEach(function (key) {
525
+ if (key === "default" || key === "__esModule") return;
526
+ if (key in exports && exports[key] === _popString[key]) return;
527
+ Object.defineProperty(exports, key, {
528
+ enumerable: true,
529
+ get: function get() {
530
+ return _popString[key];
531
+ }
532
+ });
533
+ });
534
+ var _shift = require("./shift");
535
+ Object.keys(_shift).forEach(function (key) {
536
+ if (key === "default" || key === "__esModule") return;
537
+ if (key in exports && exports[key] === _shift[key]) return;
538
+ Object.defineProperty(exports, key, {
539
+ enumerable: true,
540
+ get: function get() {
541
+ return _shift[key];
542
+ }
543
+ });
544
+ });
545
+ var _shiftString = require("./shiftString");
546
+ Object.keys(_shiftString).forEach(function (key) {
547
+ if (key === "default" || key === "__esModule") return;
548
+ if (key in exports && exports[key] === _shiftString[key]) return;
549
+ Object.defineProperty(exports, key, {
550
+ enumerable: true,
551
+ get: function get() {
552
+ return _shiftString[key];
553
+ }
554
+ });
555
+ });
556
+ var _slice = require("./slice");
557
+ Object.keys(_slice).forEach(function (key) {
558
+ if (key === "default" || key === "__esModule") return;
559
+ if (key in exports && exports[key] === _slice[key]) return;
560
+ Object.defineProperty(exports, key, {
561
+ enumerable: true,
562
+ get: function get() {
563
+ return _slice[key];
564
+ }
565
+ });
566
+ });
567
+ var _stringReverse = require("./stringReverse");
568
+ Object.keys(_stringReverse).forEach(function (key) {
569
+ if (key === "default" || key === "__esModule") return;
570
+ if (key in exports && exports[key] === _stringReverse[key]) return;
571
+ Object.defineProperty(exports, key, {
572
+ enumerable: true,
573
+ get: function get() {
574
+ return _stringReverse[key];
575
+ }
576
+ });
577
+ });
578
+ var _stringToArray = require("./stringToArray");
579
+ Object.keys(_stringToArray).forEach(function (key) {
580
+ if (key === "default" || key === "__esModule") return;
581
+ if (key in exports && exports[key] === _stringToArray[key]) return;
582
+ Object.defineProperty(exports, key, {
583
+ enumerable: true,
584
+ get: function get() {
585
+ return _stringToArray[key];
586
+ }
587
+ });
588
+ });
589
+ var _stringToUnion = require("./stringToUnion");
590
+ Object.keys(_stringToUnion).forEach(function (key) {
591
+ if (key === "default" || key === "__esModule") return;
592
+ if (key in exports && exports[key] === _stringToUnion[key]) return;
593
+ Object.defineProperty(exports, key, {
594
+ enumerable: true,
595
+ get: function get() {
596
+ return _stringToUnion[key];
597
+ }
598
+ });
599
+ });
600
+ var _toNumber = require("./toNumber");
601
+ Object.keys(_toNumber).forEach(function (key) {
602
+ if (key === "default" || key === "__esModule") return;
603
+ if (key in exports && exports[key] === _toNumber[key]) return;
604
+ Object.defineProperty(exports, key, {
605
+ enumerable: true,
606
+ get: function get() {
607
+ return _toNumber[key];
608
+ }
609
+ });
610
+ });
611
+ var _xnor = require("./xnor");
612
+ Object.keys(_xnor).forEach(function (key) {
613
+ if (key === "default" || key === "__esModule") return;
614
+ if (key in exports && exports[key] === _xnor[key]) return;
615
+ Object.defineProperty(exports, key, {
616
+ enumerable: true,
617
+ get: function get() {
618
+ return _xnor[key];
619
+ }
620
+ });
621
+ });
622
+ var _xor = require("./xor");
623
+ Object.keys(_xor).forEach(function (key) {
624
+ if (key === "default" || key === "__esModule") return;
625
+ if (key in exports && exports[key] === _xor[key]) return;
626
+ Object.defineProperty(exports, key, {
627
+ enumerable: true,
628
+ get: function get() {
629
+ return _xor[key];
630
+ }
631
+ });
632
+ });
633
+ var _zeroAorB = require("./zeroAorB");
634
+ Object.keys(_zeroAorB).forEach(function (key) {
635
+ if (key === "default" || key === "__esModule") return;
636
+ if (key in exports && exports[key] === _zeroAorB[key]) return;
637
+ Object.defineProperty(exports, key, {
638
+ enumerable: true,
639
+ get: function get() {
640
+ return _zeroAorB[key];
641
+ }
642
+ });
643
+ });
644
+ var _zeroString = require("./zeroString");
645
+ Object.keys(_zeroString).forEach(function (key) {
646
+ if (key === "default" || key === "__esModule") return;
647
+ if (key in exports && exports[key] === _zeroString[key]) return;
648
+ Object.defineProperty(exports, key, {
649
+ enumerable: true,
650
+ get: function get() {
651
+ return _zeroString[key];
652
+ }
653
+ });
654
+ });
@@ -0,0 +1 @@
1
+ export type IsAny<T> = 0 extends 1 & T ? true : false;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -0,0 +1 @@
1
+ export type isBoolean<X> = X extends number ? X extends 0 ? false : true : X extends string ? X extends "" ? false : true : X extends boolean ? X : X extends undefined ? false : X extends null ? false : X extends object ? X extends unknown[] ? X extends [] ? false : true : true : X extends (...arguments_: unknown[]) => unknown ? false : true;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -0,0 +1 @@
1
+ export type IsFloat<T> = T extends number ? `${T}` extends `${infer _}.${infer _2}` ? true : false : false;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -0,0 +1,3 @@
1
+ export type Length<T extends unknown[]> = T extends {
2
+ length: infer L;
3
+ } ? L extends number ? L : never : never;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -0,0 +1,2 @@
1
+ import type { StringToArray } from "./stringToArray";
2
+ export type LengthOfString<S extends string> = StringToArray<S>["length"];
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });