es-toolkit 1.46.1 → 1.47.0-dev.1821

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 (2409) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/_internal/DOMException.d.mts +4 -3
  3. package/dist/_internal/DOMException.d.ts +4 -3
  4. package/dist/_internal/DOMException.js +4 -10
  5. package/dist/_internal/DOMException.mjs +4 -6
  6. package/dist/_internal/compareValues.js +5 -12
  7. package/dist/_internal/compareValues.mjs +5 -8
  8. package/dist/_internal/globalThis.d.mts +3 -2
  9. package/dist/_internal/globalThis.d.ts +3 -2
  10. package/dist/_internal/globalThis.js +6 -14
  11. package/dist/_internal/globalThis.mjs +6 -10
  12. package/dist/_internal/isEqualsSameValueZero.d.mts +3 -2
  13. package/dist/_internal/isEqualsSameValueZero.d.ts +3 -2
  14. package/dist/_internal/isEqualsSameValueZero.js +16 -6
  15. package/dist/_internal/isEqualsSameValueZero.mjs +16 -2
  16. package/dist/_internal/isUnsafeProperty.js +13 -6
  17. package/dist/_internal/isUnsafeProperty.mjs +13 -2
  18. package/dist/_virtual/_rolldown/runtime.js +13 -0
  19. package/dist/_virtual/_rolldown/runtime.mjs +13 -0
  20. package/dist/array/at.d.mts +3 -2
  21. package/dist/array/at.d.ts +3 -2
  22. package/dist/array/at.js +26 -16
  23. package/dist/array/at.mjs +26 -12
  24. package/dist/array/cartesianProduct.d.mts +75 -0
  25. package/dist/array/cartesianProduct.d.ts +75 -0
  26. package/dist/array/cartesianProduct.js +23 -0
  27. package/dist/array/cartesianProduct.mjs +23 -0
  28. package/dist/array/chunk.d.mts +3 -2
  29. package/dist/array/chunk.d.ts +3 -2
  30. package/dist/array/chunk.js +34 -16
  31. package/dist/array/chunk.mjs +34 -12
  32. package/dist/array/combinations.d.mts +35 -0
  33. package/dist/array/combinations.d.ts +35 -0
  34. package/dist/array/combinations.js +53 -0
  35. package/dist/array/combinations.mjs +53 -0
  36. package/dist/array/compact.d.mts +3 -2
  37. package/dist/array/compact.d.ts +3 -2
  38. package/dist/array/compact.js +19 -13
  39. package/dist/array/compact.mjs +19 -9
  40. package/dist/array/countBy.d.mts +3 -2
  41. package/dist/array/countBy.d.ts +3 -2
  42. package/dist/array/countBy.js +42 -12
  43. package/dist/array/countBy.mjs +42 -8
  44. package/dist/array/difference.d.mts +3 -2
  45. package/dist/array/difference.d.ts +3 -2
  46. package/dist/array/difference.js +26 -7
  47. package/dist/array/difference.mjs +26 -3
  48. package/dist/array/differenceBy.d.mts +3 -2
  49. package/dist/array/differenceBy.d.ts +3 -2
  50. package/dist/array/differenceBy.js +38 -9
  51. package/dist/array/differenceBy.mjs +38 -5
  52. package/dist/array/differenceWith.d.mts +3 -2
  53. package/dist/array/differenceWith.d.ts +3 -2
  54. package/dist/array/differenceWith.js +35 -10
  55. package/dist/array/differenceWith.mjs +35 -6
  56. package/dist/array/drop.d.mts +3 -2
  57. package/dist/array/drop.d.ts +3 -2
  58. package/dist/array/drop.js +20 -7
  59. package/dist/array/drop.mjs +20 -3
  60. package/dist/array/dropRight.d.mts +3 -2
  61. package/dist/array/dropRight.d.ts +3 -2
  62. package/dist/array/dropRight.js +21 -10
  63. package/dist/array/dropRight.mjs +21 -6
  64. package/dist/array/dropRightWhile.d.mts +3 -2
  65. package/dist/array/dropRightWhile.d.ts +3 -2
  66. package/dist/array/dropRightWhile.js +22 -11
  67. package/dist/array/dropRightWhile.mjs +22 -7
  68. package/dist/array/dropWhile.d.mts +3 -2
  69. package/dist/array/dropWhile.d.ts +3 -2
  70. package/dist/array/dropWhile.js +23 -10
  71. package/dist/array/dropWhile.mjs +23 -6
  72. package/dist/array/fill.d.mts +3 -2
  73. package/dist/array/fill.d.ts +3 -2
  74. package/dist/array/fill.js +35 -12
  75. package/dist/array/fill.mjs +35 -8
  76. package/dist/array/filterAsync.d.mts +4 -3
  77. package/dist/array/filterAsync.d.ts +4 -3
  78. package/dist/array/filterAsync.js +35 -12
  79. package/dist/array/filterAsync.mjs +35 -8
  80. package/dist/array/flatMap.d.mts +3 -2
  81. package/dist/array/flatMap.d.ts +3 -2
  82. package/dist/array/flatMap.js +24 -8
  83. package/dist/array/flatMap.mjs +24 -4
  84. package/dist/array/flatMapAsync.d.mts +4 -3
  85. package/dist/array/flatMapAsync.d.ts +4 -3
  86. package/dist/array/flatMapAsync.js +38 -13
  87. package/dist/array/flatMapAsync.mjs +37 -9
  88. package/dist/array/flatMapDeep.d.mts +4 -3
  89. package/dist/array/flatMapDeep.d.ts +4 -3
  90. package/dist/array/flatMapDeep.js +17 -8
  91. package/dist/array/flatMapDeep.mjs +17 -4
  92. package/dist/array/flatten.d.mts +3 -2
  93. package/dist/array/flatten.d.ts +3 -2
  94. package/dist/array/flatten.js +29 -20
  95. package/dist/array/flatten.mjs +29 -16
  96. package/dist/array/flattenDeep.d.mts +3 -2
  97. package/dist/array/flattenDeep.d.ts +3 -2
  98. package/dist/array/flattenDeep.js +15 -8
  99. package/dist/array/flattenDeep.mjs +15 -4
  100. package/dist/array/forEachAsync.d.mts +4 -3
  101. package/dist/array/forEachAsync.d.ts +4 -3
  102. package/dist/array/forEachAsync.js +34 -11
  103. package/dist/array/forEachAsync.mjs +34 -7
  104. package/dist/array/forEachRight.d.mts +3 -2
  105. package/dist/array/forEachRight.d.ts +3 -2
  106. package/dist/array/forEachRight.js +28 -9
  107. package/dist/array/forEachRight.mjs +28 -5
  108. package/dist/array/groupBy.d.mts +3 -2
  109. package/dist/array/groupBy.d.ts +3 -2
  110. package/dist/array/groupBy.js +48 -15
  111. package/dist/array/groupBy.mjs +48 -11
  112. package/dist/array/head.d.mts +3 -2
  113. package/dist/array/head.d.ts +3 -2
  114. package/dist/array/head.js +18 -6
  115. package/dist/array/head.mjs +18 -2
  116. package/dist/array/index.d.mts +69 -66
  117. package/dist/array/index.d.ts +69 -66
  118. package/dist/array/index.js +137 -139
  119. package/dist/array/index.mjs +69 -66
  120. package/dist/array/initial.d.mts +3 -2
  121. package/dist/array/initial.d.ts +3 -2
  122. package/dist/array/initial.js +16 -6
  123. package/dist/array/initial.mjs +16 -2
  124. package/dist/array/intersection.d.mts +3 -2
  125. package/dist/array/intersection.d.ts +3 -2
  126. package/dist/array/intersection.js +22 -7
  127. package/dist/array/intersection.mjs +22 -3
  128. package/dist/array/intersectionBy.d.mts +3 -2
  129. package/dist/array/intersectionBy.d.ts +3 -2
  130. package/dist/array/intersectionBy.js +46 -16
  131. package/dist/array/intersectionBy.mjs +46 -12
  132. package/dist/array/intersectionWith.d.mts +3 -2
  133. package/dist/array/intersectionWith.d.ts +3 -2
  134. package/dist/array/intersectionWith.js +41 -10
  135. package/dist/array/intersectionWith.mjs +41 -6
  136. package/dist/array/isSubset.d.mts +3 -2
  137. package/dist/array/isSubset.d.ts +3 -2
  138. package/dist/array/isSubset.js +27 -8
  139. package/dist/array/isSubset.mjs +27 -4
  140. package/dist/array/isSubsetWith.d.mts +3 -2
  141. package/dist/array/isSubsetWith.d.ts +3 -2
  142. package/dist/array/isSubsetWith.js +34 -8
  143. package/dist/array/isSubsetWith.mjs +34 -4
  144. package/dist/array/keyBy.d.mts +3 -2
  145. package/dist/array/keyBy.d.ts +3 -2
  146. package/dist/array/keyBy.js +42 -12
  147. package/dist/array/keyBy.mjs +42 -8
  148. package/dist/array/last.d.mts +3 -2
  149. package/dist/array/last.d.ts +3 -2
  150. package/dist/array/last.js +25 -6
  151. package/dist/array/last.mjs +25 -2
  152. package/dist/array/limitAsync.d.mts +3 -2
  153. package/dist/array/limitAsync.d.ts +3 -2
  154. package/dist/array/limitAsync.js +43 -17
  155. package/dist/array/limitAsync.mjs +43 -13
  156. package/dist/array/mapAsync.d.mts +4 -3
  157. package/dist/array/mapAsync.d.ts +4 -3
  158. package/dist/array/mapAsync.js +33 -11
  159. package/dist/array/mapAsync.mjs +33 -7
  160. package/dist/array/maxBy.d.mts +3 -2
  161. package/dist/array/maxBy.d.ts +3 -2
  162. package/dist/array/maxBy.js +35 -19
  163. package/dist/array/maxBy.mjs +35 -15
  164. package/dist/array/minBy.d.mts +3 -2
  165. package/dist/array/minBy.d.ts +3 -2
  166. package/dist/array/minBy.js +35 -19
  167. package/dist/array/minBy.mjs +35 -15
  168. package/dist/array/orderBy.d.mts +3 -2
  169. package/dist/array/orderBy.d.ts +3 -2
  170. package/dist/array/orderBy.js +50 -22
  171. package/dist/array/orderBy.mjs +48 -18
  172. package/dist/array/partition.d.mts +3 -2
  173. package/dist/array/partition.d.ts +3 -2
  174. package/dist/array/partition.js +10 -17
  175. package/dist/array/partition.mjs +10 -13
  176. package/dist/array/pull.d.mts +3 -2
  177. package/dist/array/pull.d.ts +3 -2
  178. package/dist/array/pull.js +30 -19
  179. package/dist/array/pull.mjs +30 -15
  180. package/dist/array/pullAt.d.mts +3 -2
  181. package/dist/array/pullAt.d.ts +3 -2
  182. package/dist/array/pullAt.js +23 -13
  183. package/dist/array/pullAt.mjs +23 -9
  184. package/dist/array/reduceAsync.d.mts +3 -2
  185. package/dist/array/reduceAsync.d.ts +3 -2
  186. package/dist/array/reduceAsync.js +10 -15
  187. package/dist/array/reduceAsync.mjs +10 -11
  188. package/dist/array/remove.d.mts +3 -2
  189. package/dist/array/remove.d.ts +3 -2
  190. package/dist/array/remove.js +34 -21
  191. package/dist/array/remove.mjs +34 -17
  192. package/dist/array/sample.d.mts +3 -2
  193. package/dist/array/sample.d.ts +3 -2
  194. package/dist/array/sample.js +17 -7
  195. package/dist/array/sample.mjs +17 -3
  196. package/dist/array/sampleSize.d.mts +3 -2
  197. package/dist/array/sampleSize.d.ts +3 -2
  198. package/dist/array/sampleSize.js +31 -21
  199. package/dist/array/sampleSize.mjs +31 -17
  200. package/dist/array/shuffle.d.mts +3 -2
  201. package/dist/array/shuffle.d.ts +3 -2
  202. package/dist/array/shuffle.js +25 -11
  203. package/dist/array/shuffle.mjs +25 -7
  204. package/dist/array/sortBy.d.mts +3 -2
  205. package/dist/array/sortBy.d.ts +3 -2
  206. package/dist/array/sortBy.js +36 -8
  207. package/dist/array/sortBy.mjs +36 -4
  208. package/dist/array/tail.d.mts +3 -2
  209. package/dist/array/tail.d.ts +3 -2
  210. package/dist/array/tail.js +27 -6
  211. package/dist/array/tail.mjs +27 -2
  212. package/dist/array/take.d.mts +3 -2
  213. package/dist/array/take.d.ts +3 -2
  214. package/dist/array/take.js +33 -9
  215. package/dist/array/take.mjs +33 -5
  216. package/dist/array/takeRight.d.mts +3 -2
  217. package/dist/array/takeRight.d.ts +3 -2
  218. package/dist/array/takeRight.js +27 -12
  219. package/dist/array/takeRight.mjs +27 -8
  220. package/dist/array/takeRightWhile.d.mts +3 -2
  221. package/dist/array/takeRightWhile.d.ts +3 -2
  222. package/dist/array/takeRightWhile.js +26 -11
  223. package/dist/array/takeRightWhile.mjs +26 -7
  224. package/dist/array/takeWhile.d.mts +3 -2
  225. package/dist/array/takeWhile.d.ts +3 -2
  226. package/dist/array/takeWhile.js +32 -14
  227. package/dist/array/takeWhile.mjs +32 -10
  228. package/dist/array/toFilled.d.mts +3 -2
  229. package/dist/array/toFilled.d.ts +3 -2
  230. package/dist/array/toFilled.js +20 -13
  231. package/dist/array/toFilled.mjs +20 -9
  232. package/dist/array/union.d.mts +3 -2
  233. package/dist/array/union.d.ts +3 -2
  234. package/dist/array/union.js +21 -8
  235. package/dist/array/union.mjs +21 -4
  236. package/dist/array/unionBy.d.mts +3 -2
  237. package/dist/array/unionBy.d.ts +3 -2
  238. package/dist/array/unionBy.js +26 -8
  239. package/dist/array/unionBy.mjs +26 -4
  240. package/dist/array/unionWith.d.mts +3 -2
  241. package/dist/array/unionWith.d.ts +3 -2
  242. package/dist/array/unionWith.js +24 -8
  243. package/dist/array/unionWith.mjs +24 -4
  244. package/dist/array/uniq.d.mts +3 -2
  245. package/dist/array/uniq.d.ts +3 -2
  246. package/dist/array/uniq.js +18 -6
  247. package/dist/array/uniq.mjs +18 -2
  248. package/dist/array/uniqBy.d.mts +3 -2
  249. package/dist/array/uniqBy.d.ts +3 -2
  250. package/dist/array/uniqBy.js +37 -14
  251. package/dist/array/uniqBy.mjs +37 -10
  252. package/dist/array/uniqWith.d.mts +3 -2
  253. package/dist/array/uniqWith.d.ts +3 -2
  254. package/dist/array/uniqWith.js +23 -14
  255. package/dist/array/uniqWith.mjs +23 -10
  256. package/dist/array/unzip.d.mts +4 -5
  257. package/dist/array/unzip.d.ts +4 -5
  258. package/dist/array/unzip.js +23 -19
  259. package/dist/array/unzip.mjs +23 -15
  260. package/dist/array/unzipWith.d.mts +3 -2
  261. package/dist/array/unzipWith.d.ts +3 -2
  262. package/dist/array/unzipWith.js +24 -15
  263. package/dist/array/unzipWith.mjs +24 -11
  264. package/dist/array/windowed.d.mts +15 -12
  265. package/dist/array/windowed.d.ts +15 -12
  266. package/dist/array/windowed.js +38 -17
  267. package/dist/array/windowed.mjs +38 -13
  268. package/dist/array/without.d.mts +3 -2
  269. package/dist/array/without.d.ts +3 -2
  270. package/dist/array/without.js +24 -8
  271. package/dist/array/without.mjs +24 -4
  272. package/dist/array/xor.d.mts +3 -2
  273. package/dist/array/xor.d.ts +3 -2
  274. package/dist/array/xor.js +23 -10
  275. package/dist/array/xor.mjs +23 -6
  276. package/dist/array/xorBy.d.mts +3 -2
  277. package/dist/array/xorBy.d.ts +3 -2
  278. package/dist/array/xorBy.js +27 -12
  279. package/dist/array/xorBy.mjs +25 -8
  280. package/dist/array/xorWith.d.mts +3 -2
  281. package/dist/array/xorWith.d.ts +3 -2
  282. package/dist/array/xorWith.js +26 -12
  283. package/dist/array/xorWith.mjs +24 -8
  284. package/dist/array/zip.d.mts +3 -2
  285. package/dist/array/zip.d.ts +3 -2
  286. package/dist/array/zip.js +31 -21
  287. package/dist/array/zip.mjs +31 -17
  288. package/dist/array/zipObject.d.mts +3 -2
  289. package/dist/array/zipObject.d.ts +3 -2
  290. package/dist/array/zipObject.js +35 -10
  291. package/dist/array/zipObject.mjs +35 -6
  292. package/dist/array/zipWith.d.mts +3 -2
  293. package/dist/array/zipWith.d.ts +3 -2
  294. package/dist/array/zipWith.js +29 -14
  295. package/dist/array/zipWith.mjs +29 -10
  296. package/dist/browser.global.js +8 -1
  297. package/dist/compat/_internal/ArrayIterator.d.mts +3 -2
  298. package/dist/compat/_internal/ArrayIterator.d.ts +3 -2
  299. package/dist/compat/_internal/ConformsPredicateObject.d.mts +4 -5
  300. package/dist/compat/_internal/ConformsPredicateObject.d.ts +4 -5
  301. package/dist/compat/_internal/EmptyObjectOf.d.mts +4 -5
  302. package/dist/compat/_internal/EmptyObjectOf.d.ts +4 -5
  303. package/dist/compat/_internal/Equals.d.mts +4 -0
  304. package/dist/compat/_internal/Equals.d.ts +4 -0
  305. package/dist/compat/_internal/GetFieldType.d.mts +3 -2
  306. package/dist/compat/_internal/GetFieldType.d.ts +3 -2
  307. package/dist/compat/_internal/IsEqualCustomizer.d.mts +3 -2
  308. package/dist/compat/_internal/IsEqualCustomizer.d.ts +3 -2
  309. package/dist/compat/_internal/IsMatchWithCustomizer.d.mts +3 -2
  310. package/dist/compat/_internal/IsMatchWithCustomizer.d.ts +3 -2
  311. package/dist/compat/_internal/IsWritable.d.mts +6 -0
  312. package/dist/compat/_internal/IsWritable.d.ts +6 -0
  313. package/dist/compat/_internal/IterateeShorthand.d.mts +4 -3
  314. package/dist/compat/_internal/IterateeShorthand.d.ts +4 -3
  315. package/dist/compat/_internal/ListIteratee.d.mts +4 -3
  316. package/dist/compat/_internal/ListIteratee.d.ts +4 -3
  317. package/dist/compat/_internal/ListIterateeCustom.d.mts +4 -3
  318. package/dist/compat/_internal/ListIterateeCustom.d.ts +4 -3
  319. package/dist/compat/_internal/ListIterator.d.mts +3 -2
  320. package/dist/compat/_internal/ListIterator.d.ts +3 -2
  321. package/dist/compat/_internal/ListIteratorTypeGuard.d.mts +3 -2
  322. package/dist/compat/_internal/ListIteratorTypeGuard.d.ts +3 -2
  323. package/dist/compat/_internal/ListOfRecursiveArraysOrValues.d.mts +5 -5
  324. package/dist/compat/_internal/ListOfRecursiveArraysOrValues.d.ts +5 -5
  325. package/dist/compat/_internal/MAX_ARRAY_LENGTH.js +3 -6
  326. package/dist/compat/_internal/MAX_ARRAY_LENGTH.mjs +3 -2
  327. package/dist/compat/_internal/MAX_SAFE_INTEGER.js +2 -5
  328. package/dist/compat/_internal/MAX_SAFE_INTEGER.mjs +2 -1
  329. package/dist/compat/_internal/Many.d.mts +3 -2
  330. package/dist/compat/_internal/Many.d.ts +3 -2
  331. package/dist/compat/_internal/MemoListIterator.d.mts +3 -2
  332. package/dist/compat/_internal/MemoListIterator.d.ts +3 -2
  333. package/dist/compat/_internal/MemoObjectIterator.d.mts +3 -2
  334. package/dist/compat/_internal/MemoObjectIterator.d.ts +3 -2
  335. package/dist/compat/_internal/MutableList.d.mts +7 -0
  336. package/dist/compat/_internal/MutableList.d.ts +7 -0
  337. package/dist/compat/_internal/ObjectIteratee.d.mts +5 -4
  338. package/dist/compat/_internal/ObjectIteratee.d.ts +5 -4
  339. package/dist/compat/_internal/ObjectIterator.d.mts +3 -2
  340. package/dist/compat/_internal/ObjectIterator.d.ts +3 -2
  341. package/dist/compat/_internal/PartialShallow.d.mts +4 -5
  342. package/dist/compat/_internal/PartialShallow.d.ts +4 -5
  343. package/dist/compat/_internal/PropertyPath.d.mts +4 -3
  344. package/dist/compat/_internal/PropertyPath.d.ts +4 -3
  345. package/dist/compat/_internal/RecursiveArray.d.mts +4 -4
  346. package/dist/compat/_internal/RecursiveArray.d.ts +4 -4
  347. package/dist/compat/_internal/RejectReadonly.d.mts +7 -0
  348. package/dist/compat/_internal/RejectReadonly.d.ts +7 -0
  349. package/dist/compat/_internal/StringIterator.d.mts +3 -2
  350. package/dist/compat/_internal/StringIterator.d.ts +3 -2
  351. package/dist/compat/_internal/TupleIterator.d.mts +3 -2
  352. package/dist/compat/_internal/TupleIterator.d.ts +3 -2
  353. package/dist/compat/_internal/ValueIteratee.d.mts +4 -3
  354. package/dist/compat/_internal/ValueIteratee.d.ts +4 -3
  355. package/dist/compat/_internal/ValueIterateeCustom.d.mts +4 -3
  356. package/dist/compat/_internal/ValueIterateeCustom.d.ts +4 -3
  357. package/dist/compat/_internal/ValueIteratorTypeGuard.d.mts +3 -2
  358. package/dist/compat/_internal/ValueIteratorTypeGuard.d.ts +3 -2
  359. package/dist/compat/_internal/ValueKeyIteratee.d.mts +4 -3
  360. package/dist/compat/_internal/ValueKeyIteratee.d.ts +4 -3
  361. package/dist/compat/_internal/ValueKeyIterateeTypeGuard.d.mts +3 -2
  362. package/dist/compat/_internal/ValueKeyIterateeTypeGuard.d.ts +3 -2
  363. package/dist/compat/_internal/assignValue.js +6 -11
  364. package/dist/compat/_internal/assignValue.mjs +6 -7
  365. package/dist/compat/_internal/compareValues.js +17 -32
  366. package/dist/compat/_internal/compareValues.mjs +17 -28
  367. package/dist/compat/_internal/copyArray.js +15 -12
  368. package/dist/compat/_internal/copyArray.mjs +14 -9
  369. package/dist/compat/_internal/decimalAdjust.js +13 -20
  370. package/dist/compat/_internal/decimalAdjust.mjs +13 -16
  371. package/dist/compat/_internal/flattenArrayLike.js +10 -18
  372. package/dist/compat/_internal/flattenArrayLike.mjs +10 -14
  373. package/dist/compat/_internal/getSymbols.js +3 -6
  374. package/dist/compat/_internal/getSymbols.mjs +3 -2
  375. package/dist/compat/_internal/getSymbolsIn.js +9 -13
  376. package/dist/compat/_internal/getSymbolsIn.mjs +9 -9
  377. package/dist/compat/_internal/getTag.js +11 -9
  378. package/dist/compat/_internal/getTag.mjs +11 -5
  379. package/dist/compat/_internal/isDeepKey.js +24 -14
  380. package/dist/compat/_internal/isDeepKey.mjs +24 -10
  381. package/dist/compat/_internal/isIndex.js +7 -16
  382. package/dist/compat/_internal/isIndex.mjs +7 -12
  383. package/dist/compat/_internal/isIterateeCall.js +10 -18
  384. package/dist/compat/_internal/isIterateeCall.mjs +10 -14
  385. package/dist/compat/_internal/isKey.js +21 -15
  386. package/dist/compat/_internal/isKey.mjs +21 -11
  387. package/dist/compat/_internal/isPrototype.js +4 -8
  388. package/dist/compat/_internal/isPrototype.mjs +4 -4
  389. package/dist/compat/_internal/mapToEntries.js +7 -12
  390. package/dist/compat/_internal/mapToEntries.mjs +7 -8
  391. package/dist/compat/_internal/normalizeForCase.js +5 -11
  392. package/dist/compat/_internal/normalizeForCase.mjs +5 -7
  393. package/dist/compat/_internal/setToEntries.js +9 -12
  394. package/dist/compat/_internal/setToEntries.mjs +9 -8
  395. package/dist/compat/_internal/tags.js +28 -31
  396. package/dist/compat/_internal/tags.mjs +28 -27
  397. package/dist/compat/_internal/toArray.js +3 -6
  398. package/dist/compat/_internal/toArray.mjs +3 -2
  399. package/dist/compat/_internal/toKey.js +12 -12
  400. package/dist/compat/_internal/toKey.mjs +12 -8
  401. package/dist/compat/array/castArray.d.mts +3 -2
  402. package/dist/compat/array/castArray.d.ts +3 -2
  403. package/dist/compat/array/castArray.js +30 -9
  404. package/dist/compat/array/castArray.mjs +30 -5
  405. package/dist/compat/array/chunk.d.mts +3 -2
  406. package/dist/compat/array/chunk.d.ts +3 -2
  407. package/dist/compat/array/chunk.js +30 -14
  408. package/dist/compat/array/chunk.mjs +30 -10
  409. package/dist/compat/array/compact.d.mts +3 -2
  410. package/dist/compat/array/compact.d.ts +3 -2
  411. package/dist/compat/array/compact.js +17 -12
  412. package/dist/compat/array/compact.mjs +17 -8
  413. package/dist/compat/array/concat.d.mts +3 -2
  414. package/dist/compat/array/concat.d.ts +3 -2
  415. package/dist/compat/array/concat.js +31 -8
  416. package/dist/compat/array/concat.mjs +31 -4
  417. package/dist/compat/array/countBy.d.mts +4 -3
  418. package/dist/compat/array/countBy.d.ts +4 -3
  419. package/dist/compat/array/countBy.js +14 -20
  420. package/dist/compat/array/countBy.mjs +14 -16
  421. package/dist/compat/array/difference.d.mts +3 -2
  422. package/dist/compat/array/difference.d.ts +3 -2
  423. package/dist/compat/array/difference.js +38 -21
  424. package/dist/compat/array/difference.mjs +38 -17
  425. package/dist/compat/array/differenceBy.d.mts +4 -3
  426. package/dist/compat/array/differenceBy.d.ts +4 -3
  427. package/dist/compat/array/differenceBy.js +21 -21
  428. package/dist/compat/array/differenceBy.mjs +21 -17
  429. package/dist/compat/array/differenceWith.d.mts +3 -2
  430. package/dist/compat/array/differenceWith.d.ts +3 -2
  431. package/dist/compat/array/differenceWith.js +39 -20
  432. package/dist/compat/array/differenceWith.mjs +39 -16
  433. package/dist/compat/array/drop.d.mts +3 -2
  434. package/dist/compat/array/drop.d.ts +3 -2
  435. package/dist/compat/array/drop.js +9 -15
  436. package/dist/compat/array/drop.mjs +9 -11
  437. package/dist/compat/array/dropRight.d.mts +3 -2
  438. package/dist/compat/array/dropRight.d.ts +3 -2
  439. package/dist/compat/array/dropRight.js +26 -15
  440. package/dist/compat/array/dropRight.mjs +26 -11
  441. package/dist/compat/array/dropRightWhile.d.mts +4 -3
  442. package/dist/compat/array/dropRightWhile.d.ts +4 -3
  443. package/dist/compat/array/dropRightWhile.js +40 -37
  444. package/dist/compat/array/dropRightWhile.mjs +39 -32
  445. package/dist/compat/array/dropWhile.d.mts +4 -3
  446. package/dist/compat/array/dropWhile.d.ts +4 -3
  447. package/dist/compat/array/dropWhile.js +46 -38
  448. package/dist/compat/array/dropWhile.mjs +45 -33
  449. package/dist/compat/array/each.d.mts +1 -0
  450. package/dist/compat/array/each.d.ts +1 -0
  451. package/dist/compat/array/each.js +1 -0
  452. package/dist/compat/array/each.mjs +1 -0
  453. package/dist/compat/array/eachRight.d.mts +1 -0
  454. package/dist/compat/array/eachRight.d.ts +1 -0
  455. package/dist/compat/array/eachRight.js +1 -0
  456. package/dist/compat/array/eachRight.mjs +1 -0
  457. package/dist/compat/array/every.d.mts +5 -4
  458. package/dist/compat/array/every.d.ts +5 -4
  459. package/dist/compat/array/every.js +55 -61
  460. package/dist/compat/array/every.mjs +55 -57
  461. package/dist/compat/array/fill.d.mts +5 -4
  462. package/dist/compat/array/fill.d.ts +5 -4
  463. package/dist/compat/array/fill.js +39 -24
  464. package/dist/compat/array/fill.mjs +39 -20
  465. package/dist/compat/array/filter.d.mts +8 -7
  466. package/dist/compat/array/filter.d.ts +8 -7
  467. package/dist/compat/array/filter.js +48 -36
  468. package/dist/compat/array/filter.mjs +47 -31
  469. package/dist/compat/array/find.d.mts +7 -6
  470. package/dist/compat/array/find.d.ts +7 -6
  471. package/dist/compat/array/find.js +33 -28
  472. package/dist/compat/array/find.mjs +32 -23
  473. package/dist/compat/array/findIndex.d.mts +4 -3
  474. package/dist/compat/array/findIndex.d.ts +4 -3
  475. package/dist/compat/array/findIndex.js +43 -42
  476. package/dist/compat/array/findIndex.mjs +42 -37
  477. package/dist/compat/array/findLast.d.mts +7 -6
  478. package/dist/compat/array/findLast.d.ts +7 -6
  479. package/dist/compat/array/findLast.js +37 -34
  480. package/dist/compat/array/findLast.mjs +36 -29
  481. package/dist/compat/array/findLastIndex.d.mts +4 -3
  482. package/dist/compat/array/findLastIndex.d.ts +4 -3
  483. package/dist/compat/array/findLastIndex.js +37 -42
  484. package/dist/compat/array/findLastIndex.mjs +36 -37
  485. package/dist/compat/array/first.d.mts +1 -0
  486. package/dist/compat/array/first.d.ts +1 -0
  487. package/dist/compat/array/first.js +1 -0
  488. package/dist/compat/array/first.mjs +1 -0
  489. package/dist/compat/array/flatMap.d.mts +6 -5
  490. package/dist/compat/array/flatMap.d.ts +6 -5
  491. package/dist/compat/array/flatMap.js +20 -14
  492. package/dist/compat/array/flatMap.mjs +19 -10
  493. package/dist/compat/array/flatMapDeep.d.mts +6 -5
  494. package/dist/compat/array/flatMapDeep.d.ts +6 -5
  495. package/dist/compat/array/flatMapDeep.js +16 -8
  496. package/dist/compat/array/flatMapDeep.mjs +16 -4
  497. package/dist/compat/array/flatMapDepth.d.mts +6 -5
  498. package/dist/compat/array/flatMapDepth.d.ts +6 -5
  499. package/dist/compat/array/flatMapDepth.js +24 -17
  500. package/dist/compat/array/flatMapDepth.mjs +21 -12
  501. package/dist/compat/array/flatten.d.mts +3 -2
  502. package/dist/compat/array/flatten.d.ts +3 -2
  503. package/dist/compat/array/flatten.js +16 -33
  504. package/dist/compat/array/flatten.mjs +16 -29
  505. package/dist/compat/array/flattenDeep.d.mts +4 -3
  506. package/dist/compat/array/flattenDeep.d.ts +4 -3
  507. package/dist/compat/array/flattenDeep.js +15 -8
  508. package/dist/compat/array/flattenDeep.mjs +15 -4
  509. package/dist/compat/array/flattenDepth.d.mts +4 -3
  510. package/dist/compat/array/flattenDepth.d.ts +4 -3
  511. package/dist/compat/array/flattenDepth.js +21 -8
  512. package/dist/compat/array/flattenDepth.mjs +21 -4
  513. package/dist/compat/array/forEach.d.mts +7 -6
  514. package/dist/compat/array/forEach.d.ts +7 -6
  515. package/dist/compat/array/forEach.js +32 -23
  516. package/dist/compat/array/forEach.mjs +31 -18
  517. package/dist/compat/array/forEachRight.d.mts +7 -6
  518. package/dist/compat/array/forEachRight.d.ts +7 -6
  519. package/dist/compat/array/forEachRight.js +32 -23
  520. package/dist/compat/array/forEachRight.mjs +31 -18
  521. package/dist/compat/array/groupBy.d.mts +4 -3
  522. package/dist/compat/array/groupBy.d.ts +4 -3
  523. package/dist/compat/array/groupBy.js +40 -16
  524. package/dist/compat/array/groupBy.mjs +38 -12
  525. package/dist/compat/array/head.d.mts +3 -2
  526. package/dist/compat/array/head.d.ts +3 -2
  527. package/dist/compat/array/head.js +22 -13
  528. package/dist/compat/array/head.mjs +22 -9
  529. package/dist/compat/array/includes.d.mts +3 -2
  530. package/dist/compat/array/includes.d.ts +3 -2
  531. package/dist/compat/array/includes.js +38 -41
  532. package/dist/compat/array/includes.mjs +35 -37
  533. package/dist/compat/array/indexOf.d.mts +3 -2
  534. package/dist/compat/array/indexOf.d.ts +3 -2
  535. package/dist/compat/array/indexOf.js +28 -23
  536. package/dist/compat/array/indexOf.mjs +28 -19
  537. package/dist/compat/array/initial.d.mts +3 -2
  538. package/dist/compat/array/initial.d.ts +3 -2
  539. package/dist/compat/array/initial.js +19 -12
  540. package/dist/compat/array/initial.mjs +19 -8
  541. package/dist/compat/array/intersection.d.mts +3 -2
  542. package/dist/compat/array/intersection.d.ts +3 -2
  543. package/dist/compat/array/intersection.js +31 -24
  544. package/dist/compat/array/intersection.mjs +31 -20
  545. package/dist/compat/array/intersectionBy.d.mts +4 -3
  546. package/dist/compat/array/intersectionBy.d.ts +4 -3
  547. package/dist/compat/array/intersectionBy.js +49 -37
  548. package/dist/compat/array/intersectionBy.mjs +49 -33
  549. package/dist/compat/array/intersectionWith.d.mts +3 -2
  550. package/dist/compat/array/intersectionWith.d.ts +3 -2
  551. package/dist/compat/array/intersectionWith.js +49 -41
  552. package/dist/compat/array/intersectionWith.mjs +49 -37
  553. package/dist/compat/array/invokeMap.d.mts +3 -2
  554. package/dist/compat/array/invokeMap.d.ts +3 -2
  555. package/dist/compat/array/invokeMap.js +41 -38
  556. package/dist/compat/array/invokeMap.mjs +38 -34
  557. package/dist/compat/array/join.d.mts +3 -2
  558. package/dist/compat/array/join.d.ts +3 -2
  559. package/dist/compat/array/join.js +17 -11
  560. package/dist/compat/array/join.mjs +17 -7
  561. package/dist/compat/array/keyBy.d.mts +4 -3
  562. package/dist/compat/array/keyBy.d.ts +4 -3
  563. package/dist/compat/array/keyBy.js +41 -20
  564. package/dist/compat/array/keyBy.mjs +41 -16
  565. package/dist/compat/array/last.d.mts +3 -2
  566. package/dist/compat/array/last.d.ts +3 -2
  567. package/dist/compat/array/last.js +29 -13
  568. package/dist/compat/array/last.mjs +29 -9
  569. package/dist/compat/array/lastIndexOf.d.mts +3 -2
  570. package/dist/compat/array/lastIndexOf.d.ts +3 -2
  571. package/dist/compat/array/lastIndexOf.js +11 -23
  572. package/dist/compat/array/lastIndexOf.mjs +11 -19
  573. package/dist/compat/array/map.d.mts +8 -9
  574. package/dist/compat/array/map.d.ts +8 -9
  575. package/dist/compat/array/map.js +16 -22
  576. package/dist/compat/array/map.mjs +16 -18
  577. package/dist/compat/array/nth.d.mts +3 -2
  578. package/dist/compat/array/nth.d.ts +3 -2
  579. package/dist/compat/array/nth.js +19 -16
  580. package/dist/compat/array/nth.mjs +19 -12
  581. package/dist/compat/array/orderBy.d.mts +9 -7
  582. package/dist/compat/array/orderBy.d.ts +9 -7
  583. package/dist/compat/array/orderBy.js +77 -79
  584. package/dist/compat/array/orderBy.mjs +77 -75
  585. package/dist/compat/array/partition.d.mts +5 -4
  586. package/dist/compat/array/partition.d.ts +5 -4
  587. package/dist/compat/array/partition.js +40 -27
  588. package/dist/compat/array/partition.mjs +39 -22
  589. package/dist/compat/array/pull.d.mts +3 -2
  590. package/dist/compat/array/pull.d.ts +3 -2
  591. package/dist/compat/array/pull.js +20 -8
  592. package/dist/compat/array/pull.mjs +20 -4
  593. package/dist/compat/array/pullAll.d.mts +5 -4
  594. package/dist/compat/array/pullAll.d.ts +5 -4
  595. package/dist/compat/array/pullAll.js +20 -8
  596. package/dist/compat/array/pullAll.mjs +20 -4
  597. package/dist/compat/array/pullAllBy.d.mts +6 -5
  598. package/dist/compat/array/pullAllBy.d.ts +6 -5
  599. package/dist/compat/array/pullAllBy.js +40 -23
  600. package/dist/compat/array/pullAllBy.mjs +40 -19
  601. package/dist/compat/array/pullAllWith.d.mts +5 -4
  602. package/dist/compat/array/pullAllWith.d.ts +5 -4
  603. package/dist/compat/array/pullAllWith.js +41 -34
  604. package/dist/compat/array/pullAllWith.mjs +41 -30
  605. package/dist/compat/array/pullAt.d.mts +6 -5
  606. package/dist/compat/array/pullAt.d.ts +6 -5
  607. package/dist/compat/array/pullAt.js +41 -35
  608. package/dist/compat/array/pullAt.mjs +40 -31
  609. package/dist/compat/array/reduce.d.mts +5 -4
  610. package/dist/compat/array/reduce.d.ts +5 -4
  611. package/dist/compat/array/reduce.js +51 -35
  612. package/dist/compat/array/reduce.mjs +50 -30
  613. package/dist/compat/array/reduceRight.d.mts +5 -4
  614. package/dist/compat/array/reduceRight.d.ts +5 -4
  615. package/dist/compat/array/reduceRight.js +51 -41
  616. package/dist/compat/array/reduceRight.mjs +50 -36
  617. package/dist/compat/array/reject.d.mts +6 -5
  618. package/dist/compat/array/reject.d.ts +6 -5
  619. package/dist/compat/array/reject.js +30 -12
  620. package/dist/compat/array/reject.mjs +29 -7
  621. package/dist/compat/array/remove.d.mts +6 -5
  622. package/dist/compat/array/remove.d.ts +6 -5
  623. package/dist/compat/array/remove.js +34 -11
  624. package/dist/compat/array/remove.mjs +33 -6
  625. package/dist/compat/array/reverse.d.mts +5 -4
  626. package/dist/compat/array/reverse.d.ts +5 -4
  627. package/dist/compat/array/reverse.js +25 -9
  628. package/dist/compat/array/reverse.mjs +25 -5
  629. package/dist/compat/array/sample.d.mts +3 -2
  630. package/dist/compat/array/sample.d.ts +3 -2
  631. package/dist/compat/array/sample.js +18 -16
  632. package/dist/compat/array/sample.mjs +18 -12
  633. package/dist/compat/array/sampleSize.d.mts +3 -2
  634. package/dist/compat/array/sampleSize.d.ts +3 -2
  635. package/dist/compat/array/sampleSize.js +28 -19
  636. package/dist/compat/array/sampleSize.mjs +28 -15
  637. package/dist/compat/array/shuffle.d.mts +3 -2
  638. package/dist/compat/array/shuffle.d.ts +3 -2
  639. package/dist/compat/array/shuffle.js +22 -25
  640. package/dist/compat/array/shuffle.mjs +22 -21
  641. package/dist/compat/array/size.d.mts +3 -2
  642. package/dist/compat/array/size.d.ts +3 -2
  643. package/dist/compat/array/size.js +6 -14
  644. package/dist/compat/array/size.mjs +6 -10
  645. package/dist/compat/array/slice.d.mts +3 -2
  646. package/dist/compat/array/slice.d.ts +3 -2
  647. package/dist/compat/array/slice.js +37 -40
  648. package/dist/compat/array/slice.mjs +37 -36
  649. package/dist/compat/array/some.d.mts +5 -4
  650. package/dist/compat/array/some.d.ts +5 -4
  651. package/dist/compat/array/some.js +87 -83
  652. package/dist/compat/array/some.mjs +87 -79
  653. package/dist/compat/array/sortBy.d.mts +6 -5
  654. package/dist/compat/array/sortBy.d.ts +6 -5
  655. package/dist/compat/array/sortBy.js +9 -17
  656. package/dist/compat/array/sortBy.mjs +9 -13
  657. package/dist/compat/array/sortedIndex.d.mts +3 -2
  658. package/dist/compat/array/sortedIndex.d.ts +3 -2
  659. package/dist/compat/array/sortedIndex.js +33 -32
  660. package/dist/compat/array/sortedIndex.mjs +33 -28
  661. package/dist/compat/array/sortedIndexBy.d.mts +4 -3
  662. package/dist/compat/array/sortedIndexBy.d.ts +4 -3
  663. package/dist/compat/array/sortedIndexBy.js +52 -61
  664. package/dist/compat/array/sortedIndexBy.mjs +51 -56
  665. package/dist/compat/array/sortedIndexOf.d.mts +3 -2
  666. package/dist/compat/array/sortedIndexOf.d.ts +3 -2
  667. package/dist/compat/array/sortedIndexOf.js +40 -16
  668. package/dist/compat/array/sortedIndexOf.mjs +40 -12
  669. package/dist/compat/array/sortedLastIndex.d.mts +3 -2
  670. package/dist/compat/array/sortedLastIndex.d.ts +3 -2
  671. package/dist/compat/array/sortedLastIndex.js +31 -32
  672. package/dist/compat/array/sortedLastIndex.mjs +31 -28
  673. package/dist/compat/array/sortedLastIndexBy.d.mts +4 -3
  674. package/dist/compat/array/sortedLastIndexBy.d.ts +4 -3
  675. package/dist/compat/array/sortedLastIndexBy.js +19 -8
  676. package/dist/compat/array/sortedLastIndexBy.mjs +19 -4
  677. package/dist/compat/array/sortedLastIndexOf.d.mts +3 -2
  678. package/dist/compat/array/sortedLastIndexOf.d.ts +3 -2
  679. package/dist/compat/array/sortedLastIndexOf.js +41 -16
  680. package/dist/compat/array/sortedLastIndexOf.mjs +41 -12
  681. package/dist/compat/array/tail.d.mts +3 -2
  682. package/dist/compat/array/tail.d.ts +3 -2
  683. package/dist/compat/array/tail.js +31 -13
  684. package/dist/compat/array/tail.mjs +31 -9
  685. package/dist/compat/array/take.d.mts +3 -2
  686. package/dist/compat/array/take.d.ts +3 -2
  687. package/dist/compat/array/take.js +32 -15
  688. package/dist/compat/array/take.mjs +32 -11
  689. package/dist/compat/array/takeRight.d.mts +3 -2
  690. package/dist/compat/array/takeRight.d.ts +3 -2
  691. package/dist/compat/array/takeRight.js +31 -15
  692. package/dist/compat/array/takeRight.mjs +31 -11
  693. package/dist/compat/array/takeRightWhile.d.mts +4 -3
  694. package/dist/compat/array/takeRightWhile.d.ts +4 -3
  695. package/dist/compat/array/takeRightWhile.js +56 -17
  696. package/dist/compat/array/takeRightWhile.mjs +56 -13
  697. package/dist/compat/array/takeWhile.d.mts +4 -3
  698. package/dist/compat/array/takeWhile.d.ts +4 -3
  699. package/dist/compat/array/takeWhile.js +56 -17
  700. package/dist/compat/array/takeWhile.mjs +56 -13
  701. package/dist/compat/array/union.d.mts +3 -2
  702. package/dist/compat/array/union.d.ts +3 -2
  703. package/dist/compat/array/union.js +35 -12
  704. package/dist/compat/array/union.mjs +33 -8
  705. package/dist/compat/array/unionBy.d.mts +4 -3
  706. package/dist/compat/array/unionBy.d.ts +4 -3
  707. package/dist/compat/array/unionBy.js +34 -19
  708. package/dist/compat/array/unionBy.mjs +34 -15
  709. package/dist/compat/array/unionWith.d.mts +3 -2
  710. package/dist/compat/array/unionWith.d.ts +3 -2
  711. package/dist/compat/array/unionWith.js +38 -17
  712. package/dist/compat/array/unionWith.mjs +38 -13
  713. package/dist/compat/array/uniq.d.mts +3 -2
  714. package/dist/compat/array/uniq.d.ts +3 -2
  715. package/dist/compat/array/uniq.js +21 -12
  716. package/dist/compat/array/uniq.mjs +21 -8
  717. package/dist/compat/array/uniqBy.d.mts +4 -3
  718. package/dist/compat/array/uniqBy.d.ts +4 -3
  719. package/dist/compat/array/uniqBy.js +10 -16
  720. package/dist/compat/array/uniqBy.mjs +9 -11
  721. package/dist/compat/array/uniqWith.d.mts +3 -2
  722. package/dist/compat/array/uniqWith.d.ts +3 -2
  723. package/dist/compat/array/uniqWith.js +31 -13
  724. package/dist/compat/array/uniqWith.mjs +31 -9
  725. package/dist/compat/array/unzip.d.mts +3 -2
  726. package/dist/compat/array/unzip.d.ts +3 -2
  727. package/dist/compat/array/unzip.js +22 -15
  728. package/dist/compat/array/unzip.mjs +22 -11
  729. package/dist/compat/array/unzipWith.d.mts +3 -2
  730. package/dist/compat/array/unzipWith.d.ts +3 -2
  731. package/dist/compat/array/unzipWith.js +30 -22
  732. package/dist/compat/array/unzipWith.mjs +30 -18
  733. package/dist/compat/array/without.d.mts +3 -2
  734. package/dist/compat/array/without.d.ts +3 -2
  735. package/dist/compat/array/without.js +26 -12
  736. package/dist/compat/array/without.mjs +26 -8
  737. package/dist/compat/array/xor.d.mts +3 -2
  738. package/dist/compat/array/xor.d.ts +3 -2
  739. package/dist/compat/array/xor.js +35 -31
  740. package/dist/compat/array/xor.mjs +35 -27
  741. package/dist/compat/array/xorBy.d.mts +4 -3
  742. package/dist/compat/array/xorBy.d.ts +4 -3
  743. package/dist/compat/array/xorBy.js +37 -24
  744. package/dist/compat/array/xorBy.mjs +35 -20
  745. package/dist/compat/array/xorWith.d.mts +3 -2
  746. package/dist/compat/array/xorWith.d.ts +3 -2
  747. package/dist/compat/array/xorWith.js +36 -22
  748. package/dist/compat/array/xorWith.mjs +34 -18
  749. package/dist/compat/array/zip.d.mts +3 -2
  750. package/dist/compat/array/zip.d.ts +3 -2
  751. package/dist/compat/array/zip.js +27 -12
  752. package/dist/compat/array/zip.mjs +27 -8
  753. package/dist/compat/array/zipObject.d.mts +3 -2
  754. package/dist/compat/array/zipObject.d.ts +3 -2
  755. package/dist/compat/array/zipObject.js +36 -12
  756. package/dist/compat/array/zipObject.mjs +36 -8
  757. package/dist/compat/array/zipObjectDeep.d.mts +4 -3
  758. package/dist/compat/array/zipObjectDeep.d.ts +4 -3
  759. package/dist/compat/array/zipObjectDeep.js +47 -24
  760. package/dist/compat/array/zipObjectDeep.mjs +47 -20
  761. package/dist/compat/array/zipWith.d.mts +3 -2
  762. package/dist/compat/array/zipWith.d.ts +3 -2
  763. package/dist/compat/array/zipWith.js +32 -21
  764. package/dist/compat/array/zipWith.mjs +32 -17
  765. package/dist/compat/compat.d.mts +298 -291
  766. package/dist/compat/compat.d.ts +298 -291
  767. package/dist/compat/compat.js +606 -595
  768. package/dist/compat/compat.mjs +601 -291
  769. package/dist/compat/function/after.d.mts +3 -2
  770. package/dist/compat/function/after.d.ts +3 -2
  771. package/dist/compat/function/after.js +29 -16
  772. package/dist/compat/function/after.mjs +29 -12
  773. package/dist/compat/function/ary.d.mts +3 -2
  774. package/dist/compat/function/ary.d.ts +3 -2
  775. package/dist/compat/function/ary.js +25 -14
  776. package/dist/compat/function/ary.mjs +25 -10
  777. package/dist/compat/function/attempt.d.mts +3 -2
  778. package/dist/compat/function/attempt.d.ts +3 -2
  779. package/dist/compat/function/attempt.js +37 -11
  780. package/dist/compat/function/attempt.mjs +37 -7
  781. package/dist/compat/function/before.d.mts +3 -2
  782. package/dist/compat/function/before.d.ts +3 -2
  783. package/dist/compat/function/before.js +34 -21
  784. package/dist/compat/function/before.mjs +34 -17
  785. package/dist/compat/function/bind.d.mts +4 -3
  786. package/dist/compat/function/bind.d.ts +4 -3
  787. package/dist/compat/function/bind.js +41 -28
  788. package/dist/compat/function/bind.mjs +41 -24
  789. package/dist/compat/function/bindKey.d.mts +4 -3
  790. package/dist/compat/function/bindKey.d.ts +4 -3
  791. package/dist/compat/function/bindKey.js +54 -28
  792. package/dist/compat/function/bindKey.mjs +54 -24
  793. package/dist/compat/function/curry.d.mts +66 -65
  794. package/dist/compat/function/curry.d.ts +66 -65
  795. package/dist/compat/function/curry.js +73 -53
  796. package/dist/compat/function/curry.mjs +73 -49
  797. package/dist/compat/function/curryRight.d.mts +66 -65
  798. package/dist/compat/function/curryRight.d.ts +66 -65
  799. package/dist/compat/function/curryRight.js +78 -60
  800. package/dist/compat/function/curryRight.mjs +78 -56
  801. package/dist/compat/function/debounce.d.mts +43 -42
  802. package/dist/compat/function/debounce.d.ts +43 -42
  803. package/dist/compat/function/debounce.js +35 -47
  804. package/dist/compat/function/debounce.mjs +35 -43
  805. package/dist/compat/function/defer.d.mts +3 -2
  806. package/dist/compat/function/defer.d.ts +3 -2
  807. package/dist/compat/function/defer.js +17 -9
  808. package/dist/compat/function/defer.mjs +17 -5
  809. package/dist/compat/function/delay.d.mts +3 -2
  810. package/dist/compat/function/delay.d.ts +3 -2
  811. package/dist/compat/function/delay.js +31 -11
  812. package/dist/compat/function/delay.mjs +31 -7
  813. package/dist/compat/function/flip.d.mts +3 -2
  814. package/dist/compat/function/flip.d.ts +3 -2
  815. package/dist/compat/function/flip.js +21 -8
  816. package/dist/compat/function/flip.mjs +21 -4
  817. package/dist/compat/function/flow.d.mts +4 -3
  818. package/dist/compat/function/flow.d.ts +4 -3
  819. package/dist/compat/function/flow.js +23 -13
  820. package/dist/compat/function/flow.mjs +23 -9
  821. package/dist/compat/function/flowRight.d.mts +4 -3
  822. package/dist/compat/function/flowRight.d.ts +4 -3
  823. package/dist/compat/function/flowRight.js +25 -13
  824. package/dist/compat/function/flowRight.mjs +25 -9
  825. package/dist/compat/function/identity.d.mts +3 -2
  826. package/dist/compat/function/identity.d.ts +3 -2
  827. package/dist/compat/function/identity.js +3 -6
  828. package/dist/compat/function/identity.mjs +3 -2
  829. package/dist/compat/function/memoize.d.mts +78 -77
  830. package/dist/compat/function/memoize.d.ts +78 -77
  831. package/dist/compat/function/memoize.js +24 -21
  832. package/dist/compat/function/memoize.mjs +24 -17
  833. package/dist/compat/function/negate.d.mts +3 -2
  834. package/dist/compat/function/negate.d.ts +3 -2
  835. package/dist/compat/function/negate.js +19 -11
  836. package/dist/compat/function/negate.mjs +19 -7
  837. package/dist/compat/function/noop.d.mts +3 -2
  838. package/dist/compat/function/noop.d.ts +3 -2
  839. package/dist/compat/function/noop.js +12 -6
  840. package/dist/compat/function/noop.mjs +12 -2
  841. package/dist/compat/function/nthArg.d.mts +3 -2
  842. package/dist/compat/function/nthArg.d.ts +3 -2
  843. package/dist/compat/function/nthArg.js +25 -10
  844. package/dist/compat/function/nthArg.mjs +25 -6
  845. package/dist/compat/function/once.d.mts +3 -2
  846. package/dist/compat/function/once.d.ts +3 -2
  847. package/dist/compat/function/once.js +4 -8
  848. package/dist/compat/function/once.mjs +4 -4
  849. package/dist/compat/function/overArgs.d.mts +4 -3
  850. package/dist/compat/function/overArgs.d.ts +4 -3
  851. package/dist/compat/function/overArgs.js +57 -21
  852. package/dist/compat/function/overArgs.mjs +57 -17
  853. package/dist/compat/function/partial.d.mts +6 -5
  854. package/dist/compat/function/partial.d.ts +6 -5
  855. package/dist/compat/function/partial.js +31 -9
  856. package/dist/compat/function/partial.mjs +31 -5
  857. package/dist/compat/function/partialRight.d.mts +6 -5
  858. package/dist/compat/function/partialRight.d.ts +6 -5
  859. package/dist/compat/function/partialRight.js +31 -9
  860. package/dist/compat/function/partialRight.mjs +31 -5
  861. package/dist/compat/function/rearg.d.mts +4 -3
  862. package/dist/compat/function/rearg.d.ts +4 -3
  863. package/dist/compat/function/rearg.js +23 -15
  864. package/dist/compat/function/rearg.mjs +23 -11
  865. package/dist/compat/function/rest.d.mts +3 -2
  866. package/dist/compat/function/rest.d.ts +3 -2
  867. package/dist/compat/function/rest.js +35 -12
  868. package/dist/compat/function/rest.mjs +35 -8
  869. package/dist/compat/function/spread.d.mts +3 -2
  870. package/dist/compat/function/spread.d.ts +3 -2
  871. package/dist/compat/function/spread.js +54 -17
  872. package/dist/compat/function/spread.mjs +54 -13
  873. package/dist/compat/function/throttle.d.mts +15 -14
  874. package/dist/compat/function/throttle.d.ts +15 -14
  875. package/dist/compat/function/throttle.js +39 -13
  876. package/dist/compat/function/throttle.mjs +39 -9
  877. package/dist/compat/function/unary.d.mts +3 -2
  878. package/dist/compat/function/unary.d.ts +3 -2
  879. package/dist/compat/function/unary.js +18 -8
  880. package/dist/compat/function/unary.mjs +18 -4
  881. package/dist/compat/function/wrap.d.mts +3 -2
  882. package/dist/compat/function/wrap.d.ts +3 -2
  883. package/dist/compat/function/wrap.js +31 -12
  884. package/dist/compat/function/wrap.mjs +31 -8
  885. package/dist/compat/index.d.mts +293 -292
  886. package/dist/compat/index.d.ts +293 -292
  887. package/dist/compat/index.js +595 -597
  888. package/dist/compat/index.mjs +294 -292
  889. package/dist/compat/math/add.d.mts +3 -2
  890. package/dist/compat/math/add.d.ts +3 -2
  891. package/dist/compat/math/add.js +29 -23
  892. package/dist/compat/math/add.mjs +29 -19
  893. package/dist/compat/math/ceil.d.mts +3 -2
  894. package/dist/compat/math/ceil.d.ts +3 -2
  895. package/dist/compat/math/ceil.js +16 -8
  896. package/dist/compat/math/ceil.mjs +16 -4
  897. package/dist/compat/math/clamp.d.mts +3 -2
  898. package/dist/compat/math/clamp.d.ts +3 -2
  899. package/dist/compat/math/clamp.js +33 -20
  900. package/dist/compat/math/clamp.mjs +33 -16
  901. package/dist/compat/math/divide.d.mts +3 -2
  902. package/dist/compat/math/divide.d.ts +3 -2
  903. package/dist/compat/math/divide.js +29 -23
  904. package/dist/compat/math/divide.mjs +29 -19
  905. package/dist/compat/math/floor.d.mts +3 -2
  906. package/dist/compat/math/floor.d.ts +3 -2
  907. package/dist/compat/math/floor.js +16 -8
  908. package/dist/compat/math/floor.mjs +16 -4
  909. package/dist/compat/math/inRange.d.mts +3 -2
  910. package/dist/compat/math/inRange.d.ts +3 -2
  911. package/dist/compat/math/inRange.js +25 -29
  912. package/dist/compat/math/inRange.mjs +25 -25
  913. package/dist/compat/math/max.d.mts +3 -2
  914. package/dist/compat/math/max.d.ts +3 -2
  915. package/dist/compat/math/max.js +17 -19
  916. package/dist/compat/math/max.mjs +17 -15
  917. package/dist/compat/math/maxBy.d.mts +4 -3
  918. package/dist/compat/math/maxBy.d.ts +4 -3
  919. package/dist/compat/math/maxBy.js +35 -13
  920. package/dist/compat/math/maxBy.mjs +35 -9
  921. package/dist/compat/math/mean.d.mts +3 -2
  922. package/dist/compat/math/mean.d.ts +3 -2
  923. package/dist/compat/math/mean.js +18 -9
  924. package/dist/compat/math/mean.mjs +18 -5
  925. package/dist/compat/math/meanBy.d.mts +4 -3
  926. package/dist/compat/math/meanBy.d.ts +4 -3
  927. package/dist/compat/math/meanBy.js +29 -13
  928. package/dist/compat/math/meanBy.mjs +29 -9
  929. package/dist/compat/math/min.d.mts +3 -2
  930. package/dist/compat/math/min.d.ts +3 -2
  931. package/dist/compat/math/min.js +17 -19
  932. package/dist/compat/math/min.mjs +17 -15
  933. package/dist/compat/math/minBy.d.mts +4 -3
  934. package/dist/compat/math/minBy.d.ts +4 -3
  935. package/dist/compat/math/minBy.js +35 -13
  936. package/dist/compat/math/minBy.mjs +35 -9
  937. package/dist/compat/math/multiply.d.mts +3 -2
  938. package/dist/compat/math/multiply.d.ts +3 -2
  939. package/dist/compat/math/multiply.js +29 -23
  940. package/dist/compat/math/multiply.mjs +29 -19
  941. package/dist/compat/math/parseInt.d.mts +3 -2
  942. package/dist/compat/math/parseInt.d.ts +3 -2
  943. package/dist/compat/math/parseInt.js +21 -9
  944. package/dist/compat/math/parseInt.mjs +21 -5
  945. package/dist/compat/math/random.d.mts +3 -2
  946. package/dist/compat/math/random.d.ts +3 -2
  947. package/dist/compat/math/random.js +53 -71
  948. package/dist/compat/math/random.mjs +53 -67
  949. package/dist/compat/math/range.d.mts +3 -2
  950. package/dist/compat/math/range.d.ts +3 -2
  951. package/dist/compat/math/range.js +34 -27
  952. package/dist/compat/math/range.mjs +34 -23
  953. package/dist/compat/math/rangeRight.d.mts +3 -2
  954. package/dist/compat/math/rangeRight.d.ts +3 -2
  955. package/dist/compat/math/rangeRight.js +35 -27
  956. package/dist/compat/math/rangeRight.mjs +35 -23
  957. package/dist/compat/math/round.d.mts +3 -2
  958. package/dist/compat/math/round.d.ts +3 -2
  959. package/dist/compat/math/round.js +16 -8
  960. package/dist/compat/math/round.mjs +16 -4
  961. package/dist/compat/math/subtract.d.mts +3 -2
  962. package/dist/compat/math/subtract.d.ts +3 -2
  963. package/dist/compat/math/subtract.js +28 -23
  964. package/dist/compat/math/subtract.mjs +28 -19
  965. package/dist/compat/math/sum.d.mts +3 -2
  966. package/dist/compat/math/sum.d.ts +3 -2
  967. package/dist/compat/math/sum.js +20 -8
  968. package/dist/compat/math/sum.mjs +20 -4
  969. package/dist/compat/math/sumBy.d.mts +3 -2
  970. package/dist/compat/math/sumBy.d.ts +3 -2
  971. package/dist/compat/math/sumBy.js +30 -26
  972. package/dist/compat/math/sumBy.mjs +30 -22
  973. package/dist/compat/object/assign.d.mts +3 -2
  974. package/dist/compat/object/assign.d.ts +3 -2
  975. package/dist/compat/object/assign.js +28 -19
  976. package/dist/compat/object/assign.mjs +28 -15
  977. package/dist/compat/object/assignIn.d.mts +3 -2
  978. package/dist/compat/object/assignIn.d.ts +3 -2
  979. package/dist/compat/object/assignIn.js +28 -19
  980. package/dist/compat/object/assignIn.mjs +28 -15
  981. package/dist/compat/object/assignInWith.d.mts +3 -2
  982. package/dist/compat/object/assignInWith.d.ts +3 -2
  983. package/dist/compat/object/assignInWith.js +43 -29
  984. package/dist/compat/object/assignInWith.mjs +43 -25
  985. package/dist/compat/object/assignWith.d.mts +3 -2
  986. package/dist/compat/object/assignWith.d.ts +3 -2
  987. package/dist/compat/object/assignWith.js +43 -29
  988. package/dist/compat/object/assignWith.mjs +43 -25
  989. package/dist/compat/object/at.d.mts +3 -2
  990. package/dist/compat/object/at.d.ts +3 -2
  991. package/dist/compat/object/at.js +34 -28
  992. package/dist/compat/object/at.mjs +34 -24
  993. package/dist/compat/object/clone.d.mts +3 -2
  994. package/dist/compat/object/clone.d.ts +3 -2
  995. package/dist/compat/object/clone.js +143 -151
  996. package/dist/compat/object/clone.mjs +143 -147
  997. package/dist/compat/object/cloneDeep.d.mts +3 -2
  998. package/dist/compat/object/cloneDeep.d.ts +3 -2
  999. package/dist/compat/object/cloneDeep.js +50 -8
  1000. package/dist/compat/object/cloneDeep.mjs +50 -4
  1001. package/dist/compat/object/cloneDeepWith.d.mts +3 -2
  1002. package/dist/compat/object/cloneDeepWith.d.ts +3 -2
  1003. package/dist/compat/object/cloneDeepWith.js +68 -43
  1004. package/dist/compat/object/cloneDeepWith.mjs +68 -39
  1005. package/dist/compat/object/cloneWith.d.mts +3 -2
  1006. package/dist/compat/object/cloneWith.d.ts +3 -2
  1007. package/dist/compat/object/cloneWith.js +52 -15
  1008. package/dist/compat/object/cloneWith.mjs +52 -11
  1009. package/dist/compat/object/create.d.mts +3 -2
  1010. package/dist/compat/object/create.d.ts +3 -2
  1011. package/dist/compat/object/create.js +28 -19
  1012. package/dist/compat/object/create.mjs +28 -15
  1013. package/dist/compat/object/defaults.d.mts +3 -2
  1014. package/dist/compat/object/defaults.d.ts +3 -2
  1015. package/dist/compat/object/defaults.js +44 -32
  1016. package/dist/compat/object/defaults.mjs +44 -28
  1017. package/dist/compat/object/defaultsDeep.d.mts +3 -2
  1018. package/dist/compat/object/defaultsDeep.d.ts +3 -2
  1019. package/dist/compat/object/defaultsDeep.js +59 -55
  1020. package/dist/compat/object/defaultsDeep.mjs +59 -51
  1021. package/dist/compat/object/extend.d.mts +1 -0
  1022. package/dist/compat/object/extend.d.ts +1 -0
  1023. package/dist/compat/object/extend.js +1 -0
  1024. package/dist/compat/object/extend.mjs +1 -0
  1025. package/dist/compat/object/extendWith.d.mts +1 -0
  1026. package/dist/compat/object/extendWith.d.ts +1 -0
  1027. package/dist/compat/object/extendWith.js +1 -0
  1028. package/dist/compat/object/extendWith.mjs +1 -0
  1029. package/dist/compat/object/findKey.d.mts +4 -3
  1030. package/dist/compat/object/findKey.d.ts +4 -3
  1031. package/dist/compat/object/findKey.js +21 -15
  1032. package/dist/compat/object/findKey.mjs +20 -11
  1033. package/dist/compat/object/findLastKey.d.mts +4 -3
  1034. package/dist/compat/object/findLastKey.d.ts +4 -3
  1035. package/dist/compat/object/findLastKey.js +20 -15
  1036. package/dist/compat/object/findLastKey.mjs +20 -11
  1037. package/dist/compat/object/forIn.d.mts +3 -2
  1038. package/dist/compat/object/forIn.d.ts +3 -2
  1039. package/dist/compat/object/forIn.js +34 -18
  1040. package/dist/compat/object/forIn.mjs +33 -13
  1041. package/dist/compat/object/forInRight.d.mts +3 -2
  1042. package/dist/compat/object/forInRight.d.ts +3 -2
  1043. package/dist/compat/object/forInRight.js +39 -23
  1044. package/dist/compat/object/forInRight.mjs +38 -18
  1045. package/dist/compat/object/forOwn.d.mts +3 -2
  1046. package/dist/compat/object/forOwn.d.ts +3 -2
  1047. package/dist/compat/object/forOwn.js +38 -21
  1048. package/dist/compat/object/forOwn.mjs +37 -16
  1049. package/dist/compat/object/forOwnRight.d.mts +3 -2
  1050. package/dist/compat/object/forOwnRight.d.ts +3 -2
  1051. package/dist/compat/object/forOwnRight.js +38 -21
  1052. package/dist/compat/object/forOwnRight.mjs +37 -16
  1053. package/dist/compat/object/fromPairs.d.mts +3 -2
  1054. package/dist/compat/object/fromPairs.d.ts +3 -2
  1055. package/dist/compat/object/fromPairs.js +24 -16
  1056. package/dist/compat/object/fromPairs.mjs +24 -12
  1057. package/dist/compat/object/functions.d.mts +3 -2
  1058. package/dist/compat/object/functions.d.ts +3 -2
  1059. package/dist/compat/object/functions.js +26 -11
  1060. package/dist/compat/object/functions.mjs +26 -7
  1061. package/dist/compat/object/functionsIn.d.mts +3 -2
  1062. package/dist/compat/object/functionsIn.d.ts +3 -2
  1063. package/dist/compat/object/functionsIn.js +24 -17
  1064. package/dist/compat/object/functionsIn.mjs +24 -13
  1065. package/dist/compat/object/get.d.mts +5 -4
  1066. package/dist/compat/object/get.d.ts +5 -4
  1067. package/dist/compat/object/get.js +60 -77
  1068. package/dist/compat/object/get.mjs +60 -73
  1069. package/dist/compat/object/has.d.mts +6 -7
  1070. package/dist/compat/object/has.d.ts +6 -7
  1071. package/dist/compat/object/has.js +49 -35
  1072. package/dist/compat/object/has.mjs +49 -31
  1073. package/dist/compat/object/hasIn.d.mts +4 -3
  1074. package/dist/compat/object/hasIn.d.ts +4 -3
  1075. package/dist/compat/object/hasIn.js +59 -38
  1076. package/dist/compat/object/hasIn.mjs +59 -34
  1077. package/dist/compat/object/invert.d.mts +3 -2
  1078. package/dist/compat/object/invert.d.ts +3 -2
  1079. package/dist/compat/object/invert.js +22 -8
  1080. package/dist/compat/object/invert.mjs +22 -4
  1081. package/dist/compat/object/invertBy.d.mts +4 -3
  1082. package/dist/compat/object/invertBy.d.ts +4 -3
  1083. package/dist/compat/object/invertBy.js +42 -30
  1084. package/dist/compat/object/invertBy.mjs +42 -26
  1085. package/dist/compat/object/keys.d.mts +3 -2
  1086. package/dist/compat/object/keys.d.ts +3 -2
  1087. package/dist/compat/object/keys.js +44 -35
  1088. package/dist/compat/object/keys.mjs +44 -31
  1089. package/dist/compat/object/keysIn.d.mts +3 -2
  1090. package/dist/compat/object/keysIn.d.ts +3 -2
  1091. package/dist/compat/object/keysIn.js +57 -52
  1092. package/dist/compat/object/keysIn.mjs +57 -48
  1093. package/dist/compat/object/mapKeys.d.mts +5 -4
  1094. package/dist/compat/object/mapKeys.d.ts +5 -4
  1095. package/dist/compat/object/mapKeys.js +26 -14
  1096. package/dist/compat/object/mapKeys.mjs +25 -9
  1097. package/dist/compat/object/mapValues.d.mts +9 -14
  1098. package/dist/compat/object/mapValues.d.ts +9 -14
  1099. package/dist/compat/object/mapValues.js +27 -14
  1100. package/dist/compat/object/mapValues.mjs +26 -9
  1101. package/dist/compat/object/merge.d.mts +3 -2
  1102. package/dist/compat/object/merge.d.ts +3 -2
  1103. package/dist/compat/object/merge.js +42 -9
  1104. package/dist/compat/object/merge.mjs +42 -5
  1105. package/dist/compat/object/mergeWith.d.mts +3 -2
  1106. package/dist/compat/object/mergeWith.d.ts +3 -2
  1107. package/dist/compat/object/mergeWith.js +106 -105
  1108. package/dist/compat/object/mergeWith.mjs +106 -101
  1109. package/dist/compat/object/omit.d.mts +4 -3
  1110. package/dist/compat/object/omit.d.ts +4 -3
  1111. package/dist/compat/object/omit.js +69 -64
  1112. package/dist/compat/object/omit.mjs +69 -60
  1113. package/dist/compat/object/omitBy.d.mts +4 -3
  1114. package/dist/compat/object/omitBy.d.ts +4 -3
  1115. package/dist/compat/object/omitBy.js +36 -29
  1116. package/dist/compat/object/omitBy.mjs +36 -25
  1117. package/dist/compat/object/pick.d.mts +5 -4
  1118. package/dist/compat/object/pick.d.ts +5 -4
  1119. package/dist/compat/object/pick.js +56 -50
  1120. package/dist/compat/object/pick.mjs +56 -46
  1121. package/dist/compat/object/pickBy.d.mts +5 -4
  1122. package/dist/compat/object/pickBy.d.ts +5 -4
  1123. package/dist/compat/object/pickBy.js +38 -27
  1124. package/dist/compat/object/pickBy.mjs +38 -23
  1125. package/dist/compat/object/property.d.mts +4 -3
  1126. package/dist/compat/object/property.d.ts +4 -3
  1127. package/dist/compat/object/property.js +24 -10
  1128. package/dist/compat/object/property.mjs +24 -6
  1129. package/dist/compat/object/propertyOf.d.mts +4 -3
  1130. package/dist/compat/object/propertyOf.d.ts +4 -3
  1131. package/dist/compat/object/propertyOf.js +26 -10
  1132. package/dist/compat/object/propertyOf.mjs +26 -6
  1133. package/dist/compat/object/result.d.mts +4 -3
  1134. package/dist/compat/object/result.d.ts +4 -3
  1135. package/dist/compat/object/result.js +47 -25
  1136. package/dist/compat/object/result.mjs +47 -21
  1137. package/dist/compat/object/set.d.mts +4 -3
  1138. package/dist/compat/object/set.d.ts +4 -3
  1139. package/dist/compat/object/set.js +31 -8
  1140. package/dist/compat/object/set.mjs +31 -4
  1141. package/dist/compat/object/setWith.d.mts +4 -3
  1142. package/dist/compat/object/setWith.d.ts +4 -3
  1143. package/dist/compat/object/setWith.js +30 -15
  1144. package/dist/compat/object/setWith.mjs +30 -11
  1145. package/dist/compat/object/toDefaulted.d.mts +3 -2
  1146. package/dist/compat/object/toDefaulted.d.ts +3 -2
  1147. package/dist/compat/object/toDefaulted.js +28 -10
  1148. package/dist/compat/object/toDefaulted.mjs +27 -6
  1149. package/dist/compat/object/toPairs.d.mts +3 -2
  1150. package/dist/compat/object/toPairs.d.ts +3 -2
  1151. package/dist/compat/object/toPairs.js +34 -26
  1152. package/dist/compat/object/toPairs.mjs +34 -22
  1153. package/dist/compat/object/toPairsIn.d.mts +3 -2
  1154. package/dist/compat/object/toPairsIn.d.ts +3 -2
  1155. package/dist/compat/object/toPairsIn.js +32 -26
  1156. package/dist/compat/object/toPairsIn.mjs +32 -22
  1157. package/dist/compat/object/transform.d.mts +3 -2
  1158. package/dist/compat/object/transform.d.ts +3 -2
  1159. package/dist/compat/object/transform.js +42 -32
  1160. package/dist/compat/object/transform.mjs +41 -27
  1161. package/dist/compat/object/unset.d.mts +3 -2
  1162. package/dist/compat/object/unset.d.ts +3 -2
  1163. package/dist/compat/object/unset.js +61 -77
  1164. package/dist/compat/object/unset.mjs +61 -73
  1165. package/dist/compat/object/update.d.mts +4 -3
  1166. package/dist/compat/object/update.d.ts +4 -3
  1167. package/dist/compat/object/update.js +13 -8
  1168. package/dist/compat/object/update.mjs +13 -4
  1169. package/dist/compat/object/updateWith.d.mts +4 -3
  1170. package/dist/compat/object/updateWith.d.ts +4 -3
  1171. package/dist/compat/object/updateWith.js +48 -54
  1172. package/dist/compat/object/updateWith.mjs +48 -50
  1173. package/dist/compat/object/values.d.mts +3 -2
  1174. package/dist/compat/object/values.d.ts +3 -2
  1175. package/dist/compat/object/values.js +13 -9
  1176. package/dist/compat/object/values.mjs +13 -5
  1177. package/dist/compat/object/valuesIn.d.mts +3 -2
  1178. package/dist/compat/object/valuesIn.d.ts +3 -2
  1179. package/dist/compat/object/valuesIn.js +22 -14
  1180. package/dist/compat/object/valuesIn.mjs +22 -10
  1181. package/dist/compat/predicate/conforms.d.mts +4 -3
  1182. package/dist/compat/predicate/conforms.d.ts +4 -3
  1183. package/dist/compat/predicate/conforms.js +27 -12
  1184. package/dist/compat/predicate/conforms.mjs +27 -8
  1185. package/dist/compat/predicate/conformsTo.d.mts +4 -3
  1186. package/dist/compat/predicate/conformsTo.d.ts +4 -3
  1187. package/dist/compat/predicate/conformsTo.js +40 -24
  1188. package/dist/compat/predicate/conformsTo.mjs +40 -20
  1189. package/dist/compat/predicate/isArguments.d.mts +3 -2
  1190. package/dist/compat/predicate/isArguments.d.ts +3 -2
  1191. package/dist/compat/predicate/isArguments.js +24 -8
  1192. package/dist/compat/predicate/isArguments.mjs +24 -4
  1193. package/dist/compat/predicate/isArray.d.mts +3 -2
  1194. package/dist/compat/predicate/isArray.d.ts +3 -2
  1195. package/dist/compat/predicate/isArray.js +23 -6
  1196. package/dist/compat/predicate/isArray.mjs +23 -2
  1197. package/dist/compat/predicate/isArrayBuffer.d.mts +3 -2
  1198. package/dist/compat/predicate/isArrayBuffer.d.ts +3 -2
  1199. package/dist/compat/predicate/isArrayBuffer.js +21 -8
  1200. package/dist/compat/predicate/isArrayBuffer.mjs +21 -4
  1201. package/dist/compat/predicate/isArrayLike.d.mts +5 -4
  1202. package/dist/compat/predicate/isArrayLike.d.ts +5 -4
  1203. package/dist/compat/predicate/isArrayLike.js +18 -8
  1204. package/dist/compat/predicate/isArrayLike.mjs +18 -4
  1205. package/dist/compat/predicate/isArrayLikeObject.d.mts +5 -4
  1206. package/dist/compat/predicate/isArrayLikeObject.d.ts +5 -4
  1207. package/dist/compat/predicate/isArrayLikeObject.js +17 -9
  1208. package/dist/compat/predicate/isArrayLikeObject.mjs +17 -5
  1209. package/dist/compat/predicate/isBoolean.d.mts +3 -2
  1210. package/dist/compat/predicate/isBoolean.d.ts +3 -2
  1211. package/dist/compat/predicate/isBoolean.js +25 -6
  1212. package/dist/compat/predicate/isBoolean.mjs +25 -2
  1213. package/dist/compat/predicate/isBuffer.d.mts +3 -2
  1214. package/dist/compat/predicate/isBuffer.d.ts +3 -2
  1215. package/dist/compat/predicate/isBuffer.js +22 -8
  1216. package/dist/compat/predicate/isBuffer.mjs +22 -4
  1217. package/dist/compat/predicate/isDate.d.mts +3 -2
  1218. package/dist/compat/predicate/isDate.d.ts +3 -2
  1219. package/dist/compat/predicate/isDate.js +17 -8
  1220. package/dist/compat/predicate/isDate.mjs +17 -4
  1221. package/dist/compat/predicate/isElement.d.mts +3 -2
  1222. package/dist/compat/predicate/isElement.d.ts +3 -2
  1223. package/dist/compat/predicate/isElement.js +15 -9
  1224. package/dist/compat/predicate/isElement.mjs +15 -5
  1225. package/dist/compat/predicate/isEmpty.d.mts +5 -4
  1226. package/dist/compat/predicate/isEmpty.d.ts +5 -4
  1227. package/dist/compat/predicate/isEmpty.js +45 -35
  1228. package/dist/compat/predicate/isEmpty.mjs +45 -31
  1229. package/dist/compat/predicate/isEqualWith.d.mts +4 -3
  1230. package/dist/compat/predicate/isEqualWith.d.ts +4 -3
  1231. package/dist/compat/predicate/isEqualWith.js +46 -23
  1232. package/dist/compat/predicate/isEqualWith.mjs +46 -19
  1233. package/dist/compat/predicate/isError.d.mts +3 -2
  1234. package/dist/compat/predicate/isError.d.ts +3 -2
  1235. package/dist/compat/predicate/isError.js +17 -8
  1236. package/dist/compat/predicate/isError.mjs +17 -4
  1237. package/dist/compat/predicate/isFinite.d.mts +3 -2
  1238. package/dist/compat/predicate/isFinite.d.ts +3 -2
  1239. package/dist/compat/predicate/isFinite.js +27 -6
  1240. package/dist/compat/predicate/isFinite.mjs +27 -2
  1241. package/dist/compat/predicate/isFunction.d.mts +3 -2
  1242. package/dist/compat/predicate/isFunction.d.ts +3 -2
  1243. package/dist/compat/predicate/isFunction.js +16 -6
  1244. package/dist/compat/predicate/isFunction.mjs +16 -2
  1245. package/dist/compat/predicate/isInteger.d.mts +3 -2
  1246. package/dist/compat/predicate/isInteger.d.ts +3 -2
  1247. package/dist/compat/predicate/isInteger.js +17 -6
  1248. package/dist/compat/predicate/isInteger.mjs +17 -2
  1249. package/dist/compat/predicate/isLength.d.mts +3 -2
  1250. package/dist/compat/predicate/isLength.d.ts +3 -2
  1251. package/dist/compat/predicate/isLength.js +24 -6
  1252. package/dist/compat/predicate/isLength.mjs +24 -2
  1253. package/dist/compat/predicate/isMap.d.mts +3 -2
  1254. package/dist/compat/predicate/isMap.d.ts +3 -2
  1255. package/dist/compat/predicate/isMap.js +21 -8
  1256. package/dist/compat/predicate/isMap.mjs +21 -4
  1257. package/dist/compat/predicate/isMatch.d.mts +3 -2
  1258. package/dist/compat/predicate/isMatch.d.ts +3 -2
  1259. package/dist/compat/predicate/isMatch.js +32 -8
  1260. package/dist/compat/predicate/isMatch.mjs +32 -4
  1261. package/dist/compat/predicate/isMatchWith.d.mts +5 -3
  1262. package/dist/compat/predicate/isMatchWith.d.ts +5 -3
  1263. package/dist/compat/predicate/isMatchWith.js +140 -141
  1264. package/dist/compat/predicate/isMatchWith.mjs +141 -137
  1265. package/dist/compat/predicate/isNaN.d.mts +3 -2
  1266. package/dist/compat/predicate/isNaN.d.ts +3 -2
  1267. package/dist/compat/predicate/isNaN.js +15 -6
  1268. package/dist/compat/predicate/isNaN.mjs +15 -2
  1269. package/dist/compat/predicate/isNative.d.mts +3 -2
  1270. package/dist/compat/predicate/isNative.d.ts +3 -2
  1271. package/dist/compat/predicate/isNative.js +22 -17
  1272. package/dist/compat/predicate/isNative.mjs +22 -13
  1273. package/dist/compat/predicate/isNil.d.mts +3 -2
  1274. package/dist/compat/predicate/isNil.d.ts +3 -2
  1275. package/dist/compat/predicate/isNil.js +22 -6
  1276. package/dist/compat/predicate/isNil.mjs +22 -2
  1277. package/dist/compat/predicate/isNull.d.mts +3 -2
  1278. package/dist/compat/predicate/isNull.d.ts +3 -2
  1279. package/dist/compat/predicate/isNull.js +14 -6
  1280. package/dist/compat/predicate/isNull.mjs +14 -2
  1281. package/dist/compat/predicate/isNumber.d.mts +3 -2
  1282. package/dist/compat/predicate/isNumber.d.ts +3 -2
  1283. package/dist/compat/predicate/isNumber.js +20 -6
  1284. package/dist/compat/predicate/isNumber.mjs +20 -2
  1285. package/dist/compat/predicate/isObject.d.mts +3 -2
  1286. package/dist/compat/predicate/isObject.d.ts +3 -2
  1287. package/dist/compat/predicate/isObject.js +26 -6
  1288. package/dist/compat/predicate/isObject.mjs +26 -2
  1289. package/dist/compat/predicate/isObjectLike.d.mts +3 -2
  1290. package/dist/compat/predicate/isObjectLike.d.ts +3 -2
  1291. package/dist/compat/predicate/isObjectLike.js +26 -6
  1292. package/dist/compat/predicate/isObjectLike.mjs +26 -2
  1293. package/dist/compat/predicate/isPlainObject.d.mts +3 -2
  1294. package/dist/compat/predicate/isPlainObject.d.ts +3 -2
  1295. package/dist/compat/predicate/isPlainObject.js +36 -30
  1296. package/dist/compat/predicate/isPlainObject.mjs +36 -26
  1297. package/dist/compat/predicate/isRegExp.d.mts +3 -2
  1298. package/dist/compat/predicate/isRegExp.d.ts +3 -2
  1299. package/dist/compat/predicate/isRegExp.js +17 -8
  1300. package/dist/compat/predicate/isRegExp.mjs +17 -4
  1301. package/dist/compat/predicate/isSafeInteger.d.mts +3 -2
  1302. package/dist/compat/predicate/isSafeInteger.d.ts +3 -2
  1303. package/dist/compat/predicate/isSafeInteger.js +21 -6
  1304. package/dist/compat/predicate/isSafeInteger.mjs +21 -2
  1305. package/dist/compat/predicate/isSet.d.mts +3 -2
  1306. package/dist/compat/predicate/isSet.d.ts +3 -2
  1307. package/dist/compat/predicate/isSet.js +21 -8
  1308. package/dist/compat/predicate/isSet.mjs +21 -4
  1309. package/dist/compat/predicate/isString.d.mts +3 -2
  1310. package/dist/compat/predicate/isString.d.ts +3 -2
  1311. package/dist/compat/predicate/isString.js +20 -6
  1312. package/dist/compat/predicate/isString.mjs +20 -2
  1313. package/dist/compat/predicate/isSymbol.d.mts +3 -2
  1314. package/dist/compat/predicate/isSymbol.d.ts +3 -2
  1315. package/dist/compat/predicate/isSymbol.js +17 -6
  1316. package/dist/compat/predicate/isSymbol.mjs +17 -2
  1317. package/dist/compat/predicate/isTypedArray.d.mts +3 -2
  1318. package/dist/compat/predicate/isTypedArray.d.ts +3 -2
  1319. package/dist/compat/predicate/isTypedArray.js +19 -8
  1320. package/dist/compat/predicate/isTypedArray.mjs +19 -4
  1321. package/dist/compat/predicate/isUndefined.d.mts +3 -2
  1322. package/dist/compat/predicate/isUndefined.d.ts +3 -2
  1323. package/dist/compat/predicate/isUndefined.js +24 -8
  1324. package/dist/compat/predicate/isUndefined.mjs +24 -4
  1325. package/dist/compat/predicate/isWeakMap.d.mts +3 -2
  1326. package/dist/compat/predicate/isWeakMap.d.ts +3 -2
  1327. package/dist/compat/predicate/isWeakMap.js +24 -8
  1328. package/dist/compat/predicate/isWeakMap.mjs +24 -4
  1329. package/dist/compat/predicate/isWeakSet.d.mts +3 -2
  1330. package/dist/compat/predicate/isWeakSet.d.ts +3 -2
  1331. package/dist/compat/predicate/isWeakSet.js +24 -8
  1332. package/dist/compat/predicate/isWeakSet.mjs +24 -4
  1333. package/dist/compat/predicate/matches.d.mts +3 -2
  1334. package/dist/compat/predicate/matches.d.ts +3 -2
  1335. package/dist/compat/predicate/matches.js +34 -12
  1336. package/dist/compat/predicate/matches.mjs +34 -8
  1337. package/dist/compat/predicate/matchesProperty.d.mts +4 -3
  1338. package/dist/compat/predicate/matchesProperty.d.ts +4 -3
  1339. package/dist/compat/predicate/matchesProperty.js +47 -34
  1340. package/dist/compat/predicate/matchesProperty.mjs +47 -30
  1341. package/dist/compat/string/camelCase.d.mts +3 -2
  1342. package/dist/compat/string/camelCase.d.ts +3 -2
  1343. package/dist/compat/string/camelCase.js +21 -10
  1344. package/dist/compat/string/camelCase.mjs +21 -6
  1345. package/dist/compat/string/capitalize.d.mts +3 -2
  1346. package/dist/compat/string/capitalize.d.ts +3 -2
  1347. package/dist/compat/string/capitalize.js +16 -9
  1348. package/dist/compat/string/capitalize.mjs +16 -5
  1349. package/dist/compat/string/deburr.d.mts +3 -2
  1350. package/dist/compat/string/deburr.d.ts +3 -2
  1351. package/dist/compat/string/deburr.js +24 -9
  1352. package/dist/compat/string/deburr.mjs +24 -5
  1353. package/dist/compat/string/endsWith.d.mts +3 -2
  1354. package/dist/compat/string/endsWith.d.ts +3 -2
  1355. package/dist/compat/string/endsWith.js +22 -12
  1356. package/dist/compat/string/endsWith.mjs +22 -8
  1357. package/dist/compat/string/escape.d.mts +3 -2
  1358. package/dist/compat/string/escape.d.ts +3 -2
  1359. package/dist/compat/string/escape.js +18 -9
  1360. package/dist/compat/string/escape.mjs +18 -5
  1361. package/dist/compat/string/escapeRegExp.d.mts +3 -2
  1362. package/dist/compat/string/escapeRegExp.d.ts +3 -2
  1363. package/dist/compat/string/escapeRegExp.js +16 -9
  1364. package/dist/compat/string/escapeRegExp.mjs +16 -5
  1365. package/dist/compat/string/kebabCase.d.mts +3 -2
  1366. package/dist/compat/string/kebabCase.d.ts +3 -2
  1367. package/dist/compat/string/kebabCase.js +20 -10
  1368. package/dist/compat/string/kebabCase.mjs +20 -6
  1369. package/dist/compat/string/lowerCase.d.mts +3 -2
  1370. package/dist/compat/string/lowerCase.d.ts +3 -2
  1371. package/dist/compat/string/lowerCase.js +20 -10
  1372. package/dist/compat/string/lowerCase.mjs +20 -6
  1373. package/dist/compat/string/lowerFirst.d.mts +3 -2
  1374. package/dist/compat/string/lowerFirst.d.ts +3 -2
  1375. package/dist/compat/string/lowerFirst.js +16 -9
  1376. package/dist/compat/string/lowerFirst.mjs +16 -5
  1377. package/dist/compat/string/pad.d.mts +3 -2
  1378. package/dist/compat/string/pad.d.ts +3 -2
  1379. package/dist/compat/string/pad.js +21 -9
  1380. package/dist/compat/string/pad.mjs +21 -5
  1381. package/dist/compat/string/padEnd.d.mts +3 -2
  1382. package/dist/compat/string/padEnd.d.ts +3 -2
  1383. package/dist/compat/string/padEnd.js +22 -9
  1384. package/dist/compat/string/padEnd.mjs +22 -5
  1385. package/dist/compat/string/padStart.d.mts +3 -2
  1386. package/dist/compat/string/padStart.d.ts +3 -2
  1387. package/dist/compat/string/padStart.js +22 -9
  1388. package/dist/compat/string/padStart.mjs +22 -5
  1389. package/dist/compat/string/repeat.d.mts +3 -2
  1390. package/dist/compat/string/repeat.d.ts +3 -2
  1391. package/dist/compat/string/repeat.js +24 -20
  1392. package/dist/compat/string/repeat.mjs +24 -16
  1393. package/dist/compat/string/replace.d.mts +3 -2
  1394. package/dist/compat/string/replace.d.ts +3 -2
  1395. package/dist/compat/string/replace.js +19 -11
  1396. package/dist/compat/string/replace.mjs +19 -7
  1397. package/dist/compat/string/snakeCase.d.mts +3 -2
  1398. package/dist/compat/string/snakeCase.d.ts +3 -2
  1399. package/dist/compat/string/snakeCase.js +20 -10
  1400. package/dist/compat/string/snakeCase.mjs +20 -6
  1401. package/dist/compat/string/split.d.mts +3 -2
  1402. package/dist/compat/string/split.d.ts +3 -2
  1403. package/dist/compat/string/split.js +4 -8
  1404. package/dist/compat/string/split.mjs +4 -4
  1405. package/dist/compat/string/startCase.d.mts +3 -2
  1406. package/dist/compat/string/startCase.d.ts +3 -2
  1407. package/dist/compat/string/startCase.js +27 -24
  1408. package/dist/compat/string/startCase.mjs +27 -20
  1409. package/dist/compat/string/startsWith.d.mts +3 -2
  1410. package/dist/compat/string/startsWith.d.ts +3 -2
  1411. package/dist/compat/string/startsWith.js +22 -12
  1412. package/dist/compat/string/startsWith.mjs +22 -8
  1413. package/dist/compat/string/template.d.mts +21 -20
  1414. package/dist/compat/string/template.d.ts +21 -20
  1415. package/dist/compat/string/template.js +120 -74
  1416. package/dist/compat/string/template.mjs +120 -70
  1417. package/dist/compat/string/templateSettings.d.mts +1 -0
  1418. package/dist/compat/string/templateSettings.d.ts +1 -0
  1419. package/dist/compat/string/templateSettings.js +1 -0
  1420. package/dist/compat/string/templateSettings.mjs +1 -0
  1421. package/dist/compat/string/toLower.d.mts +3 -2
  1422. package/dist/compat/string/toLower.d.ts +3 -2
  1423. package/dist/compat/string/toLower.js +21 -8
  1424. package/dist/compat/string/toLower.mjs +21 -4
  1425. package/dist/compat/string/toUpper.d.mts +3 -2
  1426. package/dist/compat/string/toUpper.d.ts +3 -2
  1427. package/dist/compat/string/toUpper.js +21 -8
  1428. package/dist/compat/string/toUpper.mjs +21 -4
  1429. package/dist/compat/string/trim.d.mts +3 -2
  1430. package/dist/compat/string/trim.d.ts +3 -2
  1431. package/dist/compat/string/trim.js +10 -26
  1432. package/dist/compat/string/trim.mjs +10 -22
  1433. package/dist/compat/string/trimEnd.d.mts +3 -2
  1434. package/dist/compat/string/trimEnd.d.ts +3 -2
  1435. package/dist/compat/string/trimEnd.js +21 -14
  1436. package/dist/compat/string/trimEnd.mjs +21 -10
  1437. package/dist/compat/string/trimStart.d.mts +3 -2
  1438. package/dist/compat/string/trimStart.d.ts +3 -2
  1439. package/dist/compat/string/trimStart.js +21 -14
  1440. package/dist/compat/string/trimStart.mjs +21 -10
  1441. package/dist/compat/string/truncate.d.mts +6 -5
  1442. package/dist/compat/string/truncate.d.ts +6 -5
  1443. package/dist/compat/string/truncate.js +66 -46
  1444. package/dist/compat/string/truncate.mjs +66 -42
  1445. package/dist/compat/string/unescape.d.mts +3 -2
  1446. package/dist/compat/string/unescape.d.ts +3 -2
  1447. package/dist/compat/string/unescape.js +18 -9
  1448. package/dist/compat/string/unescape.mjs +18 -5
  1449. package/dist/compat/string/upperCase.d.mts +3 -2
  1450. package/dist/compat/string/upperCase.d.ts +3 -2
  1451. package/dist/compat/string/upperCase.js +20 -10
  1452. package/dist/compat/string/upperCase.mjs +20 -6
  1453. package/dist/compat/string/upperFirst.d.mts +3 -2
  1454. package/dist/compat/string/upperFirst.d.ts +3 -2
  1455. package/dist/compat/string/upperFirst.js +16 -9
  1456. package/dist/compat/string/upperFirst.mjs +16 -5
  1457. package/dist/compat/string/words.d.mts +3 -2
  1458. package/dist/compat/string/words.d.ts +3 -2
  1459. package/dist/compat/string/words.js +35 -33
  1460. package/dist/compat/string/words.mjs +35 -29
  1461. package/dist/compat/toolkit.d.mts +6 -6
  1462. package/dist/compat/toolkit.d.ts +6 -6
  1463. package/dist/compat/toolkit.js +5 -9
  1464. package/dist/compat/toolkit.mjs +5 -5
  1465. package/dist/compat/util/bindAll.d.mts +4 -3
  1466. package/dist/compat/util/bindAll.d.ts +4 -3
  1467. package/dist/compat/util/bindAll.js +50 -44
  1468. package/dist/compat/util/bindAll.mjs +50 -40
  1469. package/dist/compat/util/cond.d.mts +3 -2
  1470. package/dist/compat/util/cond.d.ts +3 -2
  1471. package/dist/compat/util/cond.js +19 -27
  1472. package/dist/compat/util/cond.mjs +19 -23
  1473. package/dist/compat/util/constant.d.mts +3 -2
  1474. package/dist/compat/util/constant.d.ts +3 -2
  1475. package/dist/compat/util/constant.js +17 -6
  1476. package/dist/compat/util/constant.mjs +17 -2
  1477. package/dist/compat/util/defaultTo.d.mts +3 -2
  1478. package/dist/compat/util/defaultTo.d.ts +3 -2
  1479. package/dist/compat/util/defaultTo.js +20 -9
  1480. package/dist/compat/util/defaultTo.mjs +20 -5
  1481. package/dist/compat/util/eq.d.mts +1 -0
  1482. package/dist/compat/util/eq.d.ts +1 -0
  1483. package/dist/compat/util/eq.js +1 -0
  1484. package/dist/compat/util/eq.mjs +1 -0
  1485. package/dist/compat/util/gt.d.mts +3 -2
  1486. package/dist/compat/util/gt.d.ts +3 -2
  1487. package/dist/compat/util/gt.js +17 -11
  1488. package/dist/compat/util/gt.mjs +17 -7
  1489. package/dist/compat/util/gte.d.mts +3 -2
  1490. package/dist/compat/util/gte.d.ts +3 -2
  1491. package/dist/compat/util/gte.js +17 -11
  1492. package/dist/compat/util/gte.mjs +17 -7
  1493. package/dist/compat/util/invoke.d.mts +3 -2
  1494. package/dist/compat/util/invoke.d.ts +3 -2
  1495. package/dist/compat/util/invoke.js +44 -48
  1496. package/dist/compat/util/invoke.mjs +44 -44
  1497. package/dist/compat/util/iteratee.d.mts +3 -2
  1498. package/dist/compat/util/iteratee.d.ts +3 -2
  1499. package/dist/compat/util/iteratee.js +46 -29
  1500. package/dist/compat/util/iteratee.mjs +46 -25
  1501. package/dist/compat/util/lt.d.mts +3 -2
  1502. package/dist/compat/util/lt.d.ts +3 -2
  1503. package/dist/compat/util/lt.js +17 -11
  1504. package/dist/compat/util/lt.mjs +17 -7
  1505. package/dist/compat/util/lte.d.mts +3 -2
  1506. package/dist/compat/util/lte.d.ts +3 -2
  1507. package/dist/compat/util/lte.js +17 -11
  1508. package/dist/compat/util/lte.mjs +17 -7
  1509. package/dist/compat/util/method.d.mts +3 -2
  1510. package/dist/compat/util/method.d.ts +3 -2
  1511. package/dist/compat/util/method.js +25 -10
  1512. package/dist/compat/util/method.mjs +25 -6
  1513. package/dist/compat/util/methodOf.d.mts +3 -2
  1514. package/dist/compat/util/methodOf.d.ts +3 -2
  1515. package/dist/compat/util/methodOf.js +25 -10
  1516. package/dist/compat/util/methodOf.mjs +25 -6
  1517. package/dist/compat/util/now.d.mts +3 -2
  1518. package/dist/compat/util/now.d.ts +3 -2
  1519. package/dist/compat/util/now.js +18 -6
  1520. package/dist/compat/util/now.mjs +18 -2
  1521. package/dist/compat/util/over.d.mts +3 -2
  1522. package/dist/compat/util/over.d.ts +3 -2
  1523. package/dist/compat/util/over.js +34 -14
  1524. package/dist/compat/util/over.mjs +34 -10
  1525. package/dist/compat/util/overEvery.d.mts +3 -2
  1526. package/dist/compat/util/overEvery.d.ts +3 -2
  1527. package/dist/compat/util/overEvery.js +58 -24
  1528. package/dist/compat/util/overEvery.mjs +58 -20
  1529. package/dist/compat/util/overSome.d.mts +3 -2
  1530. package/dist/compat/util/overSome.d.ts +3 -2
  1531. package/dist/compat/util/overSome.js +60 -24
  1532. package/dist/compat/util/overSome.mjs +60 -20
  1533. package/dist/compat/util/stubArray.d.mts +3 -2
  1534. package/dist/compat/util/stubArray.d.ts +3 -2
  1535. package/dist/compat/util/stubArray.js +3 -6
  1536. package/dist/compat/util/stubArray.mjs +3 -2
  1537. package/dist/compat/util/stubFalse.d.mts +3 -2
  1538. package/dist/compat/util/stubFalse.d.ts +3 -2
  1539. package/dist/compat/util/stubFalse.js +3 -6
  1540. package/dist/compat/util/stubFalse.mjs +3 -2
  1541. package/dist/compat/util/stubObject.d.mts +3 -2
  1542. package/dist/compat/util/stubObject.d.ts +3 -2
  1543. package/dist/compat/util/stubObject.js +10 -6
  1544. package/dist/compat/util/stubObject.mjs +10 -2
  1545. package/dist/compat/util/stubString.d.mts +3 -2
  1546. package/dist/compat/util/stubString.d.ts +3 -2
  1547. package/dist/compat/util/stubString.js +3 -6
  1548. package/dist/compat/util/stubString.mjs +3 -2
  1549. package/dist/compat/util/stubTrue.d.mts +3 -2
  1550. package/dist/compat/util/stubTrue.d.ts +3 -2
  1551. package/dist/compat/util/stubTrue.js +3 -6
  1552. package/dist/compat/util/stubTrue.mjs +3 -2
  1553. package/dist/compat/util/times.d.mts +3 -2
  1554. package/dist/compat/util/times.d.ts +3 -2
  1555. package/dist/compat/util/times.js +19 -16
  1556. package/dist/compat/util/times.mjs +19 -12
  1557. package/dist/compat/util/toArray.d.mts +3 -2
  1558. package/dist/compat/util/toArray.d.ts +3 -2
  1559. package/dist/compat/util/toArray.js +20 -18
  1560. package/dist/compat/util/toArray.mjs +20 -14
  1561. package/dist/compat/util/toFinite.d.mts +3 -2
  1562. package/dist/compat/util/toFinite.d.ts +3 -2
  1563. package/dist/compat/util/toFinite.js +21 -16
  1564. package/dist/compat/util/toFinite.mjs +21 -12
  1565. package/dist/compat/util/toInteger.d.mts +3 -2
  1566. package/dist/compat/util/toInteger.d.ts +3 -2
  1567. package/dist/compat/util/toInteger.js +23 -10
  1568. package/dist/compat/util/toInteger.mjs +23 -6
  1569. package/dist/compat/util/toLength.d.mts +3 -2
  1570. package/dist/compat/util/toLength.d.ts +3 -2
  1571. package/dist/compat/util/toLength.js +22 -13
  1572. package/dist/compat/util/toLength.mjs +21 -9
  1573. package/dist/compat/util/toNumber.d.mts +3 -2
  1574. package/dist/compat/util/toNumber.d.ts +3 -2
  1575. package/dist/compat/util/toNumber.js +21 -11
  1576. package/dist/compat/util/toNumber.mjs +21 -7
  1577. package/dist/compat/util/toPath.d.mts +3 -2
  1578. package/dist/compat/util/toPath.d.ts +3 -2
  1579. package/dist/compat/util/toPath.js +64 -79
  1580. package/dist/compat/util/toPath.mjs +64 -75
  1581. package/dist/compat/util/toPlainObject.d.mts +3 -2
  1582. package/dist/compat/util/toPlainObject.d.ts +3 -2
  1583. package/dist/compat/util/toPlainObject.js +30 -25
  1584. package/dist/compat/util/toPlainObject.mjs +30 -21
  1585. package/dist/compat/util/toSafeInteger.d.mts +3 -2
  1586. package/dist/compat/util/toSafeInteger.d.ts +3 -2
  1587. package/dist/compat/util/toSafeInteger.js +24 -13
  1588. package/dist/compat/util/toSafeInteger.mjs +24 -9
  1589. package/dist/compat/util/toString.d.mts +3 -2
  1590. package/dist/compat/util/toString.d.ts +3 -2
  1591. package/dist/compat/util/toString.js +24 -19
  1592. package/dist/compat/util/toString.mjs +24 -15
  1593. package/dist/compat/util/uniqueId.d.mts +3 -2
  1594. package/dist/compat/util/uniqueId.d.ts +3 -2
  1595. package/dist/compat/util/uniqueId.js +27 -8
  1596. package/dist/compat/util/uniqueId.mjs +27 -4
  1597. package/dist/error/AbortError.d.mts +5 -4
  1598. package/dist/error/AbortError.d.ts +5 -4
  1599. package/dist/error/AbortError.js +12 -12
  1600. package/dist/error/AbortError.mjs +12 -8
  1601. package/dist/error/TimeoutError.d.mts +5 -4
  1602. package/dist/error/TimeoutError.d.ts +5 -4
  1603. package/dist/error/TimeoutError.js +12 -12
  1604. package/dist/error/TimeoutError.mjs +12 -8
  1605. package/dist/error/index.d.mts +3 -2
  1606. package/dist/error/index.d.ts +3 -2
  1607. package/dist/error/index.js +5 -11
  1608. package/dist/error/index.mjs +3 -2
  1609. package/dist/function/after.d.mts +3 -2
  1610. package/dist/function/after.d.ts +3 -2
  1611. package/dist/function/after.js +35 -15
  1612. package/dist/function/after.mjs +35 -11
  1613. package/dist/function/ary.d.mts +3 -2
  1614. package/dist/function/ary.d.ts +3 -2
  1615. package/dist/function/ary.js +23 -8
  1616. package/dist/function/ary.mjs +23 -4
  1617. package/dist/function/asyncNoop.d.mts +3 -2
  1618. package/dist/function/asyncNoop.d.ts +3 -2
  1619. package/dist/function/asyncNoop.js +12 -6
  1620. package/dist/function/asyncNoop.mjs +12 -2
  1621. package/dist/function/before.d.mts +3 -2
  1622. package/dist/function/before.d.ts +3 -2
  1623. package/dist/function/before.js +35 -15
  1624. package/dist/function/before.mjs +35 -11
  1625. package/dist/function/curry.d.mts +3 -2
  1626. package/dist/function/curry.d.ts +3 -2
  1627. package/dist/function/curry.js +36 -20
  1628. package/dist/function/curry.mjs +36 -16
  1629. package/dist/function/curryRight.d.mts +3 -2
  1630. package/dist/function/curryRight.d.ts +3 -2
  1631. package/dist/function/curryRight.js +38 -20
  1632. package/dist/function/curryRight.mjs +38 -16
  1633. package/dist/function/debounce.d.mts +39 -35
  1634. package/dist/function/debounce.d.ts +39 -35
  1635. package/dist/function/debounce.js +87 -63
  1636. package/dist/function/debounce.mjs +87 -59
  1637. package/dist/function/flow.d.mts +3 -2
  1638. package/dist/function/flow.d.ts +3 -2
  1639. package/dist/function/flow.js +22 -12
  1640. package/dist/function/flow.mjs +22 -8
  1641. package/dist/function/flowRight.d.mts +3 -2
  1642. package/dist/function/flowRight.d.ts +3 -2
  1643. package/dist/function/flowRight.js +21 -8
  1644. package/dist/function/flowRight.mjs +21 -4
  1645. package/dist/function/identity.d.mts +3 -2
  1646. package/dist/function/identity.d.ts +3 -2
  1647. package/dist/function/identity.js +22 -6
  1648. package/dist/function/identity.mjs +22 -2
  1649. package/dist/function/index.d.mts +22 -21
  1650. package/dist/function/index.d.ts +22 -21
  1651. package/dist/function/index.js +43 -49
  1652. package/dist/function/index.mjs +22 -21
  1653. package/dist/function/memoize.d.mts +42 -41
  1654. package/dist/function/memoize.d.ts +42 -41
  1655. package/dist/function/memoize.js +84 -17
  1656. package/dist/function/memoize.mjs +84 -13
  1657. package/dist/function/negate.d.mts +3 -2
  1658. package/dist/function/negate.d.ts +3 -2
  1659. package/dist/function/negate.js +16 -6
  1660. package/dist/function/negate.mjs +16 -2
  1661. package/dist/function/noop.d.mts +3 -2
  1662. package/dist/function/noop.d.ts +3 -2
  1663. package/dist/function/noop.js +12 -6
  1664. package/dist/function/noop.mjs +12 -2
  1665. package/dist/function/once.d.mts +3 -2
  1666. package/dist/function/once.d.ts +3 -2
  1667. package/dist/function/once.js +28 -14
  1668. package/dist/function/once.mjs +28 -10
  1669. package/dist/function/partial.d.mts +5 -3
  1670. package/dist/function/partial.d.ts +5 -3
  1671. package/dist/function/partial.js +38 -19
  1672. package/dist/function/partial.mjs +38 -15
  1673. package/dist/function/partialRight.d.mts +5 -3
  1674. package/dist/function/partialRight.d.ts +5 -3
  1675. package/dist/function/partialRight.js +40 -21
  1676. package/dist/function/partialRight.mjs +40 -17
  1677. package/dist/function/rest.d.mts +3 -2
  1678. package/dist/function/rest.d.ts +3 -2
  1679. package/dist/function/rest.js +38 -13
  1680. package/dist/function/rest.mjs +38 -9
  1681. package/dist/function/retry.d.mts +33 -32
  1682. package/dist/function/retry.d.ts +33 -32
  1683. package/dist/function/retry.js +39 -41
  1684. package/dist/function/retry.mjs +38 -37
  1685. package/dist/function/spread.d.mts +3 -2
  1686. package/dist/function/spread.d.ts +3 -2
  1687. package/dist/function/spread.js +21 -8
  1688. package/dist/function/spread.mjs +21 -4
  1689. package/dist/function/throttle.d.mts +22 -18
  1690. package/dist/function/throttle.d.ts +22 -18
  1691. package/dist/function/throttle.js +52 -29
  1692. package/dist/function/throttle.mjs +52 -25
  1693. package/dist/function/unary.d.mts +3 -2
  1694. package/dist/function/unary.d.ts +3 -2
  1695. package/dist/function/unary.js +18 -8
  1696. package/dist/function/unary.mjs +18 -4
  1697. package/dist/index.d.mts +186 -180
  1698. package/dist/index.d.ts +186 -180
  1699. package/dist/index.js +383 -370
  1700. package/dist/index.mjs +195 -180
  1701. package/dist/map/countBy.d.mts +3 -2
  1702. package/dist/map/countBy.d.ts +3 -2
  1703. package/dist/map/countBy.js +40 -11
  1704. package/dist/map/countBy.mjs +40 -7
  1705. package/dist/map/every.d.mts +3 -2
  1706. package/dist/map/every.d.ts +3 -2
  1707. package/dist/map/every.js +29 -11
  1708. package/dist/map/every.mjs +29 -7
  1709. package/dist/map/filter.d.mts +3 -2
  1710. package/dist/map/filter.d.ts +3 -2
  1711. package/dist/map/filter.js +31 -12
  1712. package/dist/map/filter.mjs +31 -8
  1713. package/dist/map/findKey.d.mts +3 -2
  1714. package/dist/map/findKey.d.ts +3 -2
  1715. package/dist/map/findKey.js +30 -13
  1716. package/dist/map/findKey.mjs +30 -9
  1717. package/dist/map/findValue.d.mts +3 -2
  1718. package/dist/map/findValue.d.ts +3 -2
  1719. package/dist/map/findValue.js +30 -13
  1720. package/dist/map/findValue.mjs +30 -9
  1721. package/dist/map/forEach.d.mts +3 -2
  1722. package/dist/map/forEach.d.ts +3 -2
  1723. package/dist/map/forEach.js +29 -8
  1724. package/dist/map/forEach.mjs +29 -4
  1725. package/dist/map/hasValue.d.mts +3 -2
  1726. package/dist/map/hasValue.d.ts +3 -2
  1727. package/dist/map/hasValue.js +30 -13
  1728. package/dist/map/hasValue.mjs +30 -9
  1729. package/dist/map/index.d.mts +13 -12
  1730. package/dist/map/index.d.ts +13 -12
  1731. package/dist/map/index.js +25 -31
  1732. package/dist/map/index.mjs +13 -12
  1733. package/dist/map/keyBy.d.mts +3 -2
  1734. package/dist/map/keyBy.d.ts +3 -2
  1735. package/dist/map/keyBy.js +36 -11
  1736. package/dist/map/keyBy.mjs +36 -7
  1737. package/dist/map/mapKeys.d.mts +3 -2
  1738. package/dist/map/mapKeys.d.ts +3 -2
  1739. package/dist/map/mapKeys.js +35 -11
  1740. package/dist/map/mapKeys.mjs +35 -7
  1741. package/dist/map/mapValues.d.mts +3 -2
  1742. package/dist/map/mapValues.d.ts +3 -2
  1743. package/dist/map/mapValues.js +35 -11
  1744. package/dist/map/mapValues.mjs +35 -7
  1745. package/dist/map/reduce.d.mts +3 -2
  1746. package/dist/map/reduce.d.ts +3 -2
  1747. package/dist/map/reduce.js +39 -18
  1748. package/dist/map/reduce.mjs +39 -14
  1749. package/dist/map/some.d.mts +3 -2
  1750. package/dist/map/some.d.ts +3 -2
  1751. package/dist/map/some.js +29 -11
  1752. package/dist/map/some.mjs +29 -7
  1753. package/dist/math/clamp.d.mts +3 -2
  1754. package/dist/math/clamp.d.ts +3 -2
  1755. package/dist/math/clamp.js +21 -9
  1756. package/dist/math/clamp.mjs +21 -5
  1757. package/dist/math/inRange.d.mts +3 -2
  1758. package/dist/math/inRange.d.ts +3 -2
  1759. package/dist/math/inRange.js +22 -13
  1760. package/dist/math/inRange.mjs +22 -9
  1761. package/dist/math/index.d.mts +15 -13
  1762. package/dist/math/index.d.ts +15 -13
  1763. package/dist/math/index.js +29 -33
  1764. package/dist/math/index.mjs +15 -13
  1765. package/dist/math/mean.d.mts +3 -2
  1766. package/dist/math/mean.d.ts +3 -2
  1767. package/dist/math/mean.js +17 -8
  1768. package/dist/math/mean.mjs +17 -4
  1769. package/dist/math/meanBy.d.mts +3 -2
  1770. package/dist/math/meanBy.d.ts +3 -2
  1771. package/dist/math/meanBy.js +19 -8
  1772. package/dist/math/meanBy.mjs +19 -4
  1773. package/dist/math/median.d.mts +3 -2
  1774. package/dist/math/median.d.ts +3 -2
  1775. package/dist/math/median.js +29 -16
  1776. package/dist/math/median.mjs +29 -12
  1777. package/dist/math/medianBy.d.mts +3 -2
  1778. package/dist/math/medianBy.d.ts +3 -2
  1779. package/dist/math/medianBy.js +25 -9
  1780. package/dist/math/medianBy.mjs +24 -5
  1781. package/dist/math/percentile.d.mts +29 -0
  1782. package/dist/math/percentile.d.ts +29 -0
  1783. package/dist/math/percentile.js +39 -0
  1784. package/dist/math/percentile.mjs +39 -0
  1785. package/dist/math/random.d.mts +3 -2
  1786. package/dist/math/random.d.ts +3 -2
  1787. package/dist/math/random.js +21 -13
  1788. package/dist/math/random.mjs +21 -9
  1789. package/dist/math/randomInt.d.mts +3 -2
  1790. package/dist/math/randomInt.d.ts +3 -2
  1791. package/dist/math/randomInt.js +18 -8
  1792. package/dist/math/randomInt.mjs +18 -4
  1793. package/dist/math/range.d.mts +3 -2
  1794. package/dist/math/range.d.ts +3 -2
  1795. package/dist/math/range.js +28 -18
  1796. package/dist/math/range.mjs +28 -14
  1797. package/dist/math/rangeRight.d.mts +3 -2
  1798. package/dist/math/rangeRight.d.ts +3 -2
  1799. package/dist/math/rangeRight.js +28 -18
  1800. package/dist/math/rangeRight.mjs +28 -14
  1801. package/dist/math/round.d.mts +3 -2
  1802. package/dist/math/round.d.ts +3 -2
  1803. package/dist/math/round.js +22 -10
  1804. package/dist/math/round.mjs +22 -6
  1805. package/dist/math/sum.d.mts +3 -2
  1806. package/dist/math/sum.d.ts +3 -2
  1807. package/dist/math/sum.js +18 -10
  1808. package/dist/math/sum.mjs +18 -6
  1809. package/dist/math/sumBy.d.mts +3 -2
  1810. package/dist/math/sumBy.d.ts +3 -2
  1811. package/dist/math/sumBy.js +21 -10
  1812. package/dist/math/sumBy.mjs +21 -6
  1813. package/dist/object/clone.d.mts +3 -2
  1814. package/dist/object/clone.d.ts +3 -2
  1815. package/dist/object/clone.js +58 -54
  1816. package/dist/object/clone.mjs +58 -50
  1817. package/dist/object/cloneDeep.d.mts +3 -2
  1818. package/dist/object/cloneDeep.d.ts +3 -2
  1819. package/dist/object/cloneDeep.js +50 -8
  1820. package/dist/object/cloneDeep.mjs +50 -4
  1821. package/dist/object/cloneDeepWith.d.mts +5 -2
  1822. package/dist/object/cloneDeepWith.d.ts +5 -2
  1823. package/dist/object/cloneDeepWith.js +173 -170
  1824. package/dist/object/cloneDeepWith.mjs +173 -166
  1825. package/dist/object/findKey.d.mts +3 -2
  1826. package/dist/object/findKey.d.ts +3 -2
  1827. package/dist/object/findKey.js +21 -7
  1828. package/dist/object/findKey.mjs +21 -3
  1829. package/dist/object/flattenObject.d.mts +11 -8
  1830. package/dist/object/flattenObject.d.ts +11 -8
  1831. package/dist/object/flattenObject.js +48 -26
  1832. package/dist/object/flattenObject.mjs +48 -22
  1833. package/dist/object/index.d.mts +19 -17
  1834. package/dist/object/index.d.ts +19 -17
  1835. package/dist/object/index.js +37 -41
  1836. package/dist/object/index.mjs +19 -17
  1837. package/dist/object/invert.d.mts +3 -2
  1838. package/dist/object/invert.d.ts +3 -2
  1839. package/dist/object/invert.js +28 -13
  1840. package/dist/object/invert.mjs +28 -9
  1841. package/dist/object/mapKeys.d.mts +3 -2
  1842. package/dist/object/mapKeys.d.ts +3 -2
  1843. package/dist/object/mapKeys.js +27 -13
  1844. package/dist/object/mapKeys.mjs +27 -9
  1845. package/dist/object/mapValues.d.mts +3 -2
  1846. package/dist/object/mapValues.d.ts +3 -2
  1847. package/dist/object/mapValues.js +28 -13
  1848. package/dist/object/mapValues.mjs +28 -9
  1849. package/dist/object/merge.d.mts +3 -2
  1850. package/dist/object/merge.d.ts +3 -2
  1851. package/dist/object/merge.js +57 -31
  1852. package/dist/object/merge.mjs +57 -27
  1853. package/dist/object/mergeWith.d.mts +3 -2
  1854. package/dist/object/mergeWith.d.ts +3 -2
  1855. package/dist/object/mergeWith.js +67 -41
  1856. package/dist/object/mergeWith.mjs +67 -37
  1857. package/dist/object/omit.d.mts +3 -2
  1858. package/dist/object/omit.d.ts +3 -2
  1859. package/dist/object/omit.js +25 -11
  1860. package/dist/object/omit.mjs +25 -7
  1861. package/dist/object/omitBy.d.mts +3 -2
  1862. package/dist/object/omitBy.d.ts +3 -2
  1863. package/dist/object/omitBy.js +29 -15
  1864. package/dist/object/omitBy.mjs +29 -11
  1865. package/dist/object/pick.d.mts +3 -2
  1866. package/dist/object/pick.d.ts +3 -2
  1867. package/dist/object/pick.js +25 -13
  1868. package/dist/object/pick.mjs +25 -9
  1869. package/dist/object/pickBy.d.mts +3 -2
  1870. package/dist/object/pickBy.d.ts +3 -2
  1871. package/dist/object/pickBy.js +29 -15
  1872. package/dist/object/pickBy.mjs +29 -11
  1873. package/dist/object/sortKeys.d.mts +22 -0
  1874. package/dist/object/sortKeys.d.ts +22 -0
  1875. package/dist/object/sortKeys.js +30 -0
  1876. package/dist/object/sortKeys.mjs +30 -0
  1877. package/dist/object/toCamelCaseKeys.d.mts +4 -5
  1878. package/dist/object/toCamelCaseKeys.d.ts +4 -5
  1879. package/dist/object/toCamelCaseKeys.js +63 -24
  1880. package/dist/object/toCamelCaseKeys.mjs +63 -20
  1881. package/dist/object/toMerged.d.mts +3 -2
  1882. package/dist/object/toMerged.d.ts +3 -2
  1883. package/dist/object/toMerged.js +53 -27
  1884. package/dist/object/toMerged.mjs +53 -23
  1885. package/dist/object/toSnakeCaseKeys.d.mts +4 -5
  1886. package/dist/object/toSnakeCaseKeys.d.ts +4 -5
  1887. package/dist/object/toSnakeCaseKeys.js +63 -24
  1888. package/dist/object/toSnakeCaseKeys.mjs +63 -20
  1889. package/dist/predicate/index.d.mts +33 -32
  1890. package/dist/predicate/index.d.ts +33 -32
  1891. package/dist/predicate/index.js +67 -73
  1892. package/dist/predicate/index.mjs +33 -32
  1893. package/dist/predicate/isArrayBuffer.d.mts +3 -2
  1894. package/dist/predicate/isArrayBuffer.d.ts +3 -2
  1895. package/dist/predicate/isArrayBuffer.js +20 -6
  1896. package/dist/predicate/isArrayBuffer.mjs +20 -2
  1897. package/dist/predicate/isBlob.d.mts +3 -2
  1898. package/dist/predicate/isBlob.d.ts +3 -2
  1899. package/dist/predicate/isBlob.js +20 -9
  1900. package/dist/predicate/isBlob.mjs +20 -5
  1901. package/dist/predicate/isBoolean.d.mts +3 -2
  1902. package/dist/predicate/isBoolean.d.ts +3 -2
  1903. package/dist/predicate/isBoolean.js +25 -6
  1904. package/dist/predicate/isBoolean.mjs +25 -2
  1905. package/dist/predicate/isBrowser.d.mts +3 -2
  1906. package/dist/predicate/isBrowser.d.ts +3 -2
  1907. package/dist/predicate/isBrowser.js +17 -6
  1908. package/dist/predicate/isBrowser.mjs +17 -2
  1909. package/dist/predicate/isBuffer.d.mts +3 -2
  1910. package/dist/predicate/isBuffer.d.ts +3 -2
  1911. package/dist/predicate/isBuffer.js +22 -8
  1912. package/dist/predicate/isBuffer.mjs +22 -4
  1913. package/dist/predicate/isDate.d.mts +3 -2
  1914. package/dist/predicate/isDate.d.ts +3 -2
  1915. package/dist/predicate/isDate.js +16 -6
  1916. package/dist/predicate/isDate.mjs +16 -2
  1917. package/dist/predicate/isEmptyObject.d.mts +3 -2
  1918. package/dist/predicate/isEmptyObject.d.ts +3 -2
  1919. package/dist/predicate/isEmptyObject.js +16 -8
  1920. package/dist/predicate/isEmptyObject.mjs +16 -4
  1921. package/dist/predicate/isEqual.d.mts +3 -2
  1922. package/dist/predicate/isEqual.d.ts +3 -2
  1923. package/dist/predicate/isEqual.js +19 -9
  1924. package/dist/predicate/isEqual.mjs +19 -5
  1925. package/dist/predicate/isEqualWith.d.mts +3 -2
  1926. package/dist/predicate/isEqualWith.d.ts +3 -2
  1927. package/dist/predicate/isEqualWith.js +146 -183
  1928. package/dist/predicate/isEqualWith.mjs +142 -179
  1929. package/dist/predicate/isError.d.mts +3 -2
  1930. package/dist/predicate/isError.d.ts +3 -2
  1931. package/dist/predicate/isError.js +16 -6
  1932. package/dist/predicate/isError.mjs +16 -2
  1933. package/dist/predicate/isFile.d.mts +3 -2
  1934. package/dist/predicate/isFile.d.ts +3 -2
  1935. package/dist/predicate/isFile.js +23 -11
  1936. package/dist/predicate/isFile.mjs +23 -7
  1937. package/dist/predicate/isFunction.d.mts +3 -2
  1938. package/dist/predicate/isFunction.d.ts +3 -2
  1939. package/dist/predicate/isFunction.js +16 -6
  1940. package/dist/predicate/isFunction.mjs +16 -2
  1941. package/dist/predicate/isJSON.d.mts +3 -2
  1942. package/dist/predicate/isJSON.d.ts +3 -2
  1943. package/dist/predicate/isJSON.js +37 -15
  1944. package/dist/predicate/isJSON.mjs +37 -11
  1945. package/dist/predicate/isJSONValue.d.mts +3 -2
  1946. package/dist/predicate/isJSONValue.d.ts +3 -2
  1947. package/dist/predicate/isJSONValue.js +76 -39
  1948. package/dist/predicate/isJSONValue.mjs +76 -35
  1949. package/dist/predicate/isLength.d.mts +3 -2
  1950. package/dist/predicate/isLength.d.ts +3 -2
  1951. package/dist/predicate/isLength.js +24 -6
  1952. package/dist/predicate/isLength.mjs +24 -2
  1953. package/dist/predicate/isMap.d.mts +3 -2
  1954. package/dist/predicate/isMap.d.ts +3 -2
  1955. package/dist/predicate/isMap.js +20 -6
  1956. package/dist/predicate/isMap.mjs +20 -2
  1957. package/dist/predicate/isNil.d.mts +3 -2
  1958. package/dist/predicate/isNil.d.ts +3 -2
  1959. package/dist/predicate/isNil.js +22 -6
  1960. package/dist/predicate/isNil.mjs +22 -2
  1961. package/dist/predicate/isNode.d.mts +3 -2
  1962. package/dist/predicate/isNode.d.ts +3 -2
  1963. package/dist/predicate/isNode.js +17 -6
  1964. package/dist/predicate/isNode.mjs +17 -2
  1965. package/dist/predicate/isNotNil.d.mts +3 -2
  1966. package/dist/predicate/isNotNil.d.ts +3 -2
  1967. package/dist/predicate/isNotNil.js +19 -6
  1968. package/dist/predicate/isNotNil.mjs +19 -2
  1969. package/dist/predicate/isNull.d.mts +3 -2
  1970. package/dist/predicate/isNull.d.ts +3 -2
  1971. package/dist/predicate/isNull.js +23 -6
  1972. package/dist/predicate/isNull.mjs +23 -2
  1973. package/dist/predicate/isNumber.d.mts +3 -2
  1974. package/dist/predicate/isNumber.d.ts +3 -2
  1975. package/dist/predicate/isNumber.js +25 -6
  1976. package/dist/predicate/isNumber.mjs +25 -2
  1977. package/dist/predicate/isPlainObject.d.mts +3 -2
  1978. package/dist/predicate/isPlainObject.d.ts +3 -2
  1979. package/dist/predicate/isPlainObject.js +48 -16
  1980. package/dist/predicate/isPlainObject.mjs +48 -12
  1981. package/dist/predicate/isPrimitive.d.mts +3 -2
  1982. package/dist/predicate/isPrimitive.d.ts +3 -2
  1983. package/dist/predicate/isPrimitive.js +31 -6
  1984. package/dist/predicate/isPrimitive.mjs +31 -2
  1985. package/dist/predicate/isPromise.d.mts +3 -2
  1986. package/dist/predicate/isPromise.d.ts +3 -2
  1987. package/dist/predicate/isPromise.js +20 -6
  1988. package/dist/predicate/isPromise.mjs +20 -2
  1989. package/dist/predicate/isRegExp.d.mts +3 -2
  1990. package/dist/predicate/isRegExp.d.ts +3 -2
  1991. package/dist/predicate/isRegExp.js +16 -6
  1992. package/dist/predicate/isRegExp.mjs +16 -2
  1993. package/dist/predicate/isSet.d.mts +3 -2
  1994. package/dist/predicate/isSet.d.ts +3 -2
  1995. package/dist/predicate/isSet.js +20 -6
  1996. package/dist/predicate/isSet.mjs +20 -2
  1997. package/dist/predicate/isString.d.mts +3 -2
  1998. package/dist/predicate/isString.d.ts +3 -2
  1999. package/dist/predicate/isString.js +20 -6
  2000. package/dist/predicate/isString.mjs +20 -2
  2001. package/dist/predicate/isSymbol.d.mts +3 -2
  2002. package/dist/predicate/isSymbol.d.ts +3 -2
  2003. package/dist/predicate/isSymbol.js +26 -6
  2004. package/dist/predicate/isSymbol.mjs +26 -2
  2005. package/dist/predicate/isTypedArray.d.mts +3 -2
  2006. package/dist/predicate/isTypedArray.d.ts +3 -2
  2007. package/dist/predicate/isTypedArray.js +29 -6
  2008. package/dist/predicate/isTypedArray.mjs +29 -2
  2009. package/dist/predicate/isUndefined.d.mts +3 -2
  2010. package/dist/predicate/isUndefined.d.ts +3 -2
  2011. package/dist/predicate/isUndefined.js +23 -6
  2012. package/dist/predicate/isUndefined.mjs +23 -2
  2013. package/dist/predicate/isWeakMap.d.mts +3 -2
  2014. package/dist/predicate/isWeakMap.d.ts +3 -2
  2015. package/dist/predicate/isWeakMap.js +23 -6
  2016. package/dist/predicate/isWeakMap.mjs +23 -2
  2017. package/dist/predicate/isWeakSet.d.mts +3 -2
  2018. package/dist/predicate/isWeakSet.d.ts +3 -2
  2019. package/dist/predicate/isWeakSet.js +23 -6
  2020. package/dist/predicate/isWeakSet.mjs +23 -2
  2021. package/dist/promise/allKeyed.d.mts +31 -0
  2022. package/dist/promise/allKeyed.d.ts +31 -0
  2023. package/dist/promise/allKeyed.js +37 -0
  2024. package/dist/promise/allKeyed.mjs +37 -0
  2025. package/dist/promise/delay.d.mts +7 -4
  2026. package/dist/promise/delay.d.ts +7 -4
  2027. package/dist/promise/delay.js +50 -24
  2028. package/dist/promise/delay.mjs +50 -20
  2029. package/dist/promise/index.d.mts +7 -5
  2030. package/dist/promise/index.d.ts +7 -5
  2031. package/dist/promise/index.js +13 -17
  2032. package/dist/promise/index.mjs +7 -5
  2033. package/dist/promise/mutex.d.mts +44 -43
  2034. package/dist/promise/mutex.d.ts +44 -43
  2035. package/dist/promise/mutex.js +71 -19
  2036. package/dist/promise/mutex.mjs +71 -15
  2037. package/dist/promise/semaphore.d.mts +55 -54
  2038. package/dist/promise/semaphore.d.ts +55 -54
  2039. package/dist/promise/semaphore.js +99 -33
  2040. package/dist/promise/semaphore.mjs +99 -29
  2041. package/dist/promise/timeout.d.mts +3 -2
  2042. package/dist/promise/timeout.d.ts +3 -2
  2043. package/dist/promise/timeout.js +20 -10
  2044. package/dist/promise/timeout.mjs +20 -6
  2045. package/dist/promise/withTimeout.d.mts +3 -2
  2046. package/dist/promise/withTimeout.d.ts +3 -2
  2047. package/dist/promise/withTimeout.js +29 -8
  2048. package/dist/promise/withTimeout.mjs +29 -4
  2049. package/dist/server/colors/_internal/parseHex.js +32 -0
  2050. package/dist/server/colors/_internal/parseHex.mjs +32 -0
  2051. package/dist/server/colors/_internal/wrapAnsi.js +21 -0
  2052. package/dist/server/colors/_internal/wrapAnsi.mjs +21 -0
  2053. package/dist/server/colors/_internal/wrapAnsiBg.js +30 -0
  2054. package/dist/server/colors/_internal/wrapAnsiBg.mjs +30 -0
  2055. package/dist/server/colors/ansi256.d.mts +18 -0
  2056. package/dist/server/colors/ansi256.d.ts +18 -0
  2057. package/dist/server/colors/ansi256.js +19 -0
  2058. package/dist/server/colors/ansi256.mjs +19 -0
  2059. package/dist/server/colors/bgAnsi256.d.mts +18 -0
  2060. package/dist/server/colors/bgAnsi256.d.ts +18 -0
  2061. package/dist/server/colors/bgAnsi256.js +19 -0
  2062. package/dist/server/colors/bgAnsi256.mjs +19 -0
  2063. package/dist/server/colors/bgBlack.d.mts +15 -0
  2064. package/dist/server/colors/bgBlack.d.ts +15 -0
  2065. package/dist/server/colors/bgBlack.js +18 -0
  2066. package/dist/server/colors/bgBlack.mjs +18 -0
  2067. package/dist/server/colors/bgBlackBright.d.mts +15 -0
  2068. package/dist/server/colors/bgBlackBright.d.ts +15 -0
  2069. package/dist/server/colors/bgBlackBright.js +18 -0
  2070. package/dist/server/colors/bgBlackBright.mjs +18 -0
  2071. package/dist/server/colors/bgBlue.d.mts +15 -0
  2072. package/dist/server/colors/bgBlue.d.ts +15 -0
  2073. package/dist/server/colors/bgBlue.js +18 -0
  2074. package/dist/server/colors/bgBlue.mjs +18 -0
  2075. package/dist/server/colors/bgBlueBright.d.mts +15 -0
  2076. package/dist/server/colors/bgBlueBright.d.ts +15 -0
  2077. package/dist/server/colors/bgBlueBright.js +18 -0
  2078. package/dist/server/colors/bgBlueBright.mjs +18 -0
  2079. package/dist/server/colors/bgCyan.d.mts +15 -0
  2080. package/dist/server/colors/bgCyan.d.ts +15 -0
  2081. package/dist/server/colors/bgCyan.js +18 -0
  2082. package/dist/server/colors/bgCyan.mjs +18 -0
  2083. package/dist/server/colors/bgCyanBright.d.mts +15 -0
  2084. package/dist/server/colors/bgCyanBright.d.ts +15 -0
  2085. package/dist/server/colors/bgCyanBright.js +18 -0
  2086. package/dist/server/colors/bgCyanBright.mjs +18 -0
  2087. package/dist/server/colors/bgGreen.d.mts +15 -0
  2088. package/dist/server/colors/bgGreen.d.ts +15 -0
  2089. package/dist/server/colors/bgGreen.js +18 -0
  2090. package/dist/server/colors/bgGreen.mjs +18 -0
  2091. package/dist/server/colors/bgGreenBright.d.mts +15 -0
  2092. package/dist/server/colors/bgGreenBright.d.ts +15 -0
  2093. package/dist/server/colors/bgGreenBright.js +18 -0
  2094. package/dist/server/colors/bgGreenBright.mjs +18 -0
  2095. package/dist/server/colors/bgHex.d.mts +18 -0
  2096. package/dist/server/colors/bgHex.d.ts +18 -0
  2097. package/dist/server/colors/bgHex.js +21 -0
  2098. package/dist/server/colors/bgHex.mjs +21 -0
  2099. package/dist/server/colors/bgMagenta.d.mts +15 -0
  2100. package/dist/server/colors/bgMagenta.d.ts +15 -0
  2101. package/dist/server/colors/bgMagenta.js +18 -0
  2102. package/dist/server/colors/bgMagenta.mjs +18 -0
  2103. package/dist/server/colors/bgMagentaBright.d.mts +15 -0
  2104. package/dist/server/colors/bgMagentaBright.d.ts +15 -0
  2105. package/dist/server/colors/bgMagentaBright.js +18 -0
  2106. package/dist/server/colors/bgMagentaBright.mjs +18 -0
  2107. package/dist/server/colors/bgRed.d.mts +15 -0
  2108. package/dist/server/colors/bgRed.d.ts +15 -0
  2109. package/dist/server/colors/bgRed.js +18 -0
  2110. package/dist/server/colors/bgRed.mjs +18 -0
  2111. package/dist/server/colors/bgRedBright.d.mts +15 -0
  2112. package/dist/server/colors/bgRedBright.d.ts +15 -0
  2113. package/dist/server/colors/bgRedBright.js +18 -0
  2114. package/dist/server/colors/bgRedBright.mjs +18 -0
  2115. package/dist/server/colors/bgRgb.d.mts +20 -0
  2116. package/dist/server/colors/bgRgb.d.ts +20 -0
  2117. package/dist/server/colors/bgRgb.js +21 -0
  2118. package/dist/server/colors/bgRgb.mjs +21 -0
  2119. package/dist/server/colors/bgWhite.d.mts +15 -0
  2120. package/dist/server/colors/bgWhite.d.ts +15 -0
  2121. package/dist/server/colors/bgWhite.js +18 -0
  2122. package/dist/server/colors/bgWhite.mjs +18 -0
  2123. package/dist/server/colors/bgWhiteBright.d.mts +15 -0
  2124. package/dist/server/colors/bgWhiteBright.d.ts +15 -0
  2125. package/dist/server/colors/bgWhiteBright.js +18 -0
  2126. package/dist/server/colors/bgWhiteBright.mjs +18 -0
  2127. package/dist/server/colors/bgYellow.d.mts +15 -0
  2128. package/dist/server/colors/bgYellow.d.ts +15 -0
  2129. package/dist/server/colors/bgYellow.js +18 -0
  2130. package/dist/server/colors/bgYellow.mjs +18 -0
  2131. package/dist/server/colors/bgYellowBright.d.mts +15 -0
  2132. package/dist/server/colors/bgYellowBright.d.ts +15 -0
  2133. package/dist/server/colors/bgYellowBright.js +18 -0
  2134. package/dist/server/colors/bgYellowBright.mjs +18 -0
  2135. package/dist/server/colors/black.d.mts +15 -0
  2136. package/dist/server/colors/black.d.ts +15 -0
  2137. package/dist/server/colors/black.js +18 -0
  2138. package/dist/server/colors/black.mjs +18 -0
  2139. package/dist/server/colors/blackBright.d.mts +15 -0
  2140. package/dist/server/colors/blackBright.d.ts +15 -0
  2141. package/dist/server/colors/blackBright.js +18 -0
  2142. package/dist/server/colors/blackBright.mjs +18 -0
  2143. package/dist/server/colors/blue.d.mts +15 -0
  2144. package/dist/server/colors/blue.d.ts +15 -0
  2145. package/dist/server/colors/blue.js +18 -0
  2146. package/dist/server/colors/blue.mjs +18 -0
  2147. package/dist/server/colors/blueBright.d.mts +15 -0
  2148. package/dist/server/colors/blueBright.d.ts +15 -0
  2149. package/dist/server/colors/blueBright.js +18 -0
  2150. package/dist/server/colors/blueBright.mjs +18 -0
  2151. package/dist/server/colors/bold.d.mts +15 -0
  2152. package/dist/server/colors/bold.d.ts +15 -0
  2153. package/dist/server/colors/bold.js +18 -0
  2154. package/dist/server/colors/bold.mjs +18 -0
  2155. package/dist/server/colors/cyan.d.mts +15 -0
  2156. package/dist/server/colors/cyan.d.ts +15 -0
  2157. package/dist/server/colors/cyan.js +18 -0
  2158. package/dist/server/colors/cyan.mjs +18 -0
  2159. package/dist/server/colors/cyanBright.d.mts +15 -0
  2160. package/dist/server/colors/cyanBright.d.ts +15 -0
  2161. package/dist/server/colors/cyanBright.js +18 -0
  2162. package/dist/server/colors/cyanBright.mjs +18 -0
  2163. package/dist/server/colors/dim.d.mts +15 -0
  2164. package/dist/server/colors/dim.d.ts +15 -0
  2165. package/dist/server/colors/dim.js +18 -0
  2166. package/dist/server/colors/dim.mjs +18 -0
  2167. package/dist/server/colors/gray.js +18 -0
  2168. package/dist/server/colors/gray.mjs +19 -0
  2169. package/dist/server/colors/green.d.mts +15 -0
  2170. package/dist/server/colors/green.d.ts +15 -0
  2171. package/dist/server/colors/green.js +18 -0
  2172. package/dist/server/colors/green.mjs +18 -0
  2173. package/dist/server/colors/greenBright.d.mts +15 -0
  2174. package/dist/server/colors/greenBright.d.ts +15 -0
  2175. package/dist/server/colors/greenBright.js +18 -0
  2176. package/dist/server/colors/greenBright.mjs +18 -0
  2177. package/dist/server/colors/hex.d.mts +18 -0
  2178. package/dist/server/colors/hex.d.ts +18 -0
  2179. package/dist/server/colors/hex.js +21 -0
  2180. package/dist/server/colors/hex.mjs +21 -0
  2181. package/dist/server/colors/hidden.d.mts +15 -0
  2182. package/dist/server/colors/hidden.d.ts +15 -0
  2183. package/dist/server/colors/hidden.js +18 -0
  2184. package/dist/server/colors/hidden.mjs +18 -0
  2185. package/dist/server/colors/index.d.mts +99 -0
  2186. package/dist/server/colors/index.d.ts +99 -0
  2187. package/dist/server/colors/index.js +99 -0
  2188. package/dist/server/colors/index.mjs +99 -0
  2189. package/dist/server/colors/inverse.d.mts +15 -0
  2190. package/dist/server/colors/inverse.d.ts +15 -0
  2191. package/dist/server/colors/inverse.js +18 -0
  2192. package/dist/server/colors/inverse.mjs +18 -0
  2193. package/dist/server/colors/italic.d.mts +15 -0
  2194. package/dist/server/colors/italic.d.ts +15 -0
  2195. package/dist/server/colors/italic.js +18 -0
  2196. package/dist/server/colors/italic.mjs +18 -0
  2197. package/dist/server/colors/magenta.d.mts +15 -0
  2198. package/dist/server/colors/magenta.d.ts +15 -0
  2199. package/dist/server/colors/magenta.js +18 -0
  2200. package/dist/server/colors/magenta.mjs +18 -0
  2201. package/dist/server/colors/magentaBright.d.mts +15 -0
  2202. package/dist/server/colors/magentaBright.d.ts +15 -0
  2203. package/dist/server/colors/magentaBright.js +18 -0
  2204. package/dist/server/colors/magentaBright.mjs +18 -0
  2205. package/dist/server/colors/red.d.mts +15 -0
  2206. package/dist/server/colors/red.d.ts +15 -0
  2207. package/dist/server/colors/red.js +18 -0
  2208. package/dist/server/colors/red.mjs +18 -0
  2209. package/dist/server/colors/redBright.d.mts +15 -0
  2210. package/dist/server/colors/redBright.d.ts +15 -0
  2211. package/dist/server/colors/redBright.js +18 -0
  2212. package/dist/server/colors/redBright.mjs +18 -0
  2213. package/dist/server/colors/reset.d.mts +15 -0
  2214. package/dist/server/colors/reset.d.ts +15 -0
  2215. package/dist/server/colors/reset.js +18 -0
  2216. package/dist/server/colors/reset.mjs +18 -0
  2217. package/dist/server/colors/rgb.d.mts +20 -0
  2218. package/dist/server/colors/rgb.d.ts +20 -0
  2219. package/dist/server/colors/rgb.js +21 -0
  2220. package/dist/server/colors/rgb.mjs +21 -0
  2221. package/dist/server/colors/strikethrough.d.mts +15 -0
  2222. package/dist/server/colors/strikethrough.d.ts +15 -0
  2223. package/dist/server/colors/strikethrough.js +18 -0
  2224. package/dist/server/colors/strikethrough.mjs +18 -0
  2225. package/dist/server/colors/types.d.mts +4 -0
  2226. package/dist/server/colors/types.d.ts +4 -0
  2227. package/dist/server/colors/underline.d.mts +15 -0
  2228. package/dist/server/colors/underline.d.ts +15 -0
  2229. package/dist/server/colors/underline.js +18 -0
  2230. package/dist/server/colors/underline.mjs +18 -0
  2231. package/dist/server/colors/white.d.mts +15 -0
  2232. package/dist/server/colors/white.d.ts +15 -0
  2233. package/dist/server/colors/white.js +18 -0
  2234. package/dist/server/colors/white.mjs +18 -0
  2235. package/dist/server/colors/whiteBright.d.mts +15 -0
  2236. package/dist/server/colors/whiteBright.d.ts +15 -0
  2237. package/dist/server/colors/whiteBright.js +18 -0
  2238. package/dist/server/colors/whiteBright.mjs +18 -0
  2239. package/dist/server/colors/yellow.d.mts +15 -0
  2240. package/dist/server/colors/yellow.d.ts +15 -0
  2241. package/dist/server/colors/yellow.js +18 -0
  2242. package/dist/server/colors/yellow.mjs +18 -0
  2243. package/dist/server/colors/yellowBright.d.mts +15 -0
  2244. package/dist/server/colors/yellowBright.d.ts +15 -0
  2245. package/dist/server/colors/yellowBright.js +18 -0
  2246. package/dist/server/colors/yellowBright.mjs +18 -0
  2247. package/dist/server/exec.d.mts +63 -0
  2248. package/dist/server/exec.d.ts +63 -0
  2249. package/dist/server/exec.js +103 -0
  2250. package/dist/server/exec.mjs +102 -0
  2251. package/dist/server/index.d.mts +4 -0
  2252. package/dist/server/index.d.ts +4 -0
  2253. package/dist/server/index.js +6 -0
  2254. package/dist/server/index.mjs +3 -0
  2255. package/dist/set/countBy.d.mts +3 -2
  2256. package/dist/set/countBy.d.ts +3 -2
  2257. package/dist/set/countBy.js +31 -11
  2258. package/dist/set/countBy.mjs +31 -7
  2259. package/dist/set/every.d.mts +3 -2
  2260. package/dist/set/every.d.ts +3 -2
  2261. package/dist/set/every.js +24 -11
  2262. package/dist/set/every.mjs +24 -7
  2263. package/dist/set/filter.d.mts +3 -2
  2264. package/dist/set/filter.d.ts +3 -2
  2265. package/dist/set/filter.js +22 -12
  2266. package/dist/set/filter.mjs +22 -8
  2267. package/dist/set/find.d.mts +3 -2
  2268. package/dist/set/find.d.ts +3 -2
  2269. package/dist/set/find.js +24 -11
  2270. package/dist/set/find.mjs +24 -7
  2271. package/dist/set/forEach.d.mts +3 -2
  2272. package/dist/set/forEach.d.ts +3 -2
  2273. package/dist/set/forEach.js +25 -8
  2274. package/dist/set/forEach.mjs +25 -4
  2275. package/dist/set/index.d.mts +10 -9
  2276. package/dist/set/index.d.ts +10 -9
  2277. package/dist/set/index.js +19 -25
  2278. package/dist/set/index.mjs +10 -9
  2279. package/dist/set/keyBy.d.mts +3 -2
  2280. package/dist/set/keyBy.d.ts +3 -2
  2281. package/dist/set/keyBy.js +35 -11
  2282. package/dist/set/keyBy.mjs +35 -7
  2283. package/dist/set/map.d.mts +3 -2
  2284. package/dist/set/map.d.ts +3 -2
  2285. package/dist/set/map.js +26 -11
  2286. package/dist/set/map.mjs +26 -7
  2287. package/dist/set/reduce.d.mts +3 -2
  2288. package/dist/set/reduce.d.ts +3 -2
  2289. package/dist/set/reduce.js +32 -18
  2290. package/dist/set/reduce.mjs +32 -14
  2291. package/dist/set/some.d.mts +3 -2
  2292. package/dist/set/some.d.ts +3 -2
  2293. package/dist/set/some.js +24 -11
  2294. package/dist/set/some.mjs +24 -7
  2295. package/dist/string/camelCase.d.mts +3 -2
  2296. package/dist/string/camelCase.d.ts +3 -2
  2297. package/dist/string/camelCase.js +24 -14
  2298. package/dist/string/camelCase.mjs +24 -10
  2299. package/dist/string/capitalize.d.mts +3 -2
  2300. package/dist/string/capitalize.d.ts +3 -2
  2301. package/dist/string/capitalize.js +14 -6
  2302. package/dist/string/capitalize.mjs +14 -2
  2303. package/dist/string/constantCase.d.mts +3 -2
  2304. package/dist/string/constantCase.d.ts +3 -2
  2305. package/dist/string/constantCase.js +18 -9
  2306. package/dist/string/constantCase.mjs +18 -5
  2307. package/dist/string/deburr.d.mts +3 -2
  2308. package/dist/string/deburr.d.ts +3 -2
  2309. package/dist/string/deburr.js +58 -44
  2310. package/dist/string/deburr.mjs +58 -40
  2311. package/dist/string/escape.d.mts +3 -2
  2312. package/dist/string/escape.d.ts +3 -2
  2313. package/dist/string/escape.js +21 -11
  2314. package/dist/string/escape.mjs +21 -7
  2315. package/dist/string/escapeRegExp.d.mts +3 -2
  2316. package/dist/string/escapeRegExp.d.ts +3 -2
  2317. package/dist/string/escapeRegExp.js +14 -6
  2318. package/dist/string/escapeRegExp.mjs +14 -2
  2319. package/dist/string/index.d.mts +22 -21
  2320. package/dist/string/index.d.ts +22 -21
  2321. package/dist/string/index.js +43 -49
  2322. package/dist/string/index.mjs +22 -21
  2323. package/dist/string/kebabCase.d.mts +3 -2
  2324. package/dist/string/kebabCase.d.ts +3 -2
  2325. package/dist/string/kebabCase.js +18 -9
  2326. package/dist/string/kebabCase.mjs +18 -5
  2327. package/dist/string/lowerCase.d.mts +3 -2
  2328. package/dist/string/lowerCase.d.ts +3 -2
  2329. package/dist/string/lowerCase.js +18 -9
  2330. package/dist/string/lowerCase.mjs +18 -5
  2331. package/dist/string/lowerFirst.d.mts +3 -2
  2332. package/dist/string/lowerFirst.d.ts +3 -2
  2333. package/dist/string/lowerFirst.js +14 -6
  2334. package/dist/string/lowerFirst.mjs +14 -2
  2335. package/dist/string/pad.d.mts +3 -2
  2336. package/dist/string/pad.d.ts +3 -2
  2337. package/dist/string/pad.js +20 -7
  2338. package/dist/string/pad.mjs +20 -3
  2339. package/dist/string/pascalCase.d.mts +3 -2
  2340. package/dist/string/pascalCase.d.ts +3 -2
  2341. package/dist/string/pascalCase.js +19 -10
  2342. package/dist/string/pascalCase.mjs +19 -6
  2343. package/dist/string/reverseString.d.mts +3 -2
  2344. package/dist/string/reverseString.d.ts +3 -2
  2345. package/dist/string/reverseString.js +16 -6
  2346. package/dist/string/reverseString.mjs +16 -2
  2347. package/dist/string/snakeCase.d.mts +3 -2
  2348. package/dist/string/snakeCase.d.ts +3 -2
  2349. package/dist/string/snakeCase.js +18 -9
  2350. package/dist/string/snakeCase.mjs +18 -5
  2351. package/dist/string/startCase.d.mts +3 -2
  2352. package/dist/string/startCase.d.ts +3 -2
  2353. package/dist/string/startCase.js +24 -17
  2354. package/dist/string/startCase.mjs +24 -13
  2355. package/dist/string/trim.d.mts +3 -2
  2356. package/dist/string/trim.d.ts +3 -2
  2357. package/dist/string/trim.js +18 -12
  2358. package/dist/string/trim.mjs +18 -8
  2359. package/dist/string/trimEnd.d.mts +3 -2
  2360. package/dist/string/trimEnd.d.ts +3 -2
  2361. package/dist/string/trimEnd.js +28 -26
  2362. package/dist/string/trimEnd.mjs +28 -22
  2363. package/dist/string/trimStart.d.mts +3 -2
  2364. package/dist/string/trimStart.d.ts +3 -2
  2365. package/dist/string/trimStart.js +27 -23
  2366. package/dist/string/trimStart.mjs +27 -19
  2367. package/dist/string/unescape.d.mts +3 -2
  2368. package/dist/string/unescape.d.ts +3 -2
  2369. package/dist/string/unescape.js +21 -11
  2370. package/dist/string/unescape.mjs +21 -7
  2371. package/dist/string/upperCase.d.mts +3 -2
  2372. package/dist/string/upperCase.d.ts +3 -2
  2373. package/dist/string/upperCase.js +24 -16
  2374. package/dist/string/upperCase.mjs +24 -12
  2375. package/dist/string/upperFirst.d.mts +3 -2
  2376. package/dist/string/upperFirst.d.ts +3 -2
  2377. package/dist/string/upperFirst.js +14 -6
  2378. package/dist/string/upperFirst.mjs +14 -2
  2379. package/dist/string/words.d.mts +21 -2
  2380. package/dist/string/words.d.ts +21 -2
  2381. package/dist/string/words.js +37 -7
  2382. package/dist/string/words.mjs +38 -3
  2383. package/dist/util/attempt.d.mts +3 -2
  2384. package/dist/util/attempt.d.ts +3 -2
  2385. package/dist/util/attempt.js +46 -11
  2386. package/dist/util/attempt.mjs +46 -7
  2387. package/dist/util/attemptAsync.d.mts +3 -2
  2388. package/dist/util/attemptAsync.d.ts +3 -2
  2389. package/dist/util/attemptAsync.js +39 -12
  2390. package/dist/util/attemptAsync.mjs +39 -8
  2391. package/dist/util/index.d.mts +4 -3
  2392. package/dist/util/index.d.ts +4 -3
  2393. package/dist/util/index.js +8 -14
  2394. package/dist/util/index.mjs +4 -3
  2395. package/dist/util/invariant.d.mts +3 -2
  2396. package/dist/util/invariant.d.ts +3 -2
  2397. package/dist/util/invariant.js +29 -12
  2398. package/dist/util/invariant.mjs +29 -8
  2399. package/package.json +27 -6
  2400. package/server.d.ts +1 -0
  2401. package/server.js +1 -0
  2402. package/dist/compat/_internal/Equals.d.d.mts +0 -3
  2403. package/dist/compat/_internal/Equals.d.d.ts +0 -3
  2404. package/dist/compat/_internal/IsWritable.d.d.mts +0 -5
  2405. package/dist/compat/_internal/IsWritable.d.d.ts +0 -5
  2406. package/dist/compat/_internal/MutableList.d.d.mts +0 -6
  2407. package/dist/compat/_internal/MutableList.d.d.ts +0 -6
  2408. package/dist/compat/_internal/RejectReadonly.d.d.mts +0 -6
  2409. package/dist/compat/_internal/RejectReadonly.d.d.ts +0 -6
