@vinicunca/perkakas 0.1.0 → 0.3.1

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 (605) hide show
  1. package/README.md +9 -0
  2. package/dist/commonjs/aria/index.js +17 -0
  3. package/dist/commonjs/aria/key-codes.js +25 -0
  4. package/dist/commonjs/array/all-pass.js +11 -0
  5. package/dist/commonjs/array/any-pass.js +11 -0
  6. package/dist/commonjs/array/chunk.js +17 -0
  7. package/dist/commonjs/array/compact.js +8 -0
  8. package/dist/commonjs/array/concat.js +11 -0
  9. package/dist/commonjs/array/count-by.js +22 -0
  10. package/dist/commonjs/array/difference-with.js +31 -0
  11. package/dist/commonjs/array/difference.js +32 -0
  12. package/dist/commonjs/array/drop-first-by.js +26 -0
  13. package/dist/commonjs/array/drop-last-while.js +16 -0
  14. package/dist/commonjs/array/drop-last.js +15 -0
  15. package/dist/commonjs/array/drop-while.js +16 -0
  16. package/dist/commonjs/array/drop.js +32 -0
  17. package/dist/commonjs/array/filter.js +41 -0
  18. package/dist/commonjs/array/find-index.js +46 -0
  19. package/dist/commonjs/array/find-last-index.js +24 -0
  20. package/dist/commonjs/array/find-last.js +24 -0
  21. package/dist/commonjs/array/find.js +38 -0
  22. package/dist/commonjs/array/first-by.js +22 -0
  23. package/dist/commonjs/array/first.js +26 -0
  24. package/dist/commonjs/array/flat-map-to-obj.js +25 -0
  25. package/dist/commonjs/array/flat-map.js +33 -0
  26. package/dist/commonjs/array/flatten-deep.js +48 -0
  27. package/dist/commonjs/array/flatten.js +32 -0
  28. package/dist/commonjs/array/for-each.js +40 -0
  29. package/dist/commonjs/array/group-by.js +33 -0
  30. package/dist/commonjs/array/has-at-least.js +11 -0
  31. package/dist/commonjs/array/index-by.js +24 -0
  32. package/dist/commonjs/array/index.js +81 -0
  33. package/dist/commonjs/array/intersection-with.js +31 -0
  34. package/dist/commonjs/array/intersection.js +32 -0
  35. package/dist/commonjs/array/join.js +11 -0
  36. package/dist/commonjs/array/last.js +11 -0
  37. package/dist/commonjs/array/length.js +11 -0
  38. package/dist/commonjs/array/map-to-obj.js +23 -0
  39. package/dist/commonjs/array/map.js +35 -0
  40. package/dist/commonjs/array/max-by.js +28 -0
  41. package/dist/commonjs/array/mean-by.js +26 -0
  42. package/dist/commonjs/array/merge-all.js +7 -0
  43. package/dist/commonjs/array/min-by.js +28 -0
  44. package/dist/commonjs/array/nth-by.js +12 -0
  45. package/dist/commonjs/array/only.js +14 -0
  46. package/dist/commonjs/array/partition.js +24 -0
  47. package/dist/commonjs/array/range.js +15 -0
  48. package/dist/commonjs/array/rank-by.js +17 -0
  49. package/dist/commonjs/array/reduce.js +19 -0
  50. package/dist/commonjs/array/reject.js +41 -0
  51. package/dist/commonjs/array/reverse.js +11 -0
  52. package/dist/commonjs/array/sample.js +34 -0
  53. package/dist/commonjs/array/shuffle.js +18 -0
  54. package/dist/commonjs/array/sort-by.js +52 -0
  55. package/dist/commonjs/array/sort.js +16 -0
  56. package/dist/commonjs/array/splice.js +13 -0
  57. package/dist/commonjs/array/split-at.js +13 -0
  58. package/dist/commonjs/array/split-when.js +17 -0
  59. package/dist/commonjs/array/sum-by.js +24 -0
  60. package/dist/commonjs/array/swap-indices.js +34 -0
  61. package/dist/commonjs/array/take-first-by.js +24 -0
  62. package/dist/commonjs/array/take-while.js +18 -0
  63. package/dist/commonjs/array/take.js +38 -0
  64. package/dist/commonjs/array/uniq-by.js +30 -0
  65. package/dist/commonjs/array/uniq-with.js +33 -0
  66. package/dist/commonjs/array/uniq.js +32 -0
  67. package/dist/commonjs/array/zip-obj.js +16 -0
  68. package/dist/commonjs/array/zip-with.js +23 -0
  69. package/dist/commonjs/array/zip.js +19 -0
  70. package/dist/commonjs/function/conditional.js +34 -0
  71. package/dist/commonjs/function/create-pipe.js +8 -0
  72. package/dist/commonjs/function/debounce.js +88 -0
  73. package/dist/commonjs/function/identity.js +7 -0
  74. package/dist/commonjs/function/index.js +25 -0
  75. package/dist/commonjs/function/noop.js +7 -0
  76. package/dist/commonjs/function/once.js +15 -0
  77. package/dist/commonjs/function/pipe.js +106 -0
  78. package/dist/commonjs/function/purry.js +20 -0
  79. package/dist/commonjs/function/sleep.js +9 -0
  80. package/dist/commonjs/guard/index.js +32 -0
  81. package/dist/commonjs/guard/is-array.js +7 -0
  82. package/dist/commonjs/guard/is-boolean.js +7 -0
  83. package/dist/commonjs/guard/is-date.js +7 -0
  84. package/dist/commonjs/guard/is-defined.js +13 -0
  85. package/dist/commonjs/guard/is-empty.js +19 -0
  86. package/dist/commonjs/guard/is-error.js +7 -0
  87. package/dist/commonjs/guard/is-function.js +7 -0
  88. package/dist/commonjs/guard/is-nil.js +7 -0
  89. package/dist/commonjs/guard/is-non-null.js +7 -0
  90. package/dist/commonjs/guard/is-not.js +9 -0
  91. package/dist/commonjs/guard/is-number.js +7 -0
  92. package/dist/commonjs/guard/is-object.js +11 -0
  93. package/dist/commonjs/guard/is-promise.js +7 -0
  94. package/dist/commonjs/guard/is-string.js +7 -0
  95. package/dist/commonjs/guard/is-symbol.js +7 -0
  96. package/dist/commonjs/guard/is-truthy.js +7 -0
  97. package/dist/commonjs/index.js +26 -0
  98. package/dist/commonjs/number/add.js +11 -0
  99. package/dist/commonjs/number/ceil.js +9 -0
  100. package/dist/commonjs/number/clamp.js +17 -0
  101. package/dist/commonjs/number/divide.js +11 -0
  102. package/dist/commonjs/number/floor.js +9 -0
  103. package/dist/commonjs/number/index.js +24 -0
  104. package/dist/commonjs/number/multiply.js +11 -0
  105. package/dist/commonjs/number/round.js +9 -0
  106. package/dist/commonjs/number/subtract.js +11 -0
  107. package/dist/commonjs/object/add-prop.js +14 -0
  108. package/dist/commonjs/object/clone.js +49 -0
  109. package/dist/commonjs/object/equals.js +71 -0
  110. package/dist/commonjs/object/for-each-obj.js +30 -0
  111. package/dist/commonjs/object/from-pairs.js +14 -0
  112. package/dist/commonjs/object/index.js +39 -0
  113. package/dist/commonjs/object/invert.js +15 -0
  114. package/dist/commonjs/object/keys.js +10 -0
  115. package/dist/commonjs/object/map-keys.js +16 -0
  116. package/dist/commonjs/object/map-values.js +16 -0
  117. package/dist/commonjs/object/merge-deep.js +31 -0
  118. package/dist/commonjs/object/merge.js +11 -0
  119. package/dist/commonjs/object/omit-by.js +20 -0
  120. package/dist/commonjs/object/omit.js +25 -0
  121. package/dist/commonjs/object/path-or.js +18 -0
  122. package/dist/commonjs/object/pick-by.js +20 -0
  123. package/dist/commonjs/object/pick.js +19 -0
  124. package/dist/commonjs/object/prop.js +7 -0
  125. package/dist/commonjs/object/set-path.js +26 -0
  126. package/dist/commonjs/object/set.js +14 -0
  127. package/dist/commonjs/object/swap-props.js +16 -0
  128. package/dist/commonjs/object/to-pairs.js +11 -0
  129. package/dist/commonjs/object/values.js +7 -0
  130. package/dist/commonjs/string/cases-types.js +2 -0
  131. package/dist/commonjs/string/cases.js +107 -0
  132. package/dist/commonjs/string/human-readable-file-size.js +16 -0
  133. package/dist/commonjs/string/index.js +21 -0
  134. package/dist/commonjs/string/random-string.js +10 -0
  135. package/dist/commonjs/string/slugify.js +13 -0
  136. package/dist/commonjs/string/string-to-path.js +18 -0
  137. package/dist/commonjs/type/index.js +17 -0
  138. package/dist/commonjs/type/type.js +13 -0
  139. package/dist/commonjs/utils/heap.js +43 -0
  140. package/dist/commonjs/utils/narrow.js +2 -0
  141. package/dist/commonjs/utils/paths.js +2 -0
  142. package/dist/commonjs/utils/purry-on.js +10 -0
  143. package/dist/commonjs/utils/purry-order-rules.js +66 -0
  144. package/dist/commonjs/utils/quick-select.js +31 -0
  145. package/dist/commonjs/utils/reduce-lazy.js +18 -0
  146. package/dist/commonjs/utils/swap-in-place.js +7 -0
  147. package/dist/commonjs/utils/to-lazy-indexed.js +7 -0
  148. package/dist/commonjs/utils/to-single.js +8 -0
  149. package/dist/commonjs/utils/types.js +2 -0
  150. package/dist/commonjs/utils/with-precision.js +23 -0
  151. package/dist/es/aria/index.js +1 -0
  152. package/dist/es/aria/key-codes.js +22 -0
  153. package/dist/es/array/all-pass.js +7 -0
  154. package/dist/es/array/any-pass.js +7 -0
  155. package/dist/es/array/chunk.js +13 -0
  156. package/dist/es/array/compact.js +4 -0
  157. package/dist/es/array/concat.js +7 -0
  158. package/dist/es/array/count-by.js +18 -0
  159. package/dist/es/array/difference-with.js +27 -0
  160. package/dist/es/array/difference.js +28 -0
  161. package/dist/es/array/drop-first-by.js +22 -0
  162. package/dist/es/array/drop-last-while.js +12 -0
  163. package/dist/es/array/drop-last.js +11 -0
  164. package/dist/es/array/drop-while.js +12 -0
  165. package/dist/es/array/drop.js +28 -0
  166. package/dist/es/array/filter.js +37 -0
  167. package/dist/es/array/find-index.js +42 -0
  168. package/dist/es/array/find-last-index.js +20 -0
  169. package/dist/es/array/find-last.js +20 -0
  170. package/dist/es/array/find.js +34 -0
  171. package/dist/es/array/first-by.js +18 -0
  172. package/dist/es/array/first.js +22 -0
  173. package/dist/es/array/flat-map-to-obj.js +21 -0
  174. package/dist/es/array/flat-map.js +29 -0
  175. package/dist/es/array/flatten-deep.js +44 -0
  176. package/dist/es/array/flatten.js +28 -0
  177. package/dist/es/array/for-each.js +36 -0
  178. package/dist/es/array/group-by.js +29 -0
  179. package/dist/es/array/has-at-least.js +7 -0
  180. package/dist/es/array/index-by.js +20 -0
  181. package/dist/es/array/index.js +65 -0
  182. package/dist/es/array/intersection-with.js +27 -0
  183. package/dist/es/array/intersection.js +28 -0
  184. package/dist/es/array/join.js +7 -0
  185. package/dist/es/array/last.js +7 -0
  186. package/dist/es/array/length.js +7 -0
  187. package/dist/es/array/map-to-obj.js +19 -0
  188. package/dist/es/array/map.js +31 -0
  189. package/dist/es/array/max-by.js +24 -0
  190. package/dist/es/array/mean-by.js +22 -0
  191. package/dist/es/array/merge-all.js +3 -0
  192. package/dist/es/array/min-by.js +24 -0
  193. package/dist/es/array/nth-by.js +8 -0
  194. package/dist/es/array/only.js +10 -0
  195. package/dist/es/array/partition.js +20 -0
  196. package/dist/es/array/range.js +11 -0
  197. package/dist/es/array/rank-by.js +13 -0
  198. package/dist/es/array/reduce.js +15 -0
  199. package/dist/es/array/reject.js +37 -0
  200. package/dist/es/array/reverse.js +7 -0
  201. package/dist/es/array/sample.js +30 -0
  202. package/dist/es/array/shuffle.js +14 -0
  203. package/dist/es/array/sort-by.js +48 -0
  204. package/dist/es/array/sort.js +12 -0
  205. package/dist/es/array/splice.js +9 -0
  206. package/dist/es/array/split-at.js +9 -0
  207. package/dist/es/array/split-when.js +13 -0
  208. package/dist/es/array/sum-by.js +20 -0
  209. package/dist/es/array/swap-indices.js +30 -0
  210. package/dist/es/array/take-first-by.js +20 -0
  211. package/dist/es/array/take-while.js +14 -0
  212. package/dist/es/array/take.js +34 -0
  213. package/dist/es/array/uniq-by.js +26 -0
  214. package/dist/es/array/uniq-with.js +29 -0
  215. package/dist/es/array/uniq.js +28 -0
  216. package/dist/es/array/zip-obj.js +12 -0
  217. package/dist/es/array/zip-with.js +19 -0
  218. package/dist/es/array/zip.js +15 -0
  219. package/dist/es/function/conditional.js +30 -0
  220. package/dist/es/function/create-pipe.js +4 -0
  221. package/dist/es/function/debounce.js +84 -0
  222. package/dist/es/function/identity.js +3 -0
  223. package/dist/es/function/index.js +9 -0
  224. package/dist/es/function/noop.js +3 -0
  225. package/dist/es/function/once.js +11 -0
  226. package/dist/es/function/pipe.js +102 -0
  227. package/dist/es/function/purry.js +16 -0
  228. package/dist/es/function/sleep.js +5 -0
  229. package/dist/es/guard/index.js +16 -0
  230. package/dist/es/guard/is-array.js +3 -0
  231. package/dist/es/guard/is-boolean.js +3 -0
  232. package/dist/es/guard/is-date.js +3 -0
  233. package/dist/es/guard/is-defined.js +9 -0
  234. package/dist/es/guard/is-empty.js +15 -0
  235. package/dist/es/guard/is-error.js +3 -0
  236. package/dist/es/guard/is-function.js +3 -0
  237. package/dist/es/guard/is-nil.js +3 -0
  238. package/dist/es/guard/is-non-null.js +3 -0
  239. package/dist/es/guard/is-not.js +5 -0
  240. package/dist/es/guard/is-number.js +3 -0
  241. package/dist/es/guard/is-object.js +7 -0
  242. package/dist/es/guard/is-promise.js +3 -0
  243. package/dist/es/guard/is-string.js +3 -0
  244. package/dist/es/guard/is-symbol.js +3 -0
  245. package/dist/es/guard/is-truthy.js +3 -0
  246. package/dist/es/index.js +9 -0
  247. package/dist/es/number/add.js +7 -0
  248. package/dist/es/number/ceil.js +5 -0
  249. package/dist/es/number/clamp.js +13 -0
  250. package/dist/es/number/divide.js +7 -0
  251. package/dist/es/number/floor.js +5 -0
  252. package/dist/es/number/index.js +8 -0
  253. package/dist/es/number/multiply.js +7 -0
  254. package/dist/es/number/round.js +5 -0
  255. package/dist/es/number/subtract.js +7 -0
  256. package/dist/es/object/add-prop.js +10 -0
  257. package/dist/es/object/clone.js +45 -0
  258. package/dist/es/object/equals.js +67 -0
  259. package/dist/es/object/for-each-obj.js +26 -0
  260. package/dist/es/object/from-pairs.js +10 -0
  261. package/dist/es/object/index.js +23 -0
  262. package/dist/es/object/invert.js +11 -0
  263. package/dist/es/object/keys.js +6 -0
  264. package/dist/es/object/map-keys.js +12 -0
  265. package/dist/es/object/map-values.js +12 -0
  266. package/dist/es/object/merge-deep.js +27 -0
  267. package/dist/es/object/merge.js +7 -0
  268. package/dist/es/object/omit-by.js +16 -0
  269. package/dist/es/object/omit.js +21 -0
  270. package/dist/es/object/path-or.js +14 -0
  271. package/dist/es/object/pick-by.js +16 -0
  272. package/dist/es/object/pick.js +15 -0
  273. package/dist/es/object/prop.js +3 -0
  274. package/dist/es/object/set-path.js +21 -0
  275. package/dist/es/object/set.js +10 -0
  276. package/dist/es/object/swap-props.js +12 -0
  277. package/dist/es/object/to-pairs.js +7 -0
  278. package/dist/es/object/values.js +3 -0
  279. package/dist/es/string/cases-types.js +1 -0
  280. package/dist/es/string/cases.js +93 -0
  281. package/dist/es/string/human-readable-file-size.js +12 -0
  282. package/dist/es/string/index.js +5 -0
  283. package/dist/es/string/random-string.js +6 -0
  284. package/dist/es/string/slugify.js +9 -0
  285. package/dist/es/string/string-to-path.js +14 -0
  286. package/dist/es/type/index.js +1 -0
  287. package/dist/es/type/type.js +9 -0
  288. package/dist/es/utils/heap.js +38 -0
  289. package/dist/es/utils/narrow.js +1 -0
  290. package/dist/es/utils/paths.js +1 -0
  291. package/dist/es/utils/purry-on.js +6 -0
  292. package/dist/es/utils/purry-order-rules.js +61 -0
  293. package/dist/es/utils/quick-select.js +27 -0
  294. package/dist/es/utils/reduce-lazy.js +14 -0
  295. package/dist/es/utils/swap-in-place.js +3 -0
  296. package/dist/es/utils/to-lazy-indexed.js +3 -0
  297. package/dist/es/utils/to-single.js +4 -0
  298. package/dist/es/utils/types.js +1 -0
  299. package/dist/es/utils/with-precision.js +19 -0
  300. package/dist/metadata.json +48311 -0
  301. package/dist/types/aria/index.d.ts +2 -0
  302. package/dist/types/aria/index.d.ts.map +1 -0
  303. package/dist/types/aria/key-codes.d.ts +26 -0
  304. package/dist/types/aria/key-codes.d.ts.map +1 -0
  305. package/dist/types/array/all-pass.d.ts +32 -0
  306. package/dist/types/array/all-pass.d.ts.map +1 -0
  307. package/dist/types/array/any-pass.d.ts +32 -0
  308. package/dist/types/array/any-pass.d.ts.map +1 -0
  309. package/dist/types/array/chunk.d.ts +29 -0
  310. package/dist/types/array/chunk.d.ts.map +1 -0
  311. package/dist/types/array/compact.d.ts +12 -0
  312. package/dist/types/array/compact.d.ts.map +1 -0
  313. package/dist/types/array/concat.d.ts +24 -0
  314. package/dist/types/array/concat.d.ts.map +1 -0
  315. package/dist/types/array/count-by.d.ts +20 -0
  316. package/dist/types/array/count-by.d.ts.map +1 -0
  317. package/dist/types/array/difference-with.d.ts +48 -0
  318. package/dist/types/array/difference-with.d.ts.map +1 -0
  319. package/dist/types/array/difference.d.ts +35 -0
  320. package/dist/types/array/difference.d.ts.map +1 -0
  321. package/dist/types/array/drop-first-by.d.ts +39 -0
  322. package/dist/types/array/drop-first-by.d.ts.map +1 -0
  323. package/dist/types/array/drop-last-while.d.ts +30 -0
  324. package/dist/types/array/drop-last-while.d.ts.map +1 -0
  325. package/dist/types/array/drop-last.d.ts +25 -0
  326. package/dist/types/array/drop-last.d.ts.map +1 -0
  327. package/dist/types/array/drop-while.d.ts +33 -0
  328. package/dist/types/array/drop-while.d.ts.map +1 -0
  329. package/dist/types/array/drop.d.ts +31 -0
  330. package/dist/types/array/drop.d.ts.map +1 -0
  331. package/dist/types/array/filter.d.ts +49 -0
  332. package/dist/types/array/filter.d.ts.map +1 -0
  333. package/dist/types/array/find-index.d.ts +67 -0
  334. package/dist/types/array/find-index.d.ts.map +1 -0
  335. package/dist/types/array/find-last-index.d.ts +43 -0
  336. package/dist/types/array/find-last-index.d.ts.map +1 -0
  337. package/dist/types/array/find-last.d.ts +45 -0
  338. package/dist/types/array/find-last.d.ts.map +1 -0
  339. package/dist/types/array/find.d.ts +59 -0
  340. package/dist/types/array/find.d.ts.map +1 -0
  341. package/dist/types/array/first-by.d.ts +57 -0
  342. package/dist/types/array/first-by.d.ts.map +1 -0
  343. package/dist/types/array/first.d.ts +35 -0
  344. package/dist/types/array/first.d.ts.map +1 -0
  345. package/dist/types/array/flat-map-to-obj.d.ts +50 -0
  346. package/dist/types/array/flat-map-to-obj.d.ts.map +1 -0
  347. package/dist/types/array/flat-map.d.ts +39 -0
  348. package/dist/types/array/flat-map.d.ts.map +1 -0
  349. package/dist/types/array/flatten-deep.d.ts +26 -0
  350. package/dist/types/array/flatten-deep.d.ts.map +1 -0
  351. package/dist/types/array/flatten.d.ts +23 -0
  352. package/dist/types/array/flatten.d.ts.map +1 -0
  353. package/dist/types/array/for-each.d.ts +57 -0
  354. package/dist/types/array/for-each.d.ts.map +1 -0
  355. package/dist/types/array/group-by.d.ts +36 -0
  356. package/dist/types/array/group-by.d.ts.map +1 -0
  357. package/dist/types/array/has-at-least.d.ts +47 -0
  358. package/dist/types/array/has-at-least.d.ts.map +1 -0
  359. package/dist/types/array/index-by.d.ts +34 -0
  360. package/dist/types/array/index-by.d.ts.map +1 -0
  361. package/dist/types/array/index.d.ts +66 -0
  362. package/dist/types/array/index.d.ts.map +1 -0
  363. package/dist/types/array/intersection-with.d.ts +54 -0
  364. package/dist/types/array/intersection-with.d.ts.map +1 -0
  365. package/dist/types/array/intersection.d.ts +30 -0
  366. package/dist/types/array/intersection.d.ts.map +1 -0
  367. package/dist/types/array/join.d.ts +45 -0
  368. package/dist/types/array/join.d.ts.map +1 -0
  369. package/dist/types/array/last.d.ts +24 -0
  370. package/dist/types/array/last.d.ts.map +1 -0
  371. package/dist/types/array/length.d.ts +14 -0
  372. package/dist/types/array/length.d.ts.map +1 -0
  373. package/dist/types/array/map-to-obj.d.ts +42 -0
  374. package/dist/types/array/map-to-obj.d.ts.map +1 -0
  375. package/dist/types/array/map.d.ts +62 -0
  376. package/dist/types/array/map.d.ts.map +1 -0
  377. package/dist/types/array/max-by.d.ts +39 -0
  378. package/dist/types/array/max-by.d.ts.map +1 -0
  379. package/dist/types/array/mean-by.d.ts +39 -0
  380. package/dist/types/array/mean-by.d.ts.map +1 -0
  381. package/dist/types/array/merge-all.d.ts +16 -0
  382. package/dist/types/array/merge-all.d.ts.map +1 -0
  383. package/dist/types/array/min-by.d.ts +39 -0
  384. package/dist/types/array/min-by.d.ts.map +1 -0
  385. package/dist/types/array/nth-by.d.ts +45 -0
  386. package/dist/types/array/nth-by.d.ts.map +1 -0
  387. package/dist/types/array/only.d.ts +36 -0
  388. package/dist/types/array/only.d.ts.map +1 -0
  389. package/dist/types/array/partition.d.ts +60 -0
  390. package/dist/types/array/partition.d.ts.map +1 -0
  391. package/dist/types/array/range.d.ts +22 -0
  392. package/dist/types/array/range.d.ts.map +1 -0
  393. package/dist/types/array/rank-by.d.ts +41 -0
  394. package/dist/types/array/rank-by.d.ts.map +1 -0
  395. package/dist/types/array/reduce.d.ts +35 -0
  396. package/dist/types/array/reduce.d.ts.map +1 -0
  397. package/dist/types/array/reject.d.ts +42 -0
  398. package/dist/types/array/reject.d.ts.map +1 -0
  399. package/dist/types/array/reverse.d.ts +25 -0
  400. package/dist/types/array/reverse.d.ts.map +1 -0
  401. package/dist/types/array/sample.d.ts +54 -0
  402. package/dist/types/array/sample.d.ts.map +1 -0
  403. package/dist/types/array/shuffle.d.ts +22 -0
  404. package/dist/types/array/shuffle.d.ts.map +1 -0
  405. package/dist/types/array/sort-by.d.ts +99 -0
  406. package/dist/types/array/sort-by.d.ts.map +1 -0
  407. package/dist/types/array/sort.d.ts +52 -0
  408. package/dist/types/array/sort.d.ts.map +1 -0
  409. package/dist/types/array/splice.d.ts +31 -0
  410. package/dist/types/array/splice.d.ts.map +1 -0
  411. package/dist/types/array/split-at.d.ts +26 -0
  412. package/dist/types/array/split-at.d.ts.map +1 -0
  413. package/dist/types/array/split-when.d.ts +24 -0
  414. package/dist/types/array/split-when.d.ts.map +1 -0
  415. package/dist/types/array/sum-by.d.ts +39 -0
  416. package/dist/types/array/sum-by.d.ts.map +1 -0
  417. package/dist/types/array/swap-indices.d.ts +68 -0
  418. package/dist/types/array/swap-indices.d.ts.map +1 -0
  419. package/dist/types/array/take-first-by.d.ts +43 -0
  420. package/dist/types/array/take-first-by.d.ts.map +1 -0
  421. package/dist/types/array/take-while.d.ts +24 -0
  422. package/dist/types/array/take-while.d.ts.map +1 -0
  423. package/dist/types/array/take.d.ts +30 -0
  424. package/dist/types/array/take.d.ts.map +1 -0
  425. package/dist/types/array/uniq-by.d.ts +22 -0
  426. package/dist/types/array/uniq-by.d.ts.map +1 -0
  427. package/dist/types/array/uniq-with.d.ts +44 -0
  428. package/dist/types/array/uniq-with.d.ts.map +1 -0
  429. package/dist/types/array/uniq.d.ts +24 -0
  430. package/dist/types/array/uniq.d.ts.map +1 -0
  431. package/dist/types/array/zip-obj.d.ts +26 -0
  432. package/dist/types/array/zip-obj.d.ts.map +1 -0
  433. package/dist/types/array/zip-with.d.ts +42 -0
  434. package/dist/types/array/zip-with.d.ts.map +1 -0
  435. package/dist/types/array/zip.d.ts +52 -0
  436. package/dist/types/array/zip.d.ts.map +1 -0
  437. package/dist/types/function/conditional.d.ts +108 -0
  438. package/dist/types/function/conditional.d.ts.map +1 -0
  439. package/dist/types/function/create-pipe.d.ts +19 -0
  440. package/dist/types/function/create-pipe.d.ts.map +1 -0
  441. package/dist/types/function/debounce.d.ts +92 -0
  442. package/dist/types/function/debounce.d.ts.map +1 -0
  443. package/dist/types/function/identity.d.ts +10 -0
  444. package/dist/types/function/identity.d.ts.map +1 -0
  445. package/dist/types/function/index.d.ts +10 -0
  446. package/dist/types/function/index.d.ts.map +1 -0
  447. package/dist/types/function/noop.d.ts +10 -0
  448. package/dist/types/function/noop.d.ts.map +1 -0
  449. package/dist/types/function/once.d.ts +13 -0
  450. package/dist/types/function/once.d.ts.map +1 -0
  451. package/dist/types/function/pipe.d.ts +32 -0
  452. package/dist/types/function/pipe.d.ts.map +1 -0
  453. package/dist/types/function/purry.d.ts +32 -0
  454. package/dist/types/function/purry.d.ts.map +1 -0
  455. package/dist/types/function/sleep.d.ts +12 -0
  456. package/dist/types/function/sleep.d.ts.map +1 -0
  457. package/dist/types/guard/index.d.ts +17 -0
  458. package/dist/types/guard/index.d.ts.map +1 -0
  459. package/dist/types/guard/is-array.d.ts +15 -0
  460. package/dist/types/guard/is-array.d.ts.map +1 -0
  461. package/dist/types/guard/is-boolean.d.ts +15 -0
  462. package/dist/types/guard/is-boolean.d.ts.map +1 -0
  463. package/dist/types/guard/is-date.d.ts +13 -0
  464. package/dist/types/guard/is-date.d.ts.map +1 -0
  465. package/dist/types/guard/is-defined.d.ts +22 -0
  466. package/dist/types/guard/is-defined.d.ts.map +1 -0
  467. package/dist/types/guard/is-empty.d.ts +19 -0
  468. package/dist/types/guard/is-empty.d.ts.map +1 -0
  469. package/dist/types/guard/is-error.d.ts +15 -0
  470. package/dist/types/guard/is-error.d.ts.map +1 -0
  471. package/dist/types/guard/is-function.d.ts +15 -0
  472. package/dist/types/guard/is-function.d.ts.map +1 -0
  473. package/dist/types/guard/is-nil.d.ts +14 -0
  474. package/dist/types/guard/is-nil.d.ts.map +1 -0
  475. package/dist/types/guard/is-non-null.d.ts +15 -0
  476. package/dist/types/guard/is-non-null.d.ts.map +1 -0
  477. package/dist/types/guard/is-not.d.ts +15 -0
  478. package/dist/types/guard/is-not.d.ts.map +1 -0
  479. package/dist/types/guard/is-number.d.ts +14 -0
  480. package/dist/types/guard/is-number.d.ts.map +1 -0
  481. package/dist/types/guard/is-object.d.ts +28 -0
  482. package/dist/types/guard/is-object.d.ts.map +1 -0
  483. package/dist/types/guard/is-promise.d.ts +14 -0
  484. package/dist/types/guard/is-promise.d.ts.map +1 -0
  485. package/dist/types/guard/is-string.d.ts +14 -0
  486. package/dist/types/guard/is-string.d.ts.map +1 -0
  487. package/dist/types/guard/is-symbol.d.ts +14 -0
  488. package/dist/types/guard/is-symbol.d.ts.map +1 -0
  489. package/dist/types/guard/is-truthy.d.ts +17 -0
  490. package/dist/types/guard/is-truthy.d.ts.map +1 -0
  491. package/dist/types/index.d.ts +10 -0
  492. package/dist/types/index.d.ts.map +1 -0
  493. package/dist/types/number/add.d.ts +29 -0
  494. package/dist/types/number/add.d.ts.map +1 -0
  495. package/dist/types/number/ceil.d.ts +35 -0
  496. package/dist/types/number/ceil.d.ts.map +1 -0
  497. package/dist/types/number/clamp.d.ts +38 -0
  498. package/dist/types/number/clamp.d.ts.map +1 -0
  499. package/dist/types/number/divide.d.ts +27 -0
  500. package/dist/types/number/divide.d.ts.map +1 -0
  501. package/dist/types/number/floor.d.ts +35 -0
  502. package/dist/types/number/floor.d.ts.map +1 -0
  503. package/dist/types/number/index.d.ts +9 -0
  504. package/dist/types/number/index.d.ts.map +1 -0
  505. package/dist/types/number/multiply.d.ts +27 -0
  506. package/dist/types/number/multiply.d.ts.map +1 -0
  507. package/dist/types/number/round.d.ts +35 -0
  508. package/dist/types/number/round.d.ts.map +1 -0
  509. package/dist/types/number/subtract.d.ts +29 -0
  510. package/dist/types/number/subtract.d.ts.map +1 -0
  511. package/dist/types/object/add-prop.d.ts +30 -0
  512. package/dist/types/object/add-prop.d.ts.map +1 -0
  513. package/dist/types/object/clone.d.ts +10 -0
  514. package/dist/types/object/clone.d.ts.map +1 -0
  515. package/dist/types/object/equals.d.ts +30 -0
  516. package/dist/types/object/equals.d.ts.map +1 -0
  517. package/dist/types/object/for-each-obj.d.ts +44 -0
  518. package/dist/types/object/for-each-obj.d.ts.map +1 -0
  519. package/dist/types/object/from-pairs.d.ts +38 -0
  520. package/dist/types/object/from-pairs.d.ts.map +1 -0
  521. package/dist/types/object/index.d.ts +24 -0
  522. package/dist/types/object/index.d.ts.map +1 -0
  523. package/dist/types/object/invert.d.ts +28 -0
  524. package/dist/types/object/invert.d.ts.map +1 -0
  525. package/dist/types/object/keys.d.ts +34 -0
  526. package/dist/types/object/keys.d.ts.map +1 -0
  527. package/dist/types/object/map-keys.d.ts +24 -0
  528. package/dist/types/object/map-keys.d.ts.map +1 -0
  529. package/dist/types/object/map-values.d.ts +25 -0
  530. package/dist/types/object/map-values.d.ts.map +1 -0
  531. package/dist/types/object/merge-deep.d.ts +32 -0
  532. package/dist/types/object/merge-deep.d.ts.map +1 -0
  533. package/dist/types/object/merge.d.ts +25 -0
  534. package/dist/types/object/merge.d.ts.map +1 -0
  535. package/dist/types/object/omit-by.d.ts +22 -0
  536. package/dist/types/object/omit-by.d.ts.map +1 -0
  537. package/dist/types/object/omit.d.ts +24 -0
  538. package/dist/types/object/omit.d.ts.map +1 -0
  539. package/dist/types/object/path-or.d.ts +76 -0
  540. package/dist/types/object/path-or.d.ts.map +1 -0
  541. package/dist/types/object/pick-by.d.ts +22 -0
  542. package/dist/types/object/pick-by.d.ts.map +1 -0
  543. package/dist/types/object/pick.d.ts +22 -0
  544. package/dist/types/object/pick.d.ts.map +1 -0
  545. package/dist/types/object/prop.d.ts +11 -0
  546. package/dist/types/object/prop.d.ts.map +1 -0
  547. package/dist/types/object/set-path.d.ts +29 -0
  548. package/dist/types/object/set-path.d.ts.map +1 -0
  549. package/dist/types/object/set.d.ts +26 -0
  550. package/dist/types/object/set.d.ts.map +1 -0
  551. package/dist/types/object/swap-props.d.ts +44 -0
  552. package/dist/types/object/swap-props.d.ts.map +1 -0
  553. package/dist/types/object/to-pairs.d.ts +33 -0
  554. package/dist/types/object/to-pairs.d.ts.map +1 -0
  555. package/dist/types/object/values.d.ts +20 -0
  556. package/dist/types/object/values.d.ts.map +1 -0
  557. package/dist/types/string/cases-types.d.ts +36 -0
  558. package/dist/types/string/cases-types.d.ts.map +1 -0
  559. package/dist/types/string/cases.d.ts +22 -0
  560. package/dist/types/string/cases.d.ts.map +1 -0
  561. package/dist/types/string/human-readable-file-size.d.ts +13 -0
  562. package/dist/types/string/human-readable-file-size.d.ts.map +1 -0
  563. package/dist/types/string/index.d.ts +6 -0
  564. package/dist/types/string/index.d.ts.map +1 -0
  565. package/dist/types/string/random-string.d.ts +10 -0
  566. package/dist/types/string/random-string.d.ts.map +1 -0
  567. package/dist/types/string/slugify.d.ts +12 -0
  568. package/dist/types/string/slugify.d.ts.map +1 -0
  569. package/dist/types/string/string-to-path.d.ts +11 -0
  570. package/dist/types/string/string-to-path.d.ts.map +1 -0
  571. package/dist/types/type/index.d.ts +2 -0
  572. package/dist/types/type/index.d.ts.map +1 -0
  573. package/dist/types/type/type.d.ts +19 -0
  574. package/dist/types/type/type.d.ts.map +1 -0
  575. package/dist/types/utils/heap.d.ts +24 -0
  576. package/dist/types/utils/heap.d.ts.map +1 -0
  577. package/dist/types/utils/narrow.d.ts +52 -0
  578. package/dist/types/utils/narrow.d.ts.map +1 -0
  579. package/dist/types/utils/paths.d.ts +9 -0
  580. package/dist/types/utils/paths.d.ts.map +1 -0
  581. package/dist/types/utils/purry-on.d.ts +7 -0
  582. package/dist/types/utils/purry-on.d.ts.map +1 -0
  583. package/dist/types/utils/purry-order-rules.d.ts +52 -0
  584. package/dist/types/utils/purry-order-rules.d.ts.map +1 -0
  585. package/dist/types/utils/quick-select.d.ts +18 -0
  586. package/dist/types/utils/quick-select.d.ts.map +1 -0
  587. package/dist/types/utils/reduce-lazy.d.ts +22 -0
  588. package/dist/types/utils/reduce-lazy.d.ts.map +1 -0
  589. package/dist/types/utils/swap-in-place.d.ts +5 -0
  590. package/dist/types/utils/swap-in-place.d.ts.map +1 -0
  591. package/dist/types/utils/to-lazy-indexed.d.ts +4 -0
  592. package/dist/types/utils/to-lazy-indexed.d.ts.map +1 -0
  593. package/dist/types/utils/to-single.d.ts +4 -0
  594. package/dist/types/utils/to-single.d.ts.map +1 -0
  595. package/dist/types/utils/types.d.ts +32 -0
  596. package/dist/types/utils/types.d.ts.map +1 -0
  597. package/dist/types/utils/with-precision.d.ts +2 -0
  598. package/dist/types/utils/with-precision.d.ts.map +1 -0
  599. package/package.json +35 -24
  600. package/dist/index.cjs +0 -2403
  601. package/dist/index.d.cts +0 -3378
  602. package/dist/index.d.ts +0 -3378
  603. package/dist/index.js +0 -2260
  604. package/dist/index.min.js +0 -2
  605. package/dist/index.min.js.map +0 -7
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.sample = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ function sample(...args) {
6
+ return (0, purry_1.purry)(sampleImplementation, args);
7
+ }
8
+ exports.sample = sample;
9
+ function sampleImplementation(data, sampleSize) {
10
+ if (sampleSize < 0) {
11
+ throw new RangeError(`sampleSize must cannot be negative: ${sampleSize}`);
12
+ }
13
+ if (!Number.isInteger(sampleSize)) {
14
+ throw new TypeError(`sampleSize must be an integer: ${sampleSize}`);
15
+ }
16
+ if (sampleSize >= data.length) {
17
+ return data;
18
+ }
19
+ if (sampleSize === 0) {
20
+ return [];
21
+ }
22
+ const actualSampleSize = Math.min(sampleSize, data.length - sampleSize);
23
+ const sampleIndices = new Set();
24
+ while (sampleIndices.size < actualSampleSize) {
25
+ const randomIndex = Math.floor(Math.random() * data.length);
26
+ sampleIndices.add(randomIndex);
27
+ }
28
+ if (sampleSize === actualSampleSize) {
29
+ return Array.from(sampleIndices)
30
+ .sort((a, b) => a - b)
31
+ .map((index) => data[index]);
32
+ }
33
+ return data.filter((_, index) => !sampleIndices.has(index));
34
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.shuffle = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ function shuffle(...args) {
6
+ return (0, purry_1.purry)(_shuffle, args);
7
+ }
8
+ exports.shuffle = shuffle;
9
+ function _shuffle(items) {
10
+ const result = items.slice();
11
+ for (let index = 0; index < items.length; index += 1) {
12
+ const rand = index + Math.floor(Math.random() * (items.length - index));
13
+ const value = result[rand];
14
+ result[rand] = result[index];
15
+ result[index] = value;
16
+ }
17
+ return result;
18
+ }
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.sortBy = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ const ALL_DIRECTIONS = ['asc', 'desc'];
6
+ const COMPARATOR = {
7
+ asc: (x, y) => x > y,
8
+ desc: (x, y) => x < y,
9
+ };
10
+ function sortBy(arrayOrSortRule, ...sortRules) {
11
+ const args = isSortRule(arrayOrSortRule)
12
+ ? [[arrayOrSortRule, ...sortRules]]
13
+ : [arrayOrSortRule, sortRules];
14
+ return (0, purry_1.purry)(_sortBy, args);
15
+ }
16
+ exports.sortBy = sortBy;
17
+ function isSortRule(x) {
18
+ if (typeof x === 'function') {
19
+ return true;
20
+ }
21
+ const [maybeProjection, maybeDirection, ...rest] = x;
22
+ if (rest.length > 0) {
23
+ return false;
24
+ }
25
+ return (typeof maybeProjection === 'function'
26
+ && ALL_DIRECTIONS.includes(maybeDirection));
27
+ }
28
+ function _sortBy(array, sorts) {
29
+ return [...array].sort(comparer(...sorts));
30
+ }
31
+ function comparer(primaryRule, secondaryRule, ...otherRules) {
32
+ const projector = typeof primaryRule === 'function' ? primaryRule : primaryRule[0];
33
+ const direction = typeof primaryRule === 'function' ? 'asc' : primaryRule[1];
34
+ const comparator = COMPARATOR[direction];
35
+ const nextComparer = secondaryRule === undefined
36
+ ? undefined
37
+ : comparer(secondaryRule, ...otherRules);
38
+ return (a, b) => {
39
+ const projectedA = projector(a);
40
+ const projectedB = projector(b);
41
+ if (comparator(projectedA, projectedB)) {
42
+ return 1;
43
+ }
44
+ if (comparator(projectedB, projectedA)) {
45
+ return -1;
46
+ }
47
+ return nextComparer?.(a, b) ?? 0;
48
+ };
49
+ }
50
+ (function (sortBy) {
51
+ sortBy.strict = sortBy;
52
+ })(sortBy || (exports.sortBy = sortBy = {}));
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.sort = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ function sort(...args) {
6
+ return (0, purry_1.purry)(_sort, args);
7
+ }
8
+ exports.sort = sort;
9
+ function _sort(items, cmp) {
10
+ const ret = [...items];
11
+ ret.sort(cmp);
12
+ return ret;
13
+ }
14
+ (function (sort) {
15
+ sort.strict = sort;
16
+ })(sort || (exports.sort = sort = {}));
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.splice = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ function splice(...args) {
6
+ return (0, purry_1.purry)(_splice, args);
7
+ }
8
+ exports.splice = splice;
9
+ function _splice(items, start, deleteCount, replacement) {
10
+ const result = [...items];
11
+ result.splice(start, deleteCount, ...replacement);
12
+ return result;
13
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.splitAt = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ function splitAt(...args) {
6
+ return (0, purry_1.purry)(_splitAt, args);
7
+ }
8
+ exports.splitAt = splitAt;
9
+ function _splitAt(array, index) {
10
+ const copy = [...array];
11
+ const tail = copy.splice(index);
12
+ return [copy, tail];
13
+ }
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.splitWhen = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ const split_at_1 = require("./split-at");
6
+ function splitWhen(...args) {
7
+ return (0, purry_1.purry)(_splitWhen, args);
8
+ }
9
+ exports.splitWhen = splitWhen;
10
+ function _splitWhen(array, fn) {
11
+ for (let i = 0; i < array.length; i++) {
12
+ if (fn(array[i])) {
13
+ return (0, split_at_1.splitAt)(array, i);
14
+ }
15
+ }
16
+ return [array, []];
17
+ }
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.sumBy = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ function _sumBy(indexed) {
6
+ return (array, fn) => {
7
+ let sum = 0;
8
+ array.forEach((item, i) => {
9
+ const summand = indexed ? fn(item, i, array) : fn(item);
10
+ sum += summand;
11
+ });
12
+ return sum;
13
+ };
14
+ }
15
+ function sumBy(...args) {
16
+ return (0, purry_1.purry)(_sumBy(false), args);
17
+ }
18
+ exports.sumBy = sumBy;
19
+ (function (sumBy) {
20
+ function indexed(...args) {
21
+ return (0, purry_1.purry)(_sumBy(true), args);
22
+ }
23
+ sumBy.indexed = indexed;
24
+ })(sumBy || (exports.sumBy = sumBy = {}));
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.swapIndices = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ function swapIndices(...args) {
6
+ return (0, purry_1.purry)(_swapIndices, args);
7
+ }
8
+ exports.swapIndices = swapIndices;
9
+ function _swapIndices(item, index1, index2) {
10
+ return typeof item === 'string'
11
+ ? _swapString(item, index1, index2)
12
+ : _swapArray(item, index1, index2);
13
+ }
14
+ function _swapArray(item, index1, index2) {
15
+ const result = item.slice();
16
+ if (Number.isNaN(index1) || Number.isNaN(index2)) {
17
+ return result;
18
+ }
19
+ const positiveIndexA = index1 < 0 ? item.length + index1 : index1;
20
+ const positiveIndexB = index2 < 0 ? item.length + index2 : index2;
21
+ if (positiveIndexA < 0 || positiveIndexA > item.length) {
22
+ return result;
23
+ }
24
+ if (positiveIndexB < 0 || positiveIndexB > item.length) {
25
+ return result;
26
+ }
27
+ result[positiveIndexA] = item[positiveIndexB];
28
+ result[positiveIndexB] = item[positiveIndexA];
29
+ return result;
30
+ }
31
+ function _swapString(item, index1, index2) {
32
+ const result = _swapArray(item.split(''), index1, index2);
33
+ return result.join('');
34
+ }
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.takeFirstBy = void 0;
4
+ const heap_1 = require("../utils/heap");
5
+ const purry_order_rules_1 = require("../utils/purry-order-rules");
6
+ function takeFirstBy(...args) {
7
+ return (0, purry_order_rules_1.purryOrderRulesWithArgument)(takeFirstByImplementation, args);
8
+ }
9
+ exports.takeFirstBy = takeFirstBy;
10
+ function takeFirstByImplementation(data, compareFn, n) {
11
+ if (n <= 0) {
12
+ return [];
13
+ }
14
+ if (n >= data.length) {
15
+ return [...data];
16
+ }
17
+ const heap = data.slice(0, n);
18
+ (0, heap_1.heapify)(heap, compareFn);
19
+ const rest = data.slice(n);
20
+ for (const item of rest) {
21
+ (0, heap_1.heapMaybeInsert)(heap, compareFn, item);
22
+ }
23
+ return heap;
24
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.takeWhile = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ function takeWhile(...args) {
6
+ return (0, purry_1.purry)(_takeWhile, args);
7
+ }
8
+ exports.takeWhile = takeWhile;
9
+ function _takeWhile(array, fn) {
10
+ const ret = [];
11
+ for (const item of array) {
12
+ if (!fn(item)) {
13
+ break;
14
+ }
15
+ ret.push(item);
16
+ }
17
+ return ret;
18
+ }
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.take = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ const reduce_lazy_1 = require("../utils/reduce-lazy");
6
+ function take(...args) {
7
+ return (0, purry_1.purry)(_take, args, take.lazy);
8
+ }
9
+ exports.take = take;
10
+ function _take(array, n) {
11
+ return (0, reduce_lazy_1.reduceLazy)(array, take.lazy(n));
12
+ }
13
+ (function (take) {
14
+ function lazy(n) {
15
+ return (value) => {
16
+ if (n === 0) {
17
+ return {
18
+ done: true,
19
+ hasNext: false,
20
+ };
21
+ }
22
+ n--;
23
+ if (n === 0) {
24
+ return {
25
+ done: true,
26
+ hasNext: true,
27
+ next: value,
28
+ };
29
+ }
30
+ return {
31
+ done: false,
32
+ hasNext: true,
33
+ next: value,
34
+ };
35
+ };
36
+ }
37
+ take.lazy = lazy;
38
+ })(take || (exports.take = take = {}));
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.uniqBy = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ const reduce_lazy_1 = require("../utils/reduce-lazy");
6
+ function uniqBy(...args) {
7
+ return (0, purry_1.purry)(_uniqBy, args, lazyUniqBy);
8
+ }
9
+ exports.uniqBy = uniqBy;
10
+ function _uniqBy(array, transformer) {
11
+ return (0, reduce_lazy_1.reduceLazy)(array, lazyUniqBy(transformer));
12
+ }
13
+ function lazyUniqBy(transformer) {
14
+ const set = new Set();
15
+ return (value) => {
16
+ const appliedItem = transformer(value);
17
+ if (set.has(appliedItem)) {
18
+ return {
19
+ done: false,
20
+ hasNext: false,
21
+ };
22
+ }
23
+ set.add(appliedItem);
24
+ return {
25
+ done: false,
26
+ hasNext: true,
27
+ next: value,
28
+ };
29
+ };
30
+ }
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.uniqWith = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ const reduce_lazy_1 = require("../utils/reduce-lazy");
6
+ const to_lazy_indexed_1 = require("../utils/to-lazy-indexed");
7
+ function uniqWith(...args) {
8
+ return (0, purry_1.purry)(_uniqWith, args, uniqWith.lazy);
9
+ }
10
+ exports.uniqWith = uniqWith;
11
+ function _uniqWith(array, isEquals) {
12
+ const lazy = uniqWith.lazy(isEquals);
13
+ return (0, reduce_lazy_1.reduceLazy)(array, lazy, true);
14
+ }
15
+ function _lazy(isEquals) {
16
+ return (value, index, array) => {
17
+ if (array
18
+ && array.findIndex((otherValue) => isEquals(value, otherValue)) === index) {
19
+ return {
20
+ done: false,
21
+ hasNext: true,
22
+ next: value,
23
+ };
24
+ }
25
+ return {
26
+ done: false,
27
+ hasNext: false,
28
+ };
29
+ };
30
+ }
31
+ (function (uniqWith) {
32
+ uniqWith.lazy = (0, to_lazy_indexed_1.toLazyIndexed)(_lazy);
33
+ })(uniqWith || (exports.uniqWith = uniqWith = {}));
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.uniq = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ const reduce_lazy_1 = require("../utils/reduce-lazy");
6
+ function uniq(...args) {
7
+ return (0, purry_1.purry)(_uniq, args, uniq.lazy);
8
+ }
9
+ exports.uniq = uniq;
10
+ function _uniq(array) {
11
+ return (0, reduce_lazy_1.reduceLazy)(array, uniq.lazy());
12
+ }
13
+ (function (uniq) {
14
+ function lazy() {
15
+ const set = new Set();
16
+ return (value) => {
17
+ if (set.has(value)) {
18
+ return {
19
+ done: false,
20
+ hasNext: false,
21
+ };
22
+ }
23
+ set.add(value);
24
+ return {
25
+ done: false,
26
+ hasNext: true,
27
+ next: value,
28
+ };
29
+ };
30
+ }
31
+ uniq.lazy = lazy;
32
+ })(uniq || (exports.uniq = uniq = {}));
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.zipObj = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ function zipObj(...args) {
6
+ return (0, purry_1.purry)(_zipObj, args);
7
+ }
8
+ exports.zipObj = zipObj;
9
+ function _zipObj(first, second) {
10
+ const resultLength = first.length > second.length ? second.length : first.length;
11
+ const result = {};
12
+ for (let i = 0; i < resultLength; i++) {
13
+ result[first[i]] = second[i];
14
+ }
15
+ return result;
16
+ }
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.zipWith = void 0;
4
+ function zipWith(arg0, arg1, arg2) {
5
+ if (typeof arg0 === 'function') {
6
+ return arg1 === undefined
7
+ ? (f, s) => _zipWith(f, s, arg0)
8
+ : (f) => _zipWith(f, arg1, arg0);
9
+ }
10
+ if (arg1 === undefined || arg2 === undefined) {
11
+ throw new Error('zipWith: Missing arguments in dataFirst function call');
12
+ }
13
+ return _zipWith(arg0, arg1, arg2);
14
+ }
15
+ exports.zipWith = zipWith;
16
+ function _zipWith(first, second, fn) {
17
+ const resultLength = first.length > second.length ? second.length : first.length;
18
+ const result = [];
19
+ for (let i = 0; i < resultLength; i++) {
20
+ result.push(fn(first[i], second[i]));
21
+ }
22
+ return result;
23
+ }
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.zip = void 0;
4
+ const purry_1 = require("../function/purry");
5
+ function zip(...args) {
6
+ return (0, purry_1.purry)(_zip, args);
7
+ }
8
+ exports.zip = zip;
9
+ function _zip(first, second) {
10
+ const resultLength = first.length > second.length ? second.length : first.length;
11
+ const result = [];
12
+ for (let i = 0; i < resultLength; i++) {
13
+ result.push([first[i], second[i]]);
14
+ }
15
+ return result;
16
+ }
17
+ (function (zip) {
18
+ zip.strict = zip;
19
+ })(zip || (exports.zip = zip = {}));
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.conditional = void 0;
4
+ const purry_on_1 = require("../utils/purry-on");
5
+ function conditional(...args) {
6
+ return (0, purry_on_1.purryOn)(isCase, conditionalImplementation, args);
7
+ }
8
+ exports.conditional = conditional;
9
+ function conditionalImplementation(data, ...cases) {
10
+ for (const [when, then] of cases) {
11
+ if (when(data)) {
12
+ return then(data);
13
+ }
14
+ }
15
+ throw new Error('conditional: data failed for all cases');
16
+ }
17
+ function isCase(maybeCase) {
18
+ if (!Array.isArray(maybeCase)) {
19
+ return false;
20
+ }
21
+ const [when, then, ...rest] = maybeCase;
22
+ return (typeof when === 'function'
23
+ && when.length <= 1
24
+ && typeof then === 'function'
25
+ && then.length <= 1
26
+ && rest.length === 0);
27
+ }
28
+ const trivialDefaultCase = () => undefined;
29
+ (function (conditional) {
30
+ function defaultCase(then = trivialDefaultCase) {
31
+ return [() => true, then];
32
+ }
33
+ conditional.defaultCase = defaultCase;
34
+ })(conditional || (exports.conditional = conditional = {}));
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.createPipe = void 0;
4
+ const pipe_1 = require("./pipe");
5
+ function createPipe(...operations) {
6
+ return (value) => pipe_1.pipe(value, ...operations);
7
+ }
8
+ exports.createPipe = createPipe;
@@ -0,0 +1,88 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.debounce = void 0;
4
+ function debounce(func, { maxWaitMs, timing = 'trailing', waitMs, }) {
5
+ if (maxWaitMs !== undefined && waitMs !== undefined && maxWaitMs < waitMs) {
6
+ throw new Error(`debounce: maxWaitMs (${maxWaitMs}) cannot be less than waitMs (${waitMs})`);
7
+ }
8
+ let coolDownTimeoutId;
9
+ let maxWaitTimeoutId;
10
+ let latestCallArgs;
11
+ let result;
12
+ function handleDebouncedCall(args) {
13
+ latestCallArgs = args;
14
+ if (maxWaitMs !== undefined && maxWaitTimeoutId === undefined) {
15
+ maxWaitTimeoutId = setTimeout(handleInvoke, maxWaitMs);
16
+ }
17
+ }
18
+ function handleInvoke() {
19
+ if (latestCallArgs === undefined) {
20
+ return;
21
+ }
22
+ if (maxWaitTimeoutId !== undefined) {
23
+ const timeoutId = maxWaitTimeoutId;
24
+ maxWaitTimeoutId = undefined;
25
+ clearTimeout(timeoutId);
26
+ }
27
+ const args = latestCallArgs;
28
+ latestCallArgs = undefined;
29
+ result = func(...args);
30
+ }
31
+ function handleCoolDownEnd() {
32
+ if (coolDownTimeoutId === undefined) {
33
+ return;
34
+ }
35
+ const timeoutId = coolDownTimeoutId;
36
+ coolDownTimeoutId = undefined;
37
+ clearTimeout(timeoutId);
38
+ if (latestCallArgs !== undefined) {
39
+ handleInvoke();
40
+ }
41
+ }
42
+ return {
43
+ get cachedValue() {
44
+ return result;
45
+ },
46
+ call: (...args) => {
47
+ if (coolDownTimeoutId === undefined) {
48
+ if (timing === 'trailing') {
49
+ handleDebouncedCall(args);
50
+ }
51
+ else {
52
+ result = func(...args);
53
+ }
54
+ }
55
+ else {
56
+ if (timing !== 'leading') {
57
+ handleDebouncedCall(args);
58
+ }
59
+ const timeoutId = coolDownTimeoutId;
60
+ coolDownTimeoutId = undefined;
61
+ clearTimeout(timeoutId);
62
+ }
63
+ coolDownTimeoutId = setTimeout(handleCoolDownEnd, waitMs ?? maxWaitMs ?? 0);
64
+ return result;
65
+ },
66
+ cancel: () => {
67
+ if (coolDownTimeoutId !== undefined) {
68
+ const timeoutId = coolDownTimeoutId;
69
+ coolDownTimeoutId = undefined;
70
+ clearTimeout(timeoutId);
71
+ }
72
+ if (maxWaitTimeoutId !== undefined) {
73
+ const timeoutId = maxWaitTimeoutId;
74
+ maxWaitTimeoutId = undefined;
75
+ clearTimeout(timeoutId);
76
+ }
77
+ latestCallArgs = undefined;
78
+ },
79
+ flush: () => {
80
+ handleCoolDownEnd();
81
+ return result;
82
+ },
83
+ get isPending() {
84
+ return coolDownTimeoutId !== undefined;
85
+ },
86
+ };
87
+ }
88
+ exports.debounce = debounce;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.identity = void 0;
4
+ function identity(value) {
5
+ return value;
6
+ }
7
+ exports.identity = identity;
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./conditional"), exports);
18
+ __exportStar(require("./create-pipe"), exports);
19
+ __exportStar(require("./identity"), exports);
20
+ __exportStar(require("./noop"), exports);
21
+ __exportStar(require("./once"), exports);
22
+ __exportStar(require("./debounce"), exports);
23
+ __exportStar(require("./pipe"), exports);
24
+ __exportStar(require("./purry"), exports);
25
+ __exportStar(require("./sleep"), exports);
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.noop = void 0;
4
+ function noop() {
5
+ return undefined;
6
+ }
7
+ exports.noop = noop;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.once = void 0;
4
+ function once(fn) {
5
+ let called = false;
6
+ let ret;
7
+ return () => {
8
+ if (!called) {
9
+ ret = fn();
10
+ called = true;
11
+ }
12
+ return ret;
13
+ };
14
+ }
15
+ exports.once = once;