@@ -1,291 +1,601 @@
1
- export { castArray } from './array/castArray.mjs';
2
- export { chunk } from './array/chunk.mjs';
3
- export { compact } from './array/compact.mjs';
4
- export { concat } from './array/concat.mjs';
5
- export { countBy } from './array/countBy.mjs';
6
- export { difference } from './array/difference.mjs';
7
- export { differenceBy } from './array/differenceBy.mjs';
8
- export { differenceWith } from './array/differenceWith.mjs';
9
- export { drop } from './array/drop.mjs';
10
- export { dropRight } from './array/dropRight.mjs';
11
- export { dropRightWhile } from './array/dropRightWhile.mjs';
12
- export { dropWhile } from './array/dropWhile.mjs';
13
- export { forEach as each, forEach } from './array/forEach.mjs';
14
- export { forEachRight as eachRight, forEachRight } from './array/forEachRight.mjs';
15
- export { every } from './array/every.mjs';
16
- export { fill } from './array/fill.mjs';
17
- export { filter } from './array/filter.mjs';
18
- export { find } from './array/find.mjs';
19
- export { findIndex } from './array/findIndex.mjs';
20
- export { findLast } from './array/findLast.mjs';
21
- export { findLastIndex } from './array/findLastIndex.mjs';
22
- export { head as first, head } from './array/head.mjs';
23
- export { flatMap } from './array/flatMap.mjs';
24
- export { flatMapDeep } from './array/flatMapDeep.mjs';
25
- export { flatMapDepth } from './array/flatMapDepth.mjs';
26
- export { flatten } from './array/flatten.mjs';
27
- export { flattenDeep } from './array/flattenDeep.mjs';
28
- export { flattenDepth } from './array/flattenDepth.mjs';
29
- export { groupBy } from './array/groupBy.mjs';
30
- export { includes } from './array/includes.mjs';
31
- export { indexOf } from './array/indexOf.mjs';
32
- export { initial } from './array/initial.mjs';
33
- export { intersection } from './array/intersection.mjs';
34
- export { intersectionBy } from './array/intersectionBy.mjs';
35
- export { intersectionWith } from './array/intersectionWith.mjs';
36
- export { invokeMap } from './array/invokeMap.mjs';
37
- export { join } from './array/join.mjs';
38
- export { keyBy } from './array/keyBy.mjs';
39
- export { last } from './array/last.mjs';
40
- export { lastIndexOf } from './array/lastIndexOf.mjs';
41
- export { map } from './array/map.mjs';
42
- export { nth } from './array/nth.mjs';
43
- export { orderBy } from './array/orderBy.mjs';
44
- export { partition } from './array/partition.mjs';
45
- export { pull } from './array/pull.mjs';
46
- export { pullAll } from './array/pullAll.mjs';
47
- export { pullAllBy } from './array/pullAllBy.mjs';
48
- export { pullAllWith } from './array/pullAllWith.mjs';
49
- export { pullAt } from './array/pullAt.mjs';
50
- export { reduce } from './array/reduce.mjs';
51
- export { reduceRight } from './array/reduceRight.mjs';
52
- export { reject } from './array/reject.mjs';
53
- export { remove } from './array/remove.mjs';
54
- export { reverse } from './array/reverse.mjs';
55
- export { sample } from './array/sample.mjs';
56
- export { sampleSize } from './array/sampleSize.mjs';
57
- export { shuffle } from './array/shuffle.mjs';
58
- export { size } from './array/size.mjs';
59
- export { slice } from './array/slice.mjs';
60
- export { some } from './array/some.mjs';
61
- export { sortBy } from './array/sortBy.mjs';
62
- export { sortedIndex } from './array/sortedIndex.mjs';
63
- export { sortedIndexBy } from './array/sortedIndexBy.mjs';
64
- export { sortedIndexOf } from './array/sortedIndexOf.mjs';
65
- export { sortedLastIndex } from './array/sortedLastIndex.mjs';
66
- export { sortedLastIndexBy } from './array/sortedLastIndexBy.mjs';
67
- export { sortedLastIndexOf } from './array/sortedLastIndexOf.mjs';
68
- export { tail } from './array/tail.mjs';
69
- export { take } from './array/take.mjs';
70
- export { takeRight } from './array/takeRight.mjs';
71
- export { takeRightWhile } from './array/takeRightWhile.mjs';
72
- export { takeWhile } from './array/takeWhile.mjs';
73
- export { union } from './array/union.mjs';
74
- export { unionBy } from './array/unionBy.mjs';
75
- export { unionWith } from './array/unionWith.mjs';
76
- export { uniq } from './array/uniq.mjs';
77
- export { uniqBy } from './array/uniqBy.mjs';
78
- export { uniqWith } from './array/uniqWith.mjs';
79
- export { unzip } from './array/unzip.mjs';
80
- export { unzipWith } from './array/unzipWith.mjs';
81
- export { without } from './array/without.mjs';
82
- export { xor } from './array/xor.mjs';
83
- export { xorBy } from './array/xorBy.mjs';
84
- export { xorWith } from './array/xorWith.mjs';
85
- export { zip } from './array/zip.mjs';
86
- export { zipObject } from './array/zipObject.mjs';
87
- export { zipObjectDeep } from './array/zipObjectDeep.mjs';
88
- export { zipWith } from './array/zipWith.mjs';
89
- export { after } from './function/after.mjs';
90
- export { ary } from './function/ary.mjs';
91
- export { attempt } from './function/attempt.mjs';
92
- export { before } from './function/before.mjs';
93
- export { bind } from './function/bind.mjs';
94
- export { bindKey } from './function/bindKey.mjs';
95
- export { curry } from './function/curry.mjs';
96
- export { curryRight } from './function/curryRight.mjs';
97
- export { debounce } from './function/debounce.mjs';
98
- export { defer } from './function/defer.mjs';
99
- export { delay } from './function/delay.mjs';
100
- export { flip } from './function/flip.mjs';
101
- export { flow } from './function/flow.mjs';
102
- export { flowRight } from './function/flowRight.mjs';
103
- export { memoize } from './function/memoize.mjs';
104
- export { negate } from './function/negate.mjs';
105
- export { nthArg } from './function/nthArg.mjs';
106
- export { once } from './function/once.mjs';
107
- export { overArgs } from './function/overArgs.mjs';
108
- export { partial } from './function/partial.mjs';
109
- export { partialRight } from './function/partialRight.mjs';
110
- export { rearg } from './function/rearg.mjs';
111
- export { rest } from './function/rest.mjs';
112
- export { spread } from './function/spread.mjs';
113
- export { throttle } from './function/throttle.mjs';
114
- export { unary } from './function/unary.mjs';
115
- export { wrap } from './function/wrap.mjs';
116
- export { add } from './math/add.mjs';
117
- export { ceil } from './math/ceil.mjs';
118
- export { clamp } from './math/clamp.mjs';
119
- export { divide } from './math/divide.mjs';
120
- export { floor } from './math/floor.mjs';
121
- export { inRange } from './math/inRange.mjs';
122
- export { max } from './math/max.mjs';
123
- export { maxBy } from './math/maxBy.mjs';
124
- export { mean } from './math/mean.mjs';
125
- export { meanBy } from './math/meanBy.mjs';
126
- export { min } from './math/min.mjs';
127
- export { minBy } from './math/minBy.mjs';
128
- export { multiply } from './math/multiply.mjs';
129
- export { parseInt } from './math/parseInt.mjs';
130
- export { random } from './math/random.mjs';
131
- export { range } from './math/range.mjs';
132
- export { rangeRight } from './math/rangeRight.mjs';
133
- export { round } from './math/round.mjs';
134
- export { subtract } from './math/subtract.mjs';
135
- export { sum } from './math/sum.mjs';
136
- export { sumBy } from './math/sumBy.mjs';
137
- export { isEqual } from '../predicate/isEqual.mjs';
138
- export { identity } from './function/identity.mjs';
139
- export { noop } from './function/noop.mjs';
140
- export { assign } from './object/assign.mjs';
141
- export { assignIn, assignIn as extend } from './object/assignIn.mjs';
142
- export { assignInWith, assignInWith as extendWith } from './object/assignInWith.mjs';
143
- export { assignWith } from './object/assignWith.mjs';
144
- export { at } from './object/at.mjs';
145
- export { clone } from './object/clone.mjs';
146
- export { cloneDeep } from './object/cloneDeep.mjs';
147
- export { cloneDeepWith } from './object/cloneDeepWith.mjs';
148
- export { cloneWith } from './object/cloneWith.mjs';
149
- export { create } from './object/create.mjs';
150
- export { defaults } from './object/defaults.mjs';
151
- export { defaultsDeep } from './object/defaultsDeep.mjs';
152
- export { findKey } from './object/findKey.mjs';
153
- export { findLastKey } from './object/findLastKey.mjs';
154
- export { forIn } from './object/forIn.mjs';
155
- export { forInRight } from './object/forInRight.mjs';
156
- export { forOwn } from './object/forOwn.mjs';
157
- export { forOwnRight } from './object/forOwnRight.mjs';
158
- export { fromPairs } from './object/fromPairs.mjs';
159
- export { functions } from './object/functions.mjs';
160
- export { functionsIn } from './object/functionsIn.mjs';
161
- export { get } from './object/get.mjs';
162
- export { has } from './object/has.mjs';
163
- export { hasIn } from './object/hasIn.mjs';
164
- export { invert } from './object/invert.mjs';
165
- export { invertBy } from './object/invertBy.mjs';
166
- export { keys } from './object/keys.mjs';
167
- export { keysIn } from './object/keysIn.mjs';
168
- export { mapKeys } from './object/mapKeys.mjs';
169
- export { mapValues } from './object/mapValues.mjs';
170
- export { merge } from './object/merge.mjs';
171
- export { mergeWith } from './object/mergeWith.mjs';
172
- export { omit } from './object/omit.mjs';
173
- export { omitBy } from './object/omitBy.mjs';
174
- export { pick } from './object/pick.mjs';
175
- export { pickBy } from './object/pickBy.mjs';
176
- export { property } from './object/property.mjs';
177
- export { propertyOf } from './object/propertyOf.mjs';
178
- export { result } from './object/result.mjs';
179
- export { set } from './object/set.mjs';
180
- export { setWith } from './object/setWith.mjs';
181
- export { toDefaulted } from './object/toDefaulted.mjs';
182
- export { toPairs } from './object/toPairs.mjs';
183
- export { toPairsIn } from './object/toPairsIn.mjs';
184
- export { transform } from './object/transform.mjs';
185
- export { unset } from './object/unset.mjs';
186
- export { update } from './object/update.mjs';
187
- export { updateWith } from './object/updateWith.mjs';
188
- export { values } from './object/values.mjs';
189
- export { valuesIn } from './object/valuesIn.mjs';
190
- export { isFunction } from './predicate/isFunction.mjs';
191
- export { isLength } from './predicate/isLength.mjs';
192
- export { isMatchWith } from './predicate/isMatchWith.mjs';
193
- export { isNative } from './predicate/isNative.mjs';
194
- export { isNull } from './predicate/isNull.mjs';
195
- export { isUndefined } from './predicate/isUndefined.mjs';
196
- export { conforms } from './predicate/conforms.mjs';
197
- export { conformsTo } from './predicate/conformsTo.mjs';
198
- export { isArguments } from './predicate/isArguments.mjs';
199
- export { isArray } from './predicate/isArray.mjs';
200
- export { isArrayBuffer } from './predicate/isArrayBuffer.mjs';
201
- export { isArrayLike } from './predicate/isArrayLike.mjs';
202
- export { isArrayLikeObject } from './predicate/isArrayLikeObject.mjs';
203
- export { isBoolean } from './predicate/isBoolean.mjs';
204
- export { isBuffer } from './predicate/isBuffer.mjs';
205
- export { isDate } from './predicate/isDate.mjs';
206
- export { isElement } from './predicate/isElement.mjs';
207
- export { isEmpty } from './predicate/isEmpty.mjs';
208
- export { isEqualWith } from './predicate/isEqualWith.mjs';
209
- export { isError } from './predicate/isError.mjs';
210
- export { isFinite } from './predicate/isFinite.mjs';
211
- export { isInteger } from './predicate/isInteger.mjs';
212
- export { isMap } from './predicate/isMap.mjs';
213
- export { isMatch } from './predicate/isMatch.mjs';
214
- export { isNaN } from './predicate/isNaN.mjs';
215
- export { isNil } from './predicate/isNil.mjs';
216
- export { isNumber } from './predicate/isNumber.mjs';
217
- export { isObject } from './predicate/isObject.mjs';
218
- export { isObjectLike } from './predicate/isObjectLike.mjs';
219
- export { isPlainObject } from './predicate/isPlainObject.mjs';
220
- export { isRegExp } from './predicate/isRegExp.mjs';
221
- export { isSafeInteger } from './predicate/isSafeInteger.mjs';
222
- export { isSet } from './predicate/isSet.mjs';
223
- export { isString } from './predicate/isString.mjs';
224
- export { isSymbol } from './predicate/isSymbol.mjs';
225
- export { isTypedArray } from './predicate/isTypedArray.mjs';
226
- export { isWeakMap } from './predicate/isWeakMap.mjs';
227
- export { isWeakSet } from './predicate/isWeakSet.mjs';
228
- export { matches } from './predicate/matches.mjs';
229
- export { matchesProperty } from './predicate/matchesProperty.mjs';
230
- export { capitalize } from './string/capitalize.mjs';
231
- export { bindAll } from './util/bindAll.mjs';
232
- export { camelCase } from './string/camelCase.mjs';
233
- export { deburr } from './string/deburr.mjs';
234
- export { endsWith } from './string/endsWith.mjs';
235
- export { escape } from './string/escape.mjs';
236
- export { escapeRegExp } from './string/escapeRegExp.mjs';
237
- export { kebabCase } from './string/kebabCase.mjs';
238
- export { lowerCase } from './string/lowerCase.mjs';
239
- export { lowerFirst } from './string/lowerFirst.mjs';
240
- export { pad } from './string/pad.mjs';
241
- export { padEnd } from './string/padEnd.mjs';
242
- export { padStart } from './string/padStart.mjs';
243
- export { repeat } from './string/repeat.mjs';
244
- export { replace } from './string/replace.mjs';
245
- export { snakeCase } from './string/snakeCase.mjs';
246
- export { split } from './string/split.mjs';
247
- export { startCase } from './string/startCase.mjs';
248
- export { startsWith } from './string/startsWith.mjs';
249
- export { template, templateSettings } from './string/template.mjs';
250
- export { toLower } from './string/toLower.mjs';
251
- export { toUpper } from './string/toUpper.mjs';
252
- export { trim } from './string/trim.mjs';
253
- export { trimEnd } from './string/trimEnd.mjs';
254
- export { trimStart } from './string/trimStart.mjs';
255
- export { truncate } from './string/truncate.mjs';
256
- export { unescape } from './string/unescape.mjs';
257
- export { upperCase } from './string/upperCase.mjs';
258
- export { upperFirst } from './string/upperFirst.mjs';
259
- export { words } from './string/words.mjs';
260
- export { cond } from './util/cond.mjs';
261
- export { constant } from './util/constant.mjs';
262
- export { defaultTo } from './util/defaultTo.mjs';
263
- export { isEqualsSameValueZero as eq } from '../_internal/isEqualsSameValueZero.mjs';
264
- export { gt } from './util/gt.mjs';
265
- export { gte } from './util/gte.mjs';
266
- export { invoke } from './util/invoke.mjs';
267
- export { iteratee } from './util/iteratee.mjs';
268
- export { lt } from './util/lt.mjs';
269
- export { lte } from './util/lte.mjs';
270
- export { method } from './util/method.mjs';
271
- export { methodOf } from './util/methodOf.mjs';
272
- export { now } from './util/now.mjs';
273
- export { over } from './util/over.mjs';
274
- export { overEvery } from './util/overEvery.mjs';
275
- export { overSome } from './util/overSome.mjs';
276
- export { stubArray } from './util/stubArray.mjs';
277
- export { stubFalse } from './util/stubFalse.mjs';
278
- export { stubObject } from './util/stubObject.mjs';
279
- export { stubString } from './util/stubString.mjs';
280
- export { stubTrue } from './util/stubTrue.mjs';
281
- export { times } from './util/times.mjs';
282
- export { toArray } from './util/toArray.mjs';
283
- export { toFinite } from './util/toFinite.mjs';
284
- export { toInteger } from './util/toInteger.mjs';
285
- export { toLength } from './util/toLength.mjs';
286
- export { toNumber } from './util/toNumber.mjs';
287
- export { toPath } from './util/toPath.mjs';
288
- export { toPlainObject } from './util/toPlainObject.mjs';
289
- export { toSafeInteger } from './util/toSafeInteger.mjs';
290
- export { toString } from './util/toString.mjs';
291
- export { uniqueId } from './util/uniqueId.mjs';
1
+ import { __exportAll } from "../_virtual/_rolldown/runtime.mjs";
2
+ import { isSymbol } from "./predicate/isSymbol.mjs";
3
+ import { toNumber } from "./util/toNumber.mjs";
4
+ import { toFinite } from "./util/toFinite.mjs";
5
+ import { toInteger } from "./util/toInteger.mjs";
6
+ import { isArray } from "./predicate/isArray.mjs";
7
+ import { isPlainObject } from "./predicate/isPlainObject.mjs";
8
+ import { isEqualsSameValueZero } from "../_internal/isEqualsSameValueZero.mjs";
9
+ import "./util/eq.mjs";
10
+ import { isEqual } from "../predicate/isEqual.mjs";
11
+ import { castArray } from "./array/castArray.mjs";
12
+ import { isArrayLike } from "./predicate/isArrayLike.mjs";
13
+ import { chunk } from "./array/chunk.mjs";
14
+ import { compact } from "./array/compact.mjs";
15
+ import { concat } from "./array/concat.mjs";
16
+ import { toString } from "./util/toString.mjs";
17
+ import { toPath } from "./util/toPath.mjs";
18
+ import { get } from "./object/get.mjs";
19
+ import { property } from "./object/property.mjs";
20
+ import { isObject } from "./predicate/isObject.mjs";
21
+ import { isMatchWith } from "./predicate/isMatchWith.mjs";
22
+ import { isMatch } from "./predicate/isMatch.mjs";
23
+ import { matches } from "./predicate/matches.mjs";
24
+ import { cloneDeepWith } from "./object/cloneDeepWith.mjs";
25
+ import { cloneDeep } from "./object/cloneDeep.mjs";
26
+ import { isArguments } from "./predicate/isArguments.mjs";
27
+ import { has } from "./object/has.mjs";
28
+ import { matchesProperty } from "./predicate/matchesProperty.mjs";
29
+ import { iteratee } from "./util/iteratee.mjs";
30
+ import { countBy } from "./array/countBy.mjs";
31
+ import { isObjectLike } from "./predicate/isObjectLike.mjs";
32
+ import { isArrayLikeObject } from "./predicate/isArrayLikeObject.mjs";
33
+ import { difference } from "./array/difference.mjs";
34
+ import { last } from "./array/last.mjs";
35
+ import { differenceBy } from "./array/differenceBy.mjs";
36
+ import { differenceWith } from "./array/differenceWith.mjs";
37
+ import { drop } from "./array/drop.mjs";
38
+ import { dropRight } from "./array/dropRight.mjs";
39
+ import { dropRightWhile } from "./array/dropRightWhile.mjs";
40
+ import { dropWhile } from "./array/dropWhile.mjs";
41
+ import { forEach } from "./array/forEach.mjs";
42
+ import "./array/each.mjs";
43
+ import { forEachRight } from "./array/forEachRight.mjs";
44
+ import "./array/eachRight.mjs";
45
+ import { every } from "./array/every.mjs";
46
+ import { isString } from "./predicate/isString.mjs";
47
+ import { fill } from "./array/fill.mjs";
48
+ import { filter } from "./array/filter.mjs";
49
+ import { find } from "./array/find.mjs";
50
+ import { identity } from "./function/identity.mjs";
51
+ import { findIndex } from "./array/findIndex.mjs";
52
+ import { findLast } from "./array/findLast.mjs";
53
+ import { findLastIndex } from "./array/findLastIndex.mjs";
54
+ import { head } from "./array/head.mjs";
55
+ import "./array/first.mjs";
56
+ import { flatten } from "./array/flatten.mjs";
57
+ import { flattenDepth } from "./array/flattenDepth.mjs";
58
+ import { map } from "./array/map.mjs";
59
+ import { flatMap } from "./array/flatMap.mjs";
60
+ import { flatMapDepth } from "./array/flatMapDepth.mjs";
61
+ import { flatMapDeep } from "./array/flatMapDeep.mjs";
62
+ import { flattenDeep } from "./array/flattenDeep.mjs";
63
+ import { groupBy } from "./array/groupBy.mjs";
64
+ import { includes } from "./array/includes.mjs";
65
+ import { indexOf } from "./array/indexOf.mjs";
66
+ import { initial } from "./array/initial.mjs";
67
+ import { intersection } from "./array/intersection.mjs";
68
+ import { intersectionBy } from "./array/intersectionBy.mjs";
69
+ import { uniq } from "./array/uniq.mjs";
70
+ import { intersectionWith } from "./array/intersectionWith.mjs";
71
+ import { invokeMap } from "./array/invokeMap.mjs";
72
+ import { join } from "./array/join.mjs";
73
+ import { reduce } from "./array/reduce.mjs";
74
+ import { keyBy } from "./array/keyBy.mjs";
75
+ import { lastIndexOf } from "./array/lastIndexOf.mjs";
76
+ import { nth } from "./array/nth.mjs";
77
+ import { orderBy } from "./array/orderBy.mjs";
78
+ import { partition } from "./array/partition.mjs";
79
+ import { pull } from "./array/pull.mjs";
80
+ import { pullAll } from "./array/pullAll.mjs";
81
+ import { pullAllBy } from "./array/pullAllBy.mjs";
82
+ import { pullAllWith } from "./array/pullAllWith.mjs";
83
+ import { at } from "./object/at.mjs";
84
+ import { unset } from "./object/unset.mjs";
85
+ import { pullAt } from "./array/pullAt.mjs";
86
+ import { reduceRight } from "./array/reduceRight.mjs";
87
+ import { negate } from "./function/negate.mjs";
88
+ import { reject } from "./array/reject.mjs";
89
+ import { remove } from "./array/remove.mjs";
90
+ import { reverse } from "./array/reverse.mjs";
91
+ import { sample } from "./array/sample.mjs";
92
+ import { clamp } from "./math/clamp.mjs";
93
+ import { isMap } from "./predicate/isMap.mjs";
94
+ import { toArray } from "./util/toArray.mjs";
95
+ import { sampleSize } from "./array/sampleSize.mjs";
96
+ import { values } from "./object/values.mjs";
97
+ import { isNil } from "./predicate/isNil.mjs";
98
+ import { shuffle } from "./array/shuffle.mjs";
99
+ import { size } from "./array/size.mjs";
100
+ import { slice } from "./array/slice.mjs";
101
+ import { some } from "./array/some.mjs";
102
+ import { sortBy } from "./array/sortBy.mjs";
103
+ import { isNaN } from "./predicate/isNaN.mjs";
104
+ import { sortedIndexBy } from "./array/sortedIndexBy.mjs";
105
+ import { isNumber } from "./predicate/isNumber.mjs";
106
+ import { sortedIndex } from "./array/sortedIndex.mjs";
107
+ import { sortedIndexOf } from "./array/sortedIndexOf.mjs";
108
+ import { sortedLastIndexBy } from "./array/sortedLastIndexBy.mjs";
109
+ import { sortedLastIndex } from "./array/sortedLastIndex.mjs";
110
+ import { sortedLastIndexOf } from "./array/sortedLastIndexOf.mjs";
111
+ import { tail } from "./array/tail.mjs";
112
+ import { take } from "./array/take.mjs";
113
+ import { takeRight } from "./array/takeRight.mjs";
114
+ import { takeRightWhile } from "./array/takeRightWhile.mjs";
115
+ import { takeWhile } from "./array/takeWhile.mjs";
116
+ import { union } from "./array/union.mjs";
117
+ import { unionBy } from "./array/unionBy.mjs";
118
+ import { unionWith } from "./array/unionWith.mjs";
119
+ import { uniqBy } from "./array/uniqBy.mjs";
120
+ import { uniqWith } from "./array/uniqWith.mjs";
121
+ import { unzip } from "./array/unzip.mjs";
122
+ import { unzipWith } from "./array/unzipWith.mjs";
123
+ import { without } from "./array/without.mjs";
124
+ import { xor } from "./array/xor.mjs";
125
+ import { xorBy } from "./array/xorBy.mjs";
126
+ import { xorWith } from "./array/xorWith.mjs";
127
+ import { zip } from "./array/zip.mjs";
128
+ import { zipObject } from "./array/zipObject.mjs";
129
+ import { updateWith } from "./object/updateWith.mjs";
130
+ import { set } from "./object/set.mjs";
131
+ import { zipObjectDeep } from "./array/zipObjectDeep.mjs";
132
+ import { zipWith } from "./array/zipWith.mjs";
133
+ import { after } from "./function/after.mjs";
134
+ import { ary } from "./function/ary.mjs";
135
+ import { attempt } from "./function/attempt.mjs";
136
+ import { before } from "./function/before.mjs";
137
+ import { bind } from "./function/bind.mjs";
138
+ import { bindKey } from "./function/bindKey.mjs";
139
+ import { curry } from "./function/curry.mjs";
140
+ import { curryRight } from "./function/curryRight.mjs";
141
+ import { debounce } from "./function/debounce.mjs";
142
+ import { defer } from "./function/defer.mjs";
143
+ import { delay } from "./function/delay.mjs";
144
+ import { flip } from "./function/flip.mjs";
145
+ import { flow } from "./function/flow.mjs";
146
+ import { flowRight } from "./function/flowRight.mjs";
147
+ import { memoize } from "./function/memoize.mjs";
148
+ import { nthArg } from "./function/nthArg.mjs";
149
+ import { once } from "./function/once.mjs";
150
+ import { overArgs } from "./function/overArgs.mjs";
151
+ import { partial } from "./function/partial.mjs";
152
+ import { partialRight } from "./function/partialRight.mjs";
153
+ import { rearg } from "./function/rearg.mjs";
154
+ import { rest } from "./function/rest.mjs";
155
+ import { spread } from "./function/spread.mjs";
156
+ import { throttle } from "./function/throttle.mjs";
157
+ import { unary } from "./function/unary.mjs";
158
+ import { wrap } from "./function/wrap.mjs";
159
+ import { add } from "./math/add.mjs";
160
+ import { ceil } from "./math/ceil.mjs";
161
+ import { divide } from "./math/divide.mjs";
162
+ import { floor } from "./math/floor.mjs";
163
+ import { inRange } from "./math/inRange.mjs";
164
+ import { max } from "./math/max.mjs";
165
+ import { maxBy } from "./math/maxBy.mjs";
166
+ import { sumBy } from "./math/sumBy.mjs";
167
+ import { sum } from "./math/sum.mjs";
168
+ import { mean } from "./math/mean.mjs";
169
+ import { meanBy } from "./math/meanBy.mjs";
170
+ import { min } from "./math/min.mjs";
171
+ import { minBy } from "./math/minBy.mjs";
172
+ import { multiply } from "./math/multiply.mjs";
173
+ import { parseInt } from "./math/parseInt.mjs";
174
+ import { random } from "./math/random.mjs";
175
+ import { range } from "./math/range.mjs";
176
+ import { rangeRight } from "./math/rangeRight.mjs";
177
+ import { round } from "./math/round.mjs";
178
+ import { subtract } from "./math/subtract.mjs";
179
+ import { noop } from "./function/noop.mjs";
180
+ import { isTypedArray } from "./predicate/isTypedArray.mjs";
181
+ import { times } from "./util/times.mjs";
182
+ import { keys } from "./object/keys.mjs";
183
+ import { assign } from "./object/assign.mjs";
184
+ import { keysIn } from "./object/keysIn.mjs";
185
+ import { assignIn } from "./object/assignIn.mjs";
186
+ import { assignInWith } from "./object/assignInWith.mjs";
187
+ import { assignWith } from "./object/assignWith.mjs";
188
+ import { clone } from "./object/clone.mjs";
189
+ import { cloneWith } from "./object/cloneWith.mjs";
190
+ import { create } from "./object/create.mjs";
191
+ import { defaults } from "./object/defaults.mjs";
192
+ import { defaultsDeep } from "./object/defaultsDeep.mjs";
193
+ import "./object/extend.mjs";
194
+ import "./object/extendWith.mjs";
195
+ import { findKey } from "./object/findKey.mjs";
196
+ import { findLastKey } from "./object/findLastKey.mjs";
197
+ import { forIn } from "./object/forIn.mjs";
198
+ import { forInRight } from "./object/forInRight.mjs";
199
+ import { forOwn } from "./object/forOwn.mjs";
200
+ import { forOwnRight } from "./object/forOwnRight.mjs";
201
+ import { fromPairs } from "./object/fromPairs.mjs";
202
+ import { functions } from "./object/functions.mjs";
203
+ import { functionsIn } from "./object/functionsIn.mjs";
204
+ import { hasIn } from "./object/hasIn.mjs";
205
+ import { invert } from "./object/invert.mjs";
206
+ import { invertBy } from "./object/invertBy.mjs";
207
+ import { mapKeys } from "./object/mapKeys.mjs";
208
+ import { mapValues } from "./object/mapValues.mjs";
209
+ import { mergeWith } from "./object/mergeWith.mjs";
210
+ import { merge } from "./object/merge.mjs";
211
+ import { omit } from "./object/omit.mjs";
212
+ import { omitBy } from "./object/omitBy.mjs";
213
+ import { pick } from "./object/pick.mjs";
214
+ import { pickBy } from "./object/pickBy.mjs";
215
+ import { propertyOf } from "./object/propertyOf.mjs";
216
+ import { result } from "./object/result.mjs";
217
+ import { setWith } from "./object/setWith.mjs";
218
+ import { toDefaulted } from "./object/toDefaulted.mjs";
219
+ import { toPairs } from "./object/toPairs.mjs";
220
+ import { toPairsIn } from "./object/toPairsIn.mjs";
221
+ import { isBuffer } from "./predicate/isBuffer.mjs";
222
+ import { transform } from "./object/transform.mjs";
223
+ import { update } from "./object/update.mjs";
224
+ import { valuesIn } from "./object/valuesIn.mjs";
225
+ import { isFunction } from "./predicate/isFunction.mjs";
226
+ import { isLength } from "./predicate/isLength.mjs";
227
+ import { isNative } from "./predicate/isNative.mjs";
228
+ import { isNull } from "./predicate/isNull.mjs";
229
+ import { isUndefined } from "./predicate/isUndefined.mjs";
230
+ import { conformsTo } from "./predicate/conformsTo.mjs";
231
+ import { conforms } from "./predicate/conforms.mjs";
232
+ import { isArrayBuffer } from "./predicate/isArrayBuffer.mjs";
233
+ import { isBoolean } from "./predicate/isBoolean.mjs";
234
+ import { isDate } from "./predicate/isDate.mjs";
235
+ import { isElement } from "./predicate/isElement.mjs";
236
+ import { isEmpty } from "./predicate/isEmpty.mjs";
237
+ import { isEqualWith } from "./predicate/isEqualWith.mjs";
238
+ import { isError } from "./predicate/isError.mjs";
239
+ import { isFinite } from "./predicate/isFinite.mjs";
240
+ import { isInteger } from "./predicate/isInteger.mjs";
241
+ import { isRegExp } from "./predicate/isRegExp.mjs";
242
+ import { isSafeInteger } from "./predicate/isSafeInteger.mjs";
243
+ import { isSet } from "./predicate/isSet.mjs";
244
+ import { isWeakMap } from "./predicate/isWeakMap.mjs";
245
+ import { isWeakSet } from "./predicate/isWeakSet.mjs";
246
+ import { capitalize } from "./string/capitalize.mjs";
247
+ import { bindAll } from "./util/bindAll.mjs";
248
+ import { deburr } from "./string/deburr.mjs";
249
+ import { camelCase } from "./string/camelCase.mjs";
250
+ import { endsWith } from "./string/endsWith.mjs";
251
+ import { escape } from "./string/escape.mjs";
252
+ import { escapeRegExp } from "./string/escapeRegExp.mjs";
253
+ import { kebabCase } from "./string/kebabCase.mjs";
254
+ import { lowerCase } from "./string/lowerCase.mjs";
255
+ import { lowerFirst } from "./string/lowerFirst.mjs";
256
+ import { pad } from "./string/pad.mjs";
257
+ import { padEnd } from "./string/padEnd.mjs";
258
+ import { padStart } from "./string/padStart.mjs";
259
+ import { repeat } from "./string/repeat.mjs";
260
+ import { replace } from "./string/replace.mjs";
261
+ import { snakeCase } from "./string/snakeCase.mjs";
262
+ import { split } from "./string/split.mjs";
263
+ import { startCase } from "./string/startCase.mjs";
264
+ import { startsWith } from "./string/startsWith.mjs";
265
+ import { template, templateSettings } from "./string/template.mjs";
266
+ import "./string/templateSettings.mjs";
267
+ import { toLower } from "./string/toLower.mjs";
268
+ import { toUpper } from "./string/toUpper.mjs";
269
+ import { trim } from "./string/trim.mjs";
270
+ import { trimEnd } from "./string/trimEnd.mjs";
271
+ import { trimStart } from "./string/trimStart.mjs";
272
+ import { truncate } from "./string/truncate.mjs";
273
+ import { unescape } from "./string/unescape.mjs";
274
+ import { upperCase } from "./string/upperCase.mjs";
275
+ import { upperFirst } from "./string/upperFirst.mjs";
276
+ import { words } from "./string/words.mjs";
277
+ import { cond } from "./util/cond.mjs";
278
+ import { constant } from "./util/constant.mjs";
279
+ import { defaultTo } from "./util/defaultTo.mjs";
280
+ import { gt } from "./util/gt.mjs";
281
+ import { gte } from "./util/gte.mjs";
282
+ import { invoke } from "./util/invoke.mjs";
283
+ import { lt } from "./util/lt.mjs";
284
+ import { lte } from "./util/lte.mjs";
285
+ import { method } from "./util/method.mjs";
286
+ import { methodOf } from "./util/methodOf.mjs";
287
+ import { now } from "./util/now.mjs";
288
+ import { over } from "./util/over.mjs";
289
+ import { overEvery } from "./util/overEvery.mjs";
290
+ import { overSome } from "./util/overSome.mjs";
291
+ import { stubArray } from "./util/stubArray.mjs";
292
+ import { stubFalse } from "./util/stubFalse.mjs";
293
+ import { stubObject } from "./util/stubObject.mjs";
294
+ import { stubString } from "./util/stubString.mjs";
295
+ import { stubTrue } from "./util/stubTrue.mjs";
296
+ import { toLength } from "./util/toLength.mjs";
297
+ import { toPlainObject } from "./util/toPlainObject.mjs";
298
+ import { toSafeInteger } from "./util/toSafeInteger.mjs";
299
+ import { uniqueId } from "./util/uniqueId.mjs";
300
+ //#region src/compat/compat.ts
301
+ var compat_exports = /* @__PURE__ */ __exportAll({
302
+ add: () => add,
303
+ after: () => after,
304
+ ary: () => ary,
305
+ assign: () => assign,
306
+ assignIn: () => assignIn,
307
+ assignInWith: () => assignInWith,
308
+ assignWith: () => assignWith,
309
+ at: () => at,
310
+ attempt: () => attempt,
311
+ before: () => before,
312
+ bind: () => bind,
313
+ bindAll: () => bindAll,
314
+ bindKey: () => bindKey,
315
+ camelCase: () => camelCase,
316
+ capitalize: () => capitalize,
317
+ castArray: () => castArray,
318
+ ceil: () => ceil,
319
+ chunk: () => chunk,
320
+ clamp: () => clamp,
321
+ clone: () => clone,
322
+ cloneDeep: () => cloneDeep,
323
+ cloneDeepWith: () => cloneDeepWith,
324
+ cloneWith: () => cloneWith,
325
+ compact: () => compact,
326
+ concat: () => concat,
327
+ cond: () => cond,
328
+ conforms: () => conforms,
329
+ conformsTo: () => conformsTo,
330
+ constant: () => constant,
331
+ countBy: () => countBy,
332
+ create: () => create,
333
+ curry: () => curry,
334
+ curryRight: () => curryRight,
335
+ debounce: () => debounce,
336
+ deburr: () => deburr,
337
+ defaultTo: () => defaultTo,
338
+ defaults: () => defaults,
339
+ defaultsDeep: () => defaultsDeep,
340
+ defer: () => defer,
341
+ delay: () => delay,
342
+ difference: () => difference,
343
+ differenceBy: () => differenceBy,
344
+ differenceWith: () => differenceWith,
345
+ divide: () => divide,
346
+ drop: () => drop,
347
+ dropRight: () => dropRight,
348
+ dropRightWhile: () => dropRightWhile,
349
+ dropWhile: () => dropWhile,
350
+ each: () => forEach,
351
+ eachRight: () => forEachRight,
352
+ endsWith: () => endsWith,
353
+ eq: () => isEqualsSameValueZero,
354
+ escape: () => escape,
355
+ escapeRegExp: () => escapeRegExp,
356
+ every: () => every,
357
+ extend: () => assignIn,
358
+ extendWith: () => assignInWith,
359
+ fill: () => fill,
360
+ filter: () => filter,
361
+ find: () => find,
362
+ findIndex: () => findIndex,
363
+ findKey: () => findKey,
364
+ findLast: () => findLast,
365
+ findLastIndex: () => findLastIndex,
366
+ findLastKey: () => findLastKey,
367
+ first: () => head,
368
+ flatMap: () => flatMap,
369
+ flatMapDeep: () => flatMapDeep,
370
+ flatMapDepth: () => flatMapDepth,
371
+ flatten: () => flatten,
372
+ flattenDeep: () => flattenDeep,
373
+ flattenDepth: () => flattenDepth,
374
+ flip: () => flip,
375
+ floor: () => floor,
376
+ flow: () => flow,
377
+ flowRight: () => flowRight,
378
+ forEach: () => forEach,
379
+ forEachRight: () => forEachRight,
380
+ forIn: () => forIn,
381
+ forInRight: () => forInRight,
382
+ forOwn: () => forOwn,
383
+ forOwnRight: () => forOwnRight,
384
+ fromPairs: () => fromPairs,
385
+ functions: () => functions,
386
+ functionsIn: () => functionsIn,
387
+ get: () => get,
388
+ groupBy: () => groupBy,
389
+ gt: () => gt,
390
+ gte: () => gte,
391
+ has: () => has,
392
+ hasIn: () => hasIn,
393
+ head: () => head,
394
+ identity: () => identity,
395
+ inRange: () => inRange,
396
+ includes: () => includes,
397
+ indexOf: () => indexOf,
398
+ initial: () => initial,
399
+ intersection: () => intersection,
400
+ intersectionBy: () => intersectionBy,
401
+ intersectionWith: () => intersectionWith,
402
+ invert: () => invert,
403
+ invertBy: () => invertBy,
404
+ invoke: () => invoke,
405
+ invokeMap: () => invokeMap,
406
+ isArguments: () => isArguments,
407
+ isArray: () => isArray,
408
+ isArrayBuffer: () => isArrayBuffer,
409
+ isArrayLike: () => isArrayLike,
410
+ isArrayLikeObject: () => isArrayLikeObject,
411
+ isBoolean: () => isBoolean,
412
+ isBuffer: () => isBuffer,
413
+ isDate: () => isDate,
414
+ isElement: () => isElement,
415
+ isEmpty: () => isEmpty,
416
+ isEqual: () => isEqual,
417
+ isEqualWith: () => isEqualWith,
418
+ isError: () => isError,
419
+ isFinite: () => isFinite,
420
+ isFunction: () => isFunction,
421
+ isInteger: () => isInteger,
422
+ isLength: () => isLength,
423
+ isMap: () => isMap,
424
+ isMatch: () => isMatch,
425
+ isMatchWith: () => isMatchWith,
426
+ isNaN: () => isNaN,
427
+ isNative: () => isNative,
428
+ isNil: () => isNil,
429
+ isNull: () => isNull,
430
+ isNumber: () => isNumber,
431
+ isObject: () => isObject,
432
+ isObjectLike: () => isObjectLike,
433
+ isPlainObject: () => isPlainObject,
434
+ isRegExp: () => isRegExp,
435
+ isSafeInteger: () => isSafeInteger,
436
+ isSet: () => isSet,
437
+ isString: () => isString,
438
+ isSymbol: () => isSymbol,
439
+ isTypedArray: () => isTypedArray,
440
+ isUndefined: () => isUndefined,
441
+ isWeakMap: () => isWeakMap,
442
+ isWeakSet: () => isWeakSet,
443
+ iteratee: () => iteratee,
444
+ join: () => join,
445
+ kebabCase: () => kebabCase,
446
+ keyBy: () => keyBy,
447
+ keys: () => keys,
448
+ keysIn: () => keysIn,
449
+ last: () => last,
450
+ lastIndexOf: () => lastIndexOf,
451
+ lowerCase: () => lowerCase,
452
+ lowerFirst: () => lowerFirst,
453
+ lt: () => lt,
454
+ lte: () => lte,
455
+ map: () => map,
456
+ mapKeys: () => mapKeys,
457
+ mapValues: () => mapValues,
458
+ matches: () => matches,
459
+ matchesProperty: () => matchesProperty,
460
+ max: () => max,
461
+ maxBy: () => maxBy,
462
+ mean: () => mean,
463
+ meanBy: () => meanBy,
464
+ memoize: () => memoize,
465
+ merge: () => merge,
466
+ mergeWith: () => mergeWith,
467
+ method: () => method,
468
+ methodOf: () => methodOf,
469
+ min: () => min,
470
+ minBy: () => minBy,
471
+ multiply: () => multiply,
472
+ negate: () => negate,
473
+ noop: () => noop,
474
+ now: () => now,
475
+ nth: () => nth,
476
+ nthArg: () => nthArg,
477
+ omit: () => omit,
478
+ omitBy: () => omitBy,
479
+ once: () => once,
480
+ orderBy: () => orderBy,
481
+ over: () => over,
482
+ overArgs: () => overArgs,
483
+ overEvery: () => overEvery,
484
+ overSome: () => overSome,
485
+ pad: () => pad,
486
+ padEnd: () => padEnd,
487
+ padStart: () => padStart,
488
+ parseInt: () => parseInt,
489
+ partial: () => partial,
490
+ partialRight: () => partialRight,
491
+ partition: () => partition,
492
+ pick: () => pick,
493
+ pickBy: () => pickBy,
494
+ property: () => property,
495
+ propertyOf: () => propertyOf,
496
+ pull: () => pull,
497
+ pullAll: () => pullAll,
498
+ pullAllBy: () => pullAllBy,
499
+ pullAllWith: () => pullAllWith,
500
+ pullAt: () => pullAt,
501
+ random: () => random,
502
+ range: () => range,
503
+ rangeRight: () => rangeRight,
504
+ rearg: () => rearg,
505
+ reduce: () => reduce,
506
+ reduceRight: () => reduceRight,
507
+ reject: () => reject,
508
+ remove: () => remove,
509
+ repeat: () => repeat,
510
+ replace: () => replace,
511
+ rest: () => rest,
512
+ result: () => result,
513
+ reverse: () => reverse,
514
+ round: () => round,
515
+ sample: () => sample,
516
+ sampleSize: () => sampleSize,
517
+ set: () => set,
518
+ setWith: () => setWith,
519
+ shuffle: () => shuffle,
520
+ size: () => size,
521
+ slice: () => slice,
522
+ snakeCase: () => snakeCase,
523
+ some: () => some,
524
+ sortBy: () => sortBy,
525
+ sortedIndex: () => sortedIndex,
526
+ sortedIndexBy: () => sortedIndexBy,
527
+ sortedIndexOf: () => sortedIndexOf,
528
+ sortedLastIndex: () => sortedLastIndex,
529
+ sortedLastIndexBy: () => sortedLastIndexBy,
530
+ sortedLastIndexOf: () => sortedLastIndexOf,
531
+ split: () => split,
532
+ spread: () => spread,
533
+ startCase: () => startCase,
534
+ startsWith: () => startsWith,
535
+ stubArray: () => stubArray,
536
+ stubFalse: () => stubFalse,
537
+ stubObject: () => stubObject,
538
+ stubString: () => stubString,
539
+ stubTrue: () => stubTrue,
540
+ subtract: () => subtract,
541
+ sum: () => sum,
542
+ sumBy: () => sumBy,
543
+ tail: () => tail,
544
+ take: () => take,
545
+ takeRight: () => takeRight,
546
+ takeRightWhile: () => takeRightWhile,
547
+ takeWhile: () => takeWhile,
548
+ template: () => template,
549
+ templateSettings: () => templateSettings,
550
+ throttle: () => throttle,
551
+ times: () => times,
552
+ toArray: () => toArray,
553
+ toDefaulted: () => toDefaulted,
554
+ toFinite: () => toFinite,
555
+ toInteger: () => toInteger,
556
+ toLength: () => toLength,
557
+ toLower: () => toLower,
558
+ toNumber: () => toNumber,
559
+ toPairs: () => toPairs,
560
+ toPairsIn: () => toPairsIn,
561
+ toPath: () => toPath,
562
+ toPlainObject: () => toPlainObject,
563
+ toSafeInteger: () => toSafeInteger,
564
+ toString: () => toString,
565
+ toUpper: () => toUpper,
566
+ transform: () => transform,
567
+ trim: () => trim,
568
+ trimEnd: () => trimEnd,
569
+ trimStart: () => trimStart,
570
+ truncate: () => truncate,
571
+ unary: () => unary,
572
+ unescape: () => unescape,
573
+ union: () => union,
574
+ unionBy: () => unionBy,
575
+ unionWith: () => unionWith,
576
+ uniq: () => uniq,
577
+ uniqBy: () => uniqBy,
578
+ uniqWith: () => uniqWith,
579
+ uniqueId: () => uniqueId,
580
+ unset: () => unset,
581
+ unzip: () => unzip,
582
+ unzipWith: () => unzipWith,
583
+ update: () => update,
584
+ updateWith: () => updateWith,
585
+ upperCase: () => upperCase,
586
+ upperFirst: () => upperFirst,
587
+ values: () => values,
588
+ valuesIn: () => valuesIn,
589
+ without: () => without,
590
+ words: () => words,
591
+ wrap: () => wrap,
592
+ xor: () => xor,
593
+ xorBy: () => xorBy,
594
+ xorWith: () => xorWith,
595
+ zip: () => zip,
596
+ zipObject: () => zipObject,
597
+ zipObjectDeep: () => zipObjectDeep,
598
+ zipWith: () => zipWith
599
+ });
600
+ //#endregion
601
+ export { compat_exports };