@unicom-cloud/utils 0.1.37 → 0.1.39

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 (1977) hide show
  1. package/.virtual/_rolldown/runtime.js +13 -0
  2. package/.vite/license.md +3 -0
  3. package/.vite/manifest.json +10075 -0
  4. package/array/index.d.ts +2 -0
  5. package/array/index.js +8 -0
  6. package/assert/index.js +25 -33
  7. package/canvas-roundrect-polyfill/LICENSE +21 -0
  8. package/canvas-roundrect-polyfill/index.d.ts +0 -0
  9. package/canvas-roundrect-polyfill/index.js +78 -0
  10. package/case-name/index.js +23 -22
  11. package/class-name/index.js +10 -9
  12. package/clipboard-copy/index.js +34 -33
  13. package/constant/address.js +14488 -5305
  14. package/constant/chineseCharacters.js +7 -5
  15. package/constant/constellations.js +19 -17
  16. package/constant/domain.js +7 -269
  17. package/constant/identity.js +20 -18
  18. package/constant/index.js +18 -31
  19. package/constant/isMobile.js +6 -7
  20. package/constant/keyboardCode.js +97 -101
  21. package/constant/licensePlate.js +10 -43
  22. package/constant/name.js +12 -667
  23. package/constant/platform.js +26 -20
  24. package/constant/protocol.js +20 -18
  25. package/constant/string.js +7 -5
  26. package/constant/ui.js +23 -19
  27. package/content-disposition/index.js +44 -54
  28. package/cookie/index.d.ts +1 -116
  29. package/cookie/index.js +4 -5
  30. package/cookie/src/api.js +45 -56
  31. package/cookie/src/assign.js +11 -11
  32. package/cookie/src/converter.js +12 -14
  33. package/date/convertTime.js +66 -59
  34. package/date/convertToDuration.js +36 -17
  35. package/date/index.js +10 -12
  36. package/decimal/decimal.js +792 -1054
  37. package/decimal/index.js +4 -6
  38. package/dom-helpers/activeElement.js +13 -12
  39. package/dom-helpers/addClass.js +8 -10
  40. package/dom-helpers/addEventListener.js +25 -32
  41. package/dom-helpers/animate.d.ts +19 -0
  42. package/dom-helpers/animate.js +38 -48
  43. package/dom-helpers/animationFrame.js +23 -19
  44. package/dom-helpers/attribute.js +10 -10
  45. package/dom-helpers/camelize.js +8 -7
  46. package/dom-helpers/camelizeStyle.d.ts +2 -0
  47. package/dom-helpers/camelizeStyle.js +9 -8
  48. package/dom-helpers/canUseDOM.js +6 -5
  49. package/dom-helpers/childElements.js +7 -6
  50. package/dom-helpers/childNodes.js +8 -7
  51. package/dom-helpers/clear.js +11 -11
  52. package/dom-helpers/closest.js +14 -13
  53. package/dom-helpers/collectElements.js +9 -10
  54. package/dom-helpers/collectSiblings.js +13 -14
  55. package/dom-helpers/contains.js +8 -8
  56. package/dom-helpers/css.d.ts +3 -0
  57. package/dom-helpers/css.js +15 -15
  58. package/dom-helpers/filterEventHandler.d.ts +2 -0
  59. package/dom-helpers/filterEventHandler.js +12 -11
  60. package/dom-helpers/getComputedStyle.js +8 -7
  61. package/dom-helpers/getElementCoordinates.js +42 -45
  62. package/dom-helpers/getScrollAccessor.js +14 -14
  63. package/dom-helpers/hasClass.js +7 -8
  64. package/dom-helpers/height.js +10 -9
  65. package/dom-helpers/hyphenate.js +8 -7
  66. package/dom-helpers/hyphenateStyle.d.ts +7 -0
  67. package/dom-helpers/hyphenateStyle.js +9 -8
  68. package/dom-helpers/index.js +96 -141
  69. package/dom-helpers/insertAfter.js +7 -6
  70. package/dom-helpers/isDocument.js +7 -6
  71. package/dom-helpers/isInput.js +8 -7
  72. package/dom-helpers/isTransform.js +8 -7
  73. package/dom-helpers/isVisible.js +7 -6
  74. package/dom-helpers/isWindow.js +8 -7
  75. package/dom-helpers/listen.d.ts +3 -0
  76. package/dom-helpers/listen.js +11 -10
  77. package/dom-helpers/matches.js +12 -11
  78. package/dom-helpers/nextUntil.js +8 -7
  79. package/dom-helpers/offset.js +22 -18
  80. package/dom-helpers/offsetParent.js +12 -13
  81. package/dom-helpers/ownerDocument.js +7 -6
  82. package/dom-helpers/ownerWindow.js +8 -7
  83. package/dom-helpers/parents.js +8 -7
  84. package/dom-helpers/position.js +31 -28
  85. package/dom-helpers/prepend.js +7 -6
  86. package/dom-helpers/querySelectorAll.js +8 -7
  87. package/dom-helpers/reflow.js +20 -25
  88. package/dom-helpers/remove.js +7 -6
  89. package/dom-helpers/removeClass.js +9 -17
  90. package/dom-helpers/removeEventListener.d.ts +11 -0
  91. package/dom-helpers/removeEventListener.js +8 -7
  92. package/dom-helpers/scrollLeft.js +6 -5
  93. package/dom-helpers/scrollParent.js +15 -15
  94. package/dom-helpers/scrollTo.js +27 -25
  95. package/dom-helpers/scrollTop.js +7 -6
  96. package/dom-helpers/scrollbarSize.js +13 -12
  97. package/dom-helpers/siblings.js +8 -10
  98. package/dom-helpers/text.js +9 -8
  99. package/dom-helpers/toggleClass.js +10 -9
  100. package/dom-helpers/transitionEnd.js +26 -31
  101. package/dom-helpers/triggerEvent.js +10 -9
  102. package/dom-helpers/types.d.ts +6 -0
  103. package/dom-helpers/types.js +6 -5
  104. package/dom-helpers/width.js +10 -9
  105. package/emitter/index.js +4 -5
  106. package/emitter/src/index.d.ts +75 -0
  107. package/emitter/src/index.js +68 -95
  108. package/emoji/emoji.js +57396 -52076
  109. package/emoji/emojis.js +6 -1920
  110. package/emoji/index.js +28 -32
  111. package/escape/index.js +9 -9
  112. package/file/fileRead.js +47 -54
  113. package/file/fileToDataURL.js +8 -8
  114. package/file/index.js +6 -9
  115. package/file/saveAs.js +61 -73
  116. package/function/index.js +8 -50
  117. package/idb/LICENSE +6 -0
  118. package/idb/async-iterators.js +38 -0
  119. package/idb/database-extras.js +33 -0
  120. package/idb/entry.d.ts +634 -0
  121. package/idb/entry.js +18 -0
  122. package/idb/index-.d.ts +18 -0
  123. package/idb/index-.js +84 -0
  124. package/idb/index.d.ts +3 -0
  125. package/idb/index.js +7 -103
  126. package/idb/util.d.ts +3 -0
  127. package/idb/util.js +6 -0
  128. package/idb/wrap-idb-value.d.ts +34 -0
  129. package/idb/wrap-idb-value.js +86 -0
  130. package/index.js +3 -4
  131. package/invariant/index.js +16 -21
  132. package/is/index.d.ts +88 -0
  133. package/is/index.js +142 -223
  134. package/is/lib/isAscii.d.ts +1 -0
  135. package/is/lib/isAscii.js +9 -8
  136. package/is/lib/isBase64.d.ts +4 -0
  137. package/is/lib/isBase64.js +16 -12
  138. package/is/lib/isChinese.d.ts +4 -0
  139. package/is/lib/isChinese.js +17 -17
  140. package/is/lib/isDataURI.d.ts +1 -0
  141. package/is/lib/isDataURI.js +18 -24
  142. package/is/lib/isEmail.js +59 -69
  143. package/is/lib/isFQDN.js +18 -25
  144. package/is/lib/isFullWidth.js +9 -9
  145. package/is/lib/isHSL.js +11 -10
  146. package/is/lib/isHalfWidth.js +9 -9
  147. package/is/lib/isHash.js +22 -21
  148. package/is/lib/isHexColor.js +10 -11
  149. package/is/lib/isIMEI.js +18 -19
  150. package/is/lib/isIP.js +16 -20
  151. package/is/lib/isIPRange.js +23 -24
  152. package/is/lib/isIdentityCard.js +112 -188
  153. package/is/lib/isJWT.js +11 -13
  154. package/is/lib/isMACAddress.js +9 -8
  155. package/is/lib/isMD5.js +8 -7
  156. package/is/lib/isMimeType.js +9 -8
  157. package/is/lib/isMobilePhone.js +180 -190
  158. package/is/lib/isPort.js +7 -6
  159. package/is/lib/isRgbColor.js +17 -17
  160. package/is/lib/isSemVer.js +16 -18
  161. package/is/lib/isSlug.js +8 -7
  162. package/is/lib/isStrongPassword.js +45 -43
  163. package/is/lib/isURL.js +64 -77
  164. package/is/lib/isUUID.js +22 -22
  165. package/is/lib/isVariableWidth.js +10 -9
  166. package/lodash/_DataView.js +8 -0
  167. package/lodash/_Hash.js +18 -0
  168. package/lodash/_LazyWrapper.js +12 -0
  169. package/lodash/_ListCache.js +18 -0
  170. package/lodash/_LodashWrapper.js +11 -0
  171. package/lodash/_Map.js +8 -0
  172. package/lodash/_MapCache.js +18 -0
  173. package/lodash/_Promise.js +8 -0
  174. package/lodash/_Set.js +8 -0
  175. package/lodash/_SetCache.js +13 -0
  176. package/lodash/_Stack.js +15 -0
  177. package/lodash/_Symbol.js +7 -0
  178. package/lodash/_Uint8Array.js +7 -0
  179. package/lodash/_WeakMap.js +8 -0
  180. package/lodash/_addMapEntry.js +8 -0
  181. package/lodash/_addSetEntry.js +8 -0
  182. package/lodash/_apply.js +14 -0
  183. package/lodash/_arrayAggregator.js +12 -0
  184. package/lodash/_arrayEach.js +9 -0
  185. package/lodash/_arrayEachRight.js +9 -0
  186. package/lodash/_arrayEvery.js +9 -0
  187. package/lodash/_arrayFilter.js +12 -0
  188. package/lodash/_arrayIncludes.js +9 -0
  189. package/lodash/_arrayIncludesWith.js +9 -0
  190. package/lodash/_arrayLikeKeys.js +17 -0
  191. package/lodash/_arrayMap.js +9 -0
  192. package/lodash/_arrayPush.js +9 -0
  193. package/lodash/_arrayReduce.js +10 -0
  194. package/lodash/_arrayReduceRight.js +10 -0
  195. package/lodash/_arraySample.js +10 -0
  196. package/lodash/_arraySampleSize.js +11 -0
  197. package/lodash/_arrayShuffle.js +10 -0
  198. package/lodash/_arraySome.js +9 -0
  199. package/lodash/_asciiSize.js +7 -0
  200. package/lodash/_asciiToArray.js +8 -0
  201. package/lodash/_asciiWords.js +9 -0
  202. package/lodash/_assignMergeValue.js +10 -0
  203. package/lodash/_assignValue.js +12 -0
  204. package/lodash/_assocIndexOf.js +10 -0
  205. package/lodash/_baseAggregator.js +11 -0
  206. package/lodash/_baseAssign.js +10 -0
  207. package/lodash/_baseAssignIn.js +10 -0
  208. package/lodash/_baseAssignValue.js +14 -0
  209. package/lodash/_baseAt.js +10 -0
  210. package/lodash/_baseClamp.js +8 -0
  211. package/lodash/_baseClone.js +59 -0
  212. package/lodash/_baseConforms.js +13 -0
  213. package/lodash/_baseConformsTo.js +14 -0
  214. package/lodash/_baseCreate.js +16 -0
  215. package/lodash/_baseDelay.js +12 -0
  216. package/lodash/_baseDifference.js +25 -0
  217. package/lodash/_baseEach.js +8 -0
  218. package/lodash/_baseEachRight.js +8 -0
  219. package/lodash/_baseEvery.js +12 -0
  220. package/lodash/_baseExtremum.js +13 -0
  221. package/lodash/_baseFill.js +12 -0
  222. package/lodash/_baseFilter.js +12 -0
  223. package/lodash/_baseFindIndex.js +9 -0
  224. package/lodash/_baseFindKey.js +11 -0
  225. package/lodash/_baseFlatten.js +15 -0
  226. package/lodash/_baseFor.js +7 -0
  227. package/lodash/_baseForOwn.js +10 -0
  228. package/lodash/_baseForOwnRight.js +10 -0
  229. package/lodash/_baseForRight.js +7 -0
  230. package/lodash/_baseFunctions.js +12 -0
  231. package/lodash/_baseGet.js +12 -0
  232. package/lodash/_baseGetAllKeys.js +11 -0
  233. package/lodash/_baseGetTag.js +12 -0
  234. package/lodash/_baseGt.js +8 -0
  235. package/lodash/_baseHas.js +9 -0
  236. package/lodash/_baseHasIn.js +8 -0
  237. package/lodash/_baseInRange.js +9 -0
  238. package/lodash/_baseIndexOf.js +11 -0
  239. package/lodash/_baseIndexOfWith.js +9 -0
  240. package/lodash/_baseIntersection.js +31 -0
  241. package/lodash/_baseInverter.js +11 -0
  242. package/lodash/_baseInvoke.js +15 -0
  243. package/lodash/_baseIsArguments.js +11 -0
  244. package/lodash/_baseIsArrayBuffer.js +11 -0
  245. package/lodash/_baseIsDate.js +11 -0
  246. package/lodash/_baseIsEqual.js +10 -0
  247. package/lodash/_baseIsEqualDeep.js +32 -0
  248. package/lodash/_baseIsMap.js +11 -0
  249. package/lodash/_baseIsMatch.js +28 -0
  250. package/lodash/_baseIsNaN.js +8 -0
  251. package/lodash/_baseIsNative.js +13 -0
  252. package/lodash/_baseIsRegExp.js +11 -0
  253. package/lodash/_baseIsSet.js +11 -0
  254. package/lodash/_baseIsTypedArray.js +13 -0
  255. package/lodash/_baseIteratee.js +13 -0
  256. package/lodash/_baseKeys.js +14 -0
  257. package/lodash/_baseKeysIn.js +15 -0
  258. package/lodash/_baseLodash.js +6 -0
  259. package/lodash/_baseLt.js +8 -0
  260. package/lodash/_baseMap.js +13 -0
  261. package/lodash/_baseMatches.js +14 -0
  262. package/lodash/_baseMatchesProperty.js +19 -0
  263. package/lodash/_baseMean.js +11 -0
  264. package/lodash/_baseMerge.js +21 -0
  265. package/lodash/_baseMergeDeep.js +33 -0
  266. package/lodash/_baseNth.js +10 -0
  267. package/lodash/_baseOrderBy.js +33 -0
  268. package/lodash/_basePick.js +12 -0
  269. package/lodash/_basePickBy.js +15 -0
  270. package/lodash/_baseProperty.js +10 -0
  271. package/lodash/_basePropertyDeep.js +11 -0
  272. package/lodash/_basePropertyOf.js +10 -0
  273. package/lodash/_basePullAll.js +16 -0
  274. package/lodash/_basePullAt.js +18 -0
  275. package/lodash/_baseRandom.js +9 -0
  276. package/lodash/_baseRange.js +10 -0
  277. package/lodash/_baseReduce.js +10 -0
  278. package/lodash/_baseRepeat.js +14 -0
  279. package/lodash/_baseRest.js +11 -0
  280. package/lodash/_baseSample.js +10 -0
  281. package/lodash/_baseSampleSize.js +12 -0
  282. package/lodash/_baseSet.js +24 -0
  283. package/lodash/_baseSetData.js +10 -0
  284. package/lodash/_baseSetToString.js +16 -0
  285. package/lodash/_baseShuffle.js +10 -0
  286. package/lodash/_baseSlice.js +11 -0
  287. package/lodash/_baseSome.js +12 -0
  288. package/lodash/_baseSortBy.js +10 -0
  289. package/lodash/_baseSortedIndex.js +20 -0
  290. package/lodash/_baseSortedIndexBy.js +19 -0
  291. package/lodash/_baseSortedUniq.js +16 -0
  292. package/lodash/_baseSum.js +12 -0
  293. package/lodash/_baseTimes.js +9 -0
  294. package/lodash/_baseToNumber.js +10 -0
  295. package/lodash/_baseToPairs.js +11 -0
  296. package/lodash/_baseToString.js +17 -0
  297. package/lodash/_baseTrim.js +10 -0
  298. package/lodash/_baseUnary.js +10 -0
  299. package/lodash/_baseUniq.js +29 -0
  300. package/lodash/_baseUnset.js +27 -0
  301. package/lodash/_baseUpdate.js +10 -0
  302. package/lodash/_baseValues.js +11 -0
  303. package/lodash/_baseWhile.js +10 -0
  304. package/lodash/_baseWrapperValue.js +14 -0
  305. package/lodash/_baseXor.js +14 -0
  306. package/lodash/_baseZipObject.js +12 -0
  307. package/lodash/_cacheHas.js +8 -0
  308. package/lodash/_castArrayLikeObject.js +9 -0
  309. package/lodash/_castFunction.js +9 -0
  310. package/lodash/_castPath.js +12 -0
  311. package/lodash/_castRest.js +7 -0
  312. package/lodash/_castSlice.js +10 -0
  313. package/lodash/_charsEndIndex.js +10 -0
  314. package/lodash/_charsStartIndex.js +10 -0
  315. package/lodash/_cloneArrayBuffer.js +10 -0
  316. package/lodash/_cloneBuffer.js +12 -0
  317. package/lodash/_cloneDataView.js +10 -0
  318. package/lodash/_cloneMap.js +12 -0
  319. package/lodash/_cloneRegExp.js +10 -0
  320. package/lodash/_cloneSet.js +12 -0
  321. package/lodash/_cloneSymbol.js +10 -0
  322. package/lodash/_cloneTypedArray.js +10 -0
  323. package/lodash/_compareAscending.js +14 -0
  324. package/lodash/_compareMultiple.js +13 -0
  325. package/lodash/_composeArgs.js +12 -0
  326. package/lodash/_composeArgsRight.js +12 -0
  327. package/lodash/_copyArray.js +10 -0
  328. package/lodash/_copyObject.js +16 -0
  329. package/lodash/_copySymbols.js +10 -0
  330. package/lodash/_copySymbolsIn.js +10 -0
  331. package/lodash/_coreJsData.js +7 -0
  332. package/lodash/_countHolders.js +9 -0
  333. package/lodash/_createAggregator.js +15 -0
  334. package/lodash/_createAssigner.js +17 -0
  335. package/lodash/_createBaseEach.js +14 -0
  336. package/lodash/_createBaseFor.js +14 -0
  337. package/lodash/_createBind.js +15 -0
  338. package/lodash/_createCaseFirst.js +16 -0
  339. package/lodash/_createCompounder.js +14 -0
  340. package/lodash/_createCtor.js +24 -0
  341. package/lodash/_createCurry.js +21 -0
  342. package/lodash/_createFind.js +21 -0
  343. package/lodash/_createFlow.js +33 -0
  344. package/lodash/_createHybrid.js +29 -0
  345. package/lodash/_createInverter.js +11 -0
  346. package/lodash/_createMathOperation.js +18 -0
  347. package/lodash/_createOver.js +21 -0
  348. package/lodash/_createPadding.js +19 -0
  349. package/lodash/_createPartial.js +18 -0
  350. package/lodash/_createRange.js +13 -0
  351. package/lodash/_createRecurry.js +26 -0
  352. package/lodash/_createRelationalOperation.js +11 -0
  353. package/lodash/_createRound.js +20 -0
  354. package/lodash/_createSet.js +11 -0
  355. package/lodash/_createToPairs.js +16 -0
  356. package/lodash/_createWrap.js +40 -0
  357. package/lodash/_customDefaultsAssignIn.js +10 -0
  358. package/lodash/_customDefaultsMerge.js +10 -0
  359. package/lodash/_customOmitClone.js +9 -0
  360. package/lodash/_deburrLetter.js +198 -0
  361. package/lodash/_defineProperty.js +12 -0
  362. package/lodash/_equalArrays.js +37 -0
  363. package/lodash/_equalByTag.js +37 -0
  364. package/lodash/_equalObjects.js +34 -0
  365. package/lodash/_escapeHtmlChar.js +13 -0
  366. package/lodash/_escapeStringChar.js +16 -0
  367. package/lodash/_flatRest.js +11 -0
  368. package/lodash/_freeGlobal.js +6 -0
  369. package/lodash/_getAllKeys.js +11 -0
  370. package/lodash/_getAllKeysIn.js +11 -0
  371. package/lodash/_getData.js +10 -0
  372. package/lodash/_getFuncName.js +14 -0
  373. package/lodash/_getHolder.js +8 -0
  374. package/lodash/_getMapData.js +10 -0
  375. package/lodash/_getMatchData.js +18 -0
  376. package/lodash/_getNative.js +11 -0
  377. package/lodash/_getPrototype.js +7 -0
  378. package/lodash/_getRawTag.js +16 -0
  379. package/lodash/_getSymbols.js +12 -0
  380. package/lodash/_getSymbolsIn.js +13 -0
  381. package/lodash/_getTag.js +25 -0
  382. package/lodash/_getValue.js +8 -0
  383. package/lodash/_getView.js +29 -0
  384. package/lodash/_getWrapDetails.js +10 -0
  385. package/lodash/_hasPath.js +20 -0
  386. package/lodash/_hasUnicode.js +9 -0
  387. package/lodash/_hasUnicodeWord.js +9 -0
  388. package/lodash/_hashClear.js +9 -0
  389. package/lodash/_hashDelete.js +9 -0
  390. package/lodash/_hashGet.js +15 -0
  391. package/lodash/_hashHas.js +11 -0
  392. package/lodash/_hashSet.js +11 -0
  393. package/lodash/_initCloneArray.js +10 -0
  394. package/lodash/_initCloneByTag.js +35 -0
  395. package/lodash/_initCloneObject.js +11 -0
  396. package/lodash/_insertWrapDetails.js +12 -0
  397. package/lodash/_isFlattenable.js +12 -0
  398. package/lodash/_isIndex.js +10 -0
  399. package/lodash/_isIterateeCall.js +14 -0
  400. package/lodash/_isKey.js +13 -0
  401. package/lodash/_isKeyable.js +9 -0
  402. package/lodash/_isLaziable.js +16 -0
  403. package/lodash/_isMaskable.js +9 -0
  404. package/lodash/_isMasked.js +13 -0
  405. package/lodash/_isPrototype.js +10 -0
  406. package/lodash/_isStrictComparable.js +9 -0
  407. package/lodash/_iteratorToArray.js +9 -0
  408. package/lodash/_lazyClone.js +11 -0
  409. package/lodash/_lazyReverse.js +13 -0
  410. package/lodash/_lazyValue.js +27 -0
  411. package/lodash/_listCacheClear.js +8 -0
  412. package/lodash/_listCacheDelete.js +11 -0
  413. package/lodash/_listCacheGet.js +10 -0
  414. package/lodash/_listCacheHas.js +9 -0
  415. package/lodash/_listCacheSet.js +10 -0
  416. package/lodash/_mapCacheClear.js +15 -0
  417. package/lodash/_mapCacheDelete.js +10 -0
  418. package/lodash/_mapCacheGet.js +9 -0
  419. package/lodash/_mapCacheHas.js +9 -0
  420. package/lodash/_mapCacheSet.js +10 -0
  421. package/lodash/_mapToArray.js +11 -0
  422. package/lodash/_matchesStrictComparable.js +10 -0
  423. package/lodash/_memoizeCapped.js +13 -0
  424. package/lodash/_mergeData.js +20 -0
  425. package/lodash/_metaMap.js +7 -0
  426. package/lodash/_nativeCreate.js +7 -0
  427. package/lodash/_nativeKeys.js +7 -0
  428. package/lodash/_nativeKeysIn.js +10 -0
  429. package/lodash/_nodeUtil.js +11 -0
  430. package/lodash/_objectToString.js +9 -0
  431. package/lodash/_overArg.js +10 -0
  432. package/lodash/_overRest.js +15 -0
  433. package/lodash/_parent.js +10 -0
  434. package/lodash/_reEscape.js +6 -0
  435. package/lodash/_reEvaluate.js +6 -0
  436. package/lodash/_reInterpolate.js +6 -0
  437. package/lodash/_realNames.js +6 -0
  438. package/lodash/_reorder.js +15 -0
  439. package/lodash/_replaceHolders.js +13 -0
  440. package/lodash/_root.js +7 -0
  441. package/lodash/_safeGet.js +8 -0
  442. package/lodash/_setCacheAdd.js +9 -0
  443. package/lodash/_setCacheHas.js +8 -0
  444. package/lodash/_setData.js +8 -0
  445. package/lodash/_setToArray.js +11 -0
  446. package/lodash/_setToPairs.js +11 -0
  447. package/lodash/_setToString.js +8 -0
  448. package/lodash/_setWrapToString.js +13 -0
  449. package/lodash/_shortOut.js +16 -0
  450. package/lodash/_shuffleSelf.js +14 -0
  451. package/lodash/_stackClear.js +9 -0
  452. package/lodash/_stackDelete.js +9 -0
  453. package/lodash/_stackGet.js +8 -0
  454. package/lodash/_stackHas.js +8 -0
  455. package/lodash/_stackSet.js +18 -0
  456. package/lodash/_strictIndexOf.js +9 -0
  457. package/lodash/_strictLastIndexOf.js +9 -0
  458. package/lodash/_stringSize.js +11 -0
  459. package/lodash/_stringToArray.js +11 -0
  460. package/lodash/_stringToPath.js +12 -0
  461. package/lodash/_toKey.js +12 -0
  462. package/lodash/_toSource.js +17 -0
  463. package/lodash/_trimmedEndIndex.js +10 -0
  464. package/lodash/_unescapeHtmlChar.js +13 -0
  465. package/lodash/_unicodeSize.js +20 -0
  466. package/lodash/_unicodeToArray.js +19 -0
  467. package/lodash/_unicodeWords.js +34 -0
  468. package/lodash/_updateWrapDetails.js +24 -0
  469. package/lodash/_wrapperClone.js +13 -0
  470. package/lodash/add.js +9 -0
  471. package/lodash/after.js +13 -0
  472. package/lodash/array.default.js +136 -0
  473. package/lodash/array.js +68 -0
  474. package/lodash/ary.js +10 -0
  475. package/lodash/assign.js +18 -0
  476. package/lodash/assignIn.js +11 -0
  477. package/lodash/assignInWith.js +11 -0
  478. package/lodash/assignWith.js +11 -0
  479. package/lodash/at.js +8 -0
  480. package/lodash/attempt.js +15 -0
  481. package/lodash/before.js +14 -0
  482. package/lodash/bind.js +18 -0
  483. package/lodash/bindAll.js +15 -0
  484. package/lodash/bindKey.js +18 -0
  485. package/lodash/camelCase.js +10 -0
  486. package/lodash/capitalize.js +10 -0
  487. package/lodash/castArray.js +11 -0
  488. package/lodash/ceil.js +7 -0
  489. package/lodash/chain.js +10 -0
  490. package/lodash/chunk.js +16 -0
  491. package/lodash/clamp.js +10 -0
  492. package/lodash/clone.js +10 -0
  493. package/lodash/cloneDeep.js +10 -0
  494. package/lodash/cloneDeepWith.js +10 -0
  495. package/lodash/cloneWith.js +10 -0
  496. package/lodash/collection.default.js +63 -0
  497. package/lodash/collection.js +32 -0
  498. package/lodash/commit.js +9 -0
  499. package/lodash/compact.js +12 -0
  500. package/lodash/concat.js +15 -0
  501. package/lodash/cond.js +22 -0
  502. package/lodash/conforms.js +11 -0
  503. package/lodash/conformsTo.js +10 -0
  504. package/lodash/constant.js +10 -0
  505. package/lodash/countBy.js +10 -0
  506. package/lodash/create.js +11 -0
  507. package/lodash/curry.js +13 -0
  508. package/lodash/curryRight.js +13 -0
  509. package/lodash/date.default.js +7 -0
  510. package/lodash/date.js +5 -0
  511. package/lodash/debounce.js +52 -0
  512. package/lodash/deburr.js +11 -0
  513. package/lodash/defaultTo.js +8 -0
  514. package/lodash/defaults.js +18 -0
  515. package/lodash/defaultsDeep.js +12 -0
  516. package/lodash/defer.js +10 -0
  517. package/lodash/delay.js +11 -0
  518. package/lodash/difference.js +12 -0
  519. package/lodash/differenceBy.js +15 -0
  520. package/lodash/differenceWith.js +14 -0
  521. package/lodash/divide.js +9 -0
  522. package/lodash/drop.js +11 -0
  523. package/lodash/dropRight.js +11 -0
  524. package/lodash/dropRightWhile.js +10 -0
  525. package/lodash/dropWhile.js +10 -0
  526. package/lodash/each.js +4 -0
  527. package/lodash/eachRight.js +4 -0
  528. package/lodash/endsWith.js +16 -0
  529. package/lodash/entries.js +4 -0
  530. package/lodash/entriesIn.js +4 -0
  531. package/lodash/eq.js +8 -0
  532. package/lodash/escape.js +11 -0
  533. package/lodash/escapeRegExp.js +10 -0
  534. package/lodash/every.js +14 -0
  535. package/lodash/extend.js +4 -0
  536. package/lodash/extendWith.js +4 -0
  537. package/lodash/fill.js +11 -0
  538. package/lodash/filter.js +12 -0
  539. package/lodash/find.js +8 -0
  540. package/lodash/findIndex.js +15 -0
  541. package/lodash/findKey.js +11 -0
  542. package/lodash/findLast.js +8 -0
  543. package/lodash/findLastIndex.js +15 -0
  544. package/lodash/findLastKey.js +11 -0
  545. package/lodash/first.js +4 -0
  546. package/lodash/flatMap.js +10 -0
  547. package/lodash/flatMapDeep.js +11 -0
  548. package/lodash/flatMapDepth.js +11 -0
  549. package/lodash/flatten.js +9 -0
  550. package/lodash/flattenDeep.js +10 -0
  551. package/lodash/flattenDepth.js +10 -0
  552. package/lodash/flip.js +10 -0
  553. package/lodash/floor.js +7 -0
  554. package/lodash/flow.js +7 -0
  555. package/lodash/flowRight.js +7 -0
  556. package/lodash/forEach.js +12 -0
  557. package/lodash/forEachRight.js +12 -0
  558. package/lodash/forIn.js +11 -0
  559. package/lodash/forInRight.js +11 -0
  560. package/lodash/forOwn.js +10 -0
  561. package/lodash/forOwnRight.js +10 -0
  562. package/lodash/fromPairs.js +12 -0
  563. package/lodash/function.default.js +53 -0
  564. package/lodash/function.js +27 -0
  565. package/lodash/functions.js +10 -0
  566. package/lodash/functionsIn.js +10 -0
  567. package/lodash/get.js +10 -0
  568. package/lodash/groupBy.js +10 -0
  569. package/lodash/gt.js +8 -0
  570. package/lodash/gte.js +9 -0
  571. package/lodash/has.js +10 -0
  572. package/lodash/hasIn.js +10 -0
  573. package/lodash/head.js +8 -0
  574. package/lodash/identity.js +8 -0
  575. package/lodash/inRange.js +11 -0
  576. package/lodash/includes.js +16 -0
  577. package/lodash/index.js +312 -0
  578. package/lodash/indexOf.js +14 -0
  579. package/lodash/initial.js +9 -0
  580. package/lodash/intersection.js +13 -0
  581. package/lodash/intersectionBy.js +15 -0
  582. package/lodash/intersectionWith.js +14 -0
  583. package/lodash/invert.js +11 -0
  584. package/lodash/invertBy.js +10 -0
  585. package/lodash/invoke.js +8 -0
  586. package/lodash/invokeMap.js +16 -0
  587. package/lodash/isArguments.js +12 -0
  588. package/lodash/isArray.js +6 -0
  589. package/lodash/isArrayBuffer.js +9 -0
  590. package/lodash/isArrayLike.js +10 -0
  591. package/lodash/isArrayLikeObject.js +10 -0
  592. package/lodash/isBoolean.js +11 -0
  593. package/lodash/isBuffer.js +8 -0
  594. package/lodash/isDate.js +9 -0
  595. package/lodash/isElement.js +10 -0
  596. package/lodash/isEmpty.js +23 -0
  597. package/lodash/isEqual.js +9 -0
  598. package/lodash/isEqualWith.js +11 -0
  599. package/lodash/isError.js +14 -0
  600. package/lodash/isFinite.js +10 -0
  601. package/lodash/isFunction.js +13 -0
  602. package/lodash/isInteger.js +9 -0
  603. package/lodash/isLength.js +9 -0
  604. package/lodash/isMap.js +9 -0
  605. package/lodash/isMatch.js +10 -0
  606. package/lodash/isMatchWith.js +10 -0
  607. package/lodash/isNaN.js +9 -0
  608. package/lodash/isNative.js +12 -0
  609. package/lodash/isNil.js +8 -0
  610. package/lodash/isNull.js +8 -0
  611. package/lodash/isNumber.js +11 -0
  612. package/lodash/isObject.js +9 -0
  613. package/lodash/isObjectLike.js +8 -0
  614. package/lodash/isPlainObject.js +16 -0
  615. package/lodash/isPromise.js +11 -0
  616. package/lodash/isRegExp.js +9 -0
  617. package/lodash/isSafeInteger.js +10 -0
  618. package/lodash/isSet.js +9 -0
  619. package/lodash/isString.js +12 -0
  620. package/lodash/isSymbol.js +11 -0
  621. package/lodash/isTypedArray.js +9 -0
  622. package/lodash/isUndefined.js +8 -0
  623. package/lodash/isWeakMap.js +11 -0
  624. package/lodash/isWeakSet.js +11 -0
  625. package/lodash/iteratee.js +11 -0
  626. package/lodash/join.js +9 -0
  627. package/lodash/kebabCase.js +9 -0
  628. package/lodash/keyBy.js +10 -0
  629. package/lodash/keys.js +11 -0
  630. package/lodash/keysIn.js +11 -0
  631. package/lodash/lang.default.js +119 -0
  632. package/lodash/lang.js +60 -0
  633. package/lodash/last.js +9 -0
  634. package/lodash/lastIndexOf.js +16 -0
  635. package/lodash/lodash.default.js +182 -0
  636. package/lodash/lodash.js +319 -0
  637. package/lodash/lowerCase.js +9 -0
  638. package/lodash/lowerFirst.js +7 -0
  639. package/lodash/lt.js +8 -0
  640. package/lodash/lte.js +9 -0
  641. package/lodash/map.js +12 -0
  642. package/lodash/mapKeys.js +14 -0
  643. package/lodash/mapValues.js +14 -0
  644. package/lodash/matches.js +11 -0
  645. package/lodash/matchesProperty.js +11 -0
  646. package/lodash/math.default.js +37 -0
  647. package/lodash/math.js +19 -0
  648. package/lodash/max.js +11 -0
  649. package/lodash/maxBy.js +11 -0
  650. package/lodash/mean.js +10 -0
  651. package/lodash/meanBy.js +10 -0
  652. package/lodash/memoize.js +18 -0
  653. package/lodash/merge.js +10 -0
  654. package/lodash/mergeWith.js +10 -0
  655. package/lodash/method.js +12 -0
  656. package/lodash/methodOf.js +12 -0
  657. package/lodash/min.js +11 -0
  658. package/lodash/minBy.js +11 -0
  659. package/lodash/mixin.js +30 -0
  660. package/lodash/multiply.js +9 -0
  661. package/lodash/negate.js +19 -0
  662. package/lodash/next.js +14 -0
  663. package/lodash/noop.js +6 -0
  664. package/lodash/now.js +9 -0
  665. package/lodash/nth.js +10 -0
  666. package/lodash/nthArg.js +13 -0
  667. package/lodash/number.default.js +13 -0
  668. package/lodash/number.js +7 -0
  669. package/lodash/object.default.js +101 -0
  670. package/lodash/object.js +51 -0
  671. package/lodash/omit.js +23 -0
  672. package/lodash/omitBy.js +11 -0
  673. package/lodash/once.js +9 -0
  674. package/lodash/orderBy.js +10 -0
  675. package/lodash/over.js +8 -0
  676. package/lodash/overArgs.js +21 -0
  677. package/lodash/overEvery.js +8 -0
  678. package/lodash/overSome.js +8 -0
  679. package/lodash/pad.js +17 -0
  680. package/lodash/padEnd.js +14 -0
  681. package/lodash/padStart.js +14 -0
  682. package/lodash/parseInt.js +11 -0
  683. package/lodash/partial.js +13 -0
  684. package/lodash/partialRight.js +13 -0
  685. package/lodash/partition.js +11 -0
  686. package/lodash/pick.js +10 -0
  687. package/lodash/pickBy.js +18 -0
  688. package/lodash/plant.js +16 -0
  689. package/lodash/property.js +12 -0
  690. package/lodash/propertyOf.js +11 -0
  691. package/lodash/pull.js +8 -0
  692. package/lodash/pullAll.js +9 -0
  693. package/lodash/pullAllBy.js +10 -0
  694. package/lodash/pullAllWith.js +9 -0
  695. package/lodash/pullAt.js +17 -0
  696. package/lodash/random.js +20 -0
  697. package/lodash/range.js +7 -0
  698. package/lodash/rangeRight.js +7 -0
  699. package/lodash/rearg.js +10 -0
  700. package/lodash/reduce.js +14 -0
  701. package/lodash/reduceRight.js +14 -0
  702. package/lodash/reject.js +13 -0
  703. package/lodash/remove.js +17 -0
  704. package/lodash/repeat.js +12 -0
  705. package/lodash/replace.js +10 -0
  706. package/lodash/rest.js +12 -0
  707. package/lodash/result.js +17 -0
  708. package/lodash/reverse.js +9 -0
  709. package/lodash/round.js +7 -0
  710. package/lodash/sample.js +11 -0
  711. package/lodash/sampleSize.js +13 -0
  712. package/lodash/seq.default.js +35 -0
  713. package/lodash/seq.js +18 -0
  714. package/lodash/set.js +9 -0
  715. package/lodash/setWith.js +9 -0
  716. package/lodash/shuffle.js +11 -0
  717. package/lodash/size.js +17 -0
  718. package/lodash/slice.js +12 -0
  719. package/lodash/snakeCase.js +9 -0
  720. package/lodash/some.js +14 -0
  721. package/lodash/sortBy.js +14 -0
  722. package/lodash/sortedIndex.js +9 -0
  723. package/lodash/sortedIndexBy.js +10 -0
  724. package/lodash/sortedIndexOf.js +15 -0
  725. package/lodash/sortedLastIndex.js +9 -0
  726. package/lodash/sortedLastIndexBy.js +10 -0
  727. package/lodash/sortedLastIndexOf.js +14 -0
  728. package/lodash/sortedUniq.js +9 -0
  729. package/lodash/sortedUniqBy.js +10 -0
  730. package/lodash/split.js +16 -0
  731. package/lodash/spread.js +18 -0
  732. package/lodash/startCase.js +10 -0
  733. package/lodash/startsWith.js +12 -0
  734. package/lodash/string.default.js +69 -0
  735. package/lodash/string.js +35 -0
  736. package/lodash/stubArray.js +8 -0
  737. package/lodash/stubFalse.js +8 -0
  738. package/lodash/stubObject.js +8 -0
  739. package/lodash/stubString.js +8 -0
  740. package/lodash/stubTrue.js +8 -0
  741. package/lodash/subtract.js +9 -0
  742. package/lodash/sum.js +10 -0
  743. package/lodash/sumBy.js +10 -0
  744. package/lodash/tail.js +10 -0
  745. package/lodash/take.js +10 -0
  746. package/lodash/takeRight.js +11 -0
  747. package/lodash/takeRightWhile.js +10 -0
  748. package/lodash/takeWhile.js +10 -0
  749. package/lodash/tap.js +8 -0
  750. package/lodash/template.js +34 -0
  751. package/lodash/templateSettings.js +16 -0
  752. package/lodash/throttle.js +17 -0
  753. package/lodash/thru.js +8 -0
  754. package/lodash/times.js +16 -0
  755. package/lodash/toArray.js +23 -0
  756. package/lodash/toFinite.js +10 -0
  757. package/lodash/toInteger.js +10 -0
  758. package/lodash/toIterator.js +8 -0
  759. package/lodash/toJSON.js +4 -0
  760. package/lodash/toLength.js +11 -0
  761. package/lodash/toLower.js +9 -0
  762. package/lodash/toNumber.js +21 -0
  763. package/lodash/toPairs.js +8 -0
  764. package/lodash/toPairsIn.js +8 -0
  765. package/lodash/toPath.js +15 -0
  766. package/lodash/toPlainObject.js +10 -0
  767. package/lodash/toSafeInteger.js +11 -0
  768. package/lodash/toString.js +9 -0
  769. package/lodash/toUpper.js +9 -0
  770. package/lodash/transform.js +25 -0
  771. package/lodash/trim.js +18 -0
  772. package/lodash/trimEnd.js +17 -0
  773. package/lodash/trimStart.js +17 -0
  774. package/lodash/truncate.js +44 -0
  775. package/lodash/unary.js +9 -0
  776. package/lodash/unescape.js +11 -0
  777. package/lodash/union.js +12 -0
  778. package/lodash/unionBy.js +15 -0
  779. package/lodash/unionWith.js +14 -0
  780. package/lodash/uniq.js +9 -0
  781. package/lodash/uniqBy.js +10 -0
  782. package/lodash/uniqWith.js +9 -0
  783. package/lodash/uniqueId.js +11 -0
  784. package/lodash/unset.js +9 -0
  785. package/lodash/unzip.js +20 -0
  786. package/lodash/unzipWith.js +15 -0
  787. package/lodash/update.js +10 -0
  788. package/lodash/updateWith.js +10 -0
  789. package/lodash/upperCase.js +9 -0
  790. package/lodash/upperFirst.js +7 -0
  791. package/lodash/util.default.js +71 -0
  792. package/lodash/util.js +36 -0
  793. package/lodash/value.js +4 -0
  794. package/lodash/valueOf.js +4 -0
  795. package/lodash/values.js +10 -0
  796. package/lodash/valuesIn.js +10 -0
  797. package/lodash/without.js +11 -0
  798. package/lodash/words.js +12 -0
  799. package/lodash/wrap.js +10 -0
  800. package/lodash/wrapperAt.js +23 -0
  801. package/lodash/wrapperChain.js +9 -0
  802. package/lodash/wrapperLodash.js +20 -0
  803. package/lodash/wrapperReverse.js +21 -0
  804. package/lodash/wrapperValue.js +9 -0
  805. package/lodash/xor.js +12 -0
  806. package/lodash/xorBy.js +15 -0
  807. package/lodash/xorWith.js +14 -0
  808. package/lodash/zip.js +8 -0
  809. package/lodash/zipObject.js +10 -0
  810. package/lodash/zipObjectDeep.js +10 -0
  811. package/lodash/zipWith.js +11 -0
  812. package/math/index.js +20 -22
  813. package/md5/index.js +60 -66
  814. package/mock/MockWebSocket.js +80 -93
  815. package/mock/MockXMLHttpRequest.js +83 -82
  816. package/mock/index.js +5 -9
  817. package/normalize-wheel/ExecutionEnvironment.js +12 -12
  818. package/normalize-wheel/UserAgent_DEPRECATED.js +71 -145
  819. package/normalize-wheel/index.js +18 -12
  820. package/normalize-wheel/isEventSupported.js +14 -15
  821. package/number-to-chinese/index.js +105 -71
  822. package/nzh/cn.js +9 -8
  823. package/nzh/hk.js +9 -8
  824. package/nzh/index.d.ts +1 -0
  825. package/nzh/index.js +4 -5
  826. package/nzh/nzh.d.ts +36 -74
  827. package/nzh/nzh.js +25 -21
  828. package/nzh/src/autoGet.js +28 -25
  829. package/nzh/src/index.js +80 -91
  830. package/nzh/src/langs/cn_b.js +13 -12
  831. package/nzh/src/langs/cn_s.js +10 -9
  832. package/nzh/src/langs/hk_b.js +13 -12
  833. package/nzh/src/langs/hk_s.js +10 -9
  834. package/nzh/src/utils.js +60 -72
  835. package/object/index.d.ts +7 -0
  836. package/object/index.js +14 -15
  837. package/package.json +1 -1
  838. package/pinyin/index.d.ts +1 -6
  839. package/pinyin/index.js +5 -5
  840. package/pinyin/simplified.js +4 -5
  841. package/pinyin/src/core.js +125 -134
  842. package/pinyin/src/simplified.js +8 -9
  843. package/pinyin/src/simplified_dict.js +408 -410
  844. package/pinyin/src/traditional.js +8 -9
  845. package/pinyin/src/traditional_dict.js +401 -403
  846. package/pinyin/traditional.js +4 -5
  847. package/promise-pool/LICENSE +19 -0
  848. package/promise-pool/index.js +89 -0
  849. package/query-string/base.d.ts +11 -807
  850. package/query-string/base.js +254 -277
  851. package/query-string/index.d.ts +1 -15
  852. package/query-string/index.js +7 -5
  853. package/query-string/splitOnFirst.js +11 -14
  854. package/random/address.js +28 -32
  855. package/random/constellation.js +9 -8
  856. package/random/image.js +11 -20
  857. package/random/index.d.ts +31 -0
  858. package/random/index.js +97 -82
  859. package/random/licensePlate.js +10 -11
  860. package/random/name.js +26 -25
  861. package/random/number.js +16 -15
  862. package/random/text.js +98 -117
  863. package/random/time.js +8 -8
  864. package/random/web.js +42 -37
  865. package/sanitize-url/LICENSE +21 -0
  866. package/sanitize-url/index.d.ts +2 -0
  867. package/sanitize-url/index.js +21 -0
  868. package/screenfull/index.js +46 -49
  869. package/sleep/index.js +7 -6
  870. package/snapdom/index.js +5 -6
  871. package/snapdom/src/api/preCache.d.ts +30 -0
  872. package/snapdom/src/api/preCache.js +72 -89
  873. package/snapdom/src/api/snapdom.js +229 -237
  874. package/snapdom/src/core/cache.d.ts +38 -0
  875. package/snapdom/src/core/cache.js +56 -39
  876. package/snapdom/src/core/capture.js +160 -167
  877. package/snapdom/src/core/clone.js +195 -214
  878. package/snapdom/src/core/context.d.ts +60 -0
  879. package/snapdom/src/core/context.js +40 -58
  880. package/snapdom/src/core/plugins.js +55 -62
  881. package/snapdom/src/core/prepare.js +82 -76
  882. package/snapdom/src/exporters/download.js +46 -19
  883. package/snapdom/src/exporters/toBlob.js +14 -15
  884. package/snapdom/src/exporters/toCanvas.js +78 -103
  885. package/snapdom/src/exporters/toImg.js +35 -35
  886. package/snapdom/src/index.browser.d.ts +1 -0
  887. package/snapdom/src/index.js +4 -0
  888. package/snapdom/src/modules/CSSVar.js +74 -85
  889. package/snapdom/src/modules/background.js +84 -88
  890. package/snapdom/src/modules/changeCSS.js +48 -56
  891. package/snapdom/src/modules/counter.js +135 -172
  892. package/snapdom/src/modules/fonts.d.ts +85 -0
  893. package/snapdom/src/modules/fonts.js +560 -653
  894. package/snapdom/src/modules/iconFonts.js +130 -168
  895. package/snapdom/src/modules/images.js +87 -61
  896. package/snapdom/src/modules/lineClamp.d.ts +18 -0
  897. package/snapdom/src/modules/lineClamp.js +41 -37
  898. package/snapdom/src/modules/pseudo.js +290 -327
  899. package/snapdom/src/modules/rasterize.js +9 -8
  900. package/snapdom/src/modules/snapFetch.js +245 -255
  901. package/snapdom/src/modules/styles.js +177 -162
  902. package/snapdom/src/modules/svgDefs.js +97 -105
  903. package/snapdom/src/utils/browser.d.ts +11 -0
  904. package/snapdom/src/utils/browser.js +23 -16
  905. package/snapdom/src/utils/capture.helpers.d.ts +49 -0
  906. package/snapdom/src/utils/capture.helpers.js +145 -120
  907. package/snapdom/src/utils/clone.helpers.d.ts +127 -0
  908. package/snapdom/src/utils/clone.helpers.js +289 -261
  909. package/snapdom/src/utils/css.js +171 -180
  910. package/snapdom/src/utils/debug.d.ts +12 -0
  911. package/snapdom/src/utils/debug.js +9 -0
  912. package/snapdom/src/utils/helpers.d.ts +23 -0
  913. package/snapdom/src/utils/helpers.js +36 -28
  914. package/snapdom/src/utils/image.js +26 -29
  915. package/snapdom/src/utils/index.d.ts +5 -0
  916. package/snapdom/src/utils/index.js +7 -0
  917. package/snapdom/src/utils/prepare.helpers.js +8 -7
  918. package/snapdom/src/utils/transforms.helpers.js +223 -199
  919. package/string/chars.js +333 -659
  920. package/string/index.d.ts +11 -0
  921. package/string/index.js +11 -14
  922. package/tinycolor/index.js +13 -47
  923. package/tinycolor/src/conversion.d.ts +79 -0
  924. package/tinycolor/src/conversion.js +153 -129
  925. package/tinycolor/src/css-color-names.js +154 -153
  926. package/tinycolor/src/format-input.d.ts +38 -0
  927. package/tinycolor/src/format-input.js +104 -74
  928. package/tinycolor/src/from-ratio.js +20 -20
  929. package/tinycolor/src/index.d.ts +214 -0
  930. package/tinycolor/src/index.js +266 -387
  931. package/tinycolor/src/public_api.js +11 -0
  932. package/tinycolor/src/random.js +207 -213
  933. package/tinycolor/src/readability.d.ts +47 -0
  934. package/tinycolor/src/readability.js +34 -34
  935. package/tinycolor/src/to-ms-filter.d.ts +5 -0
  936. package/tinycolor/src/to-ms-filter.js +14 -15
  937. package/tinycolor/src/utils.js +21 -26
  938. package/tree/index.d.ts +8 -0
  939. package/tree/index.js +58 -67
  940. package/tree/search/index.js +84 -106
  941. package/tween/index.js +6 -8
  942. package/tween/src/easing.js +68 -62
  943. package/tween/src/index.js +4 -0
  944. package/tween/src/tween.js +31 -46
  945. package/ui-color/compareColorByRange.js +10 -9
  946. package/ui-color/index.js +197 -157
  947. package/url-toolkit/index.js +4 -9
  948. package/url-toolkit/src/url-toolkit.d.ts +18 -22
  949. package/url-toolkit/src/url-toolkit.js +57 -70
  950. package/validate/index.js +13 -26
  951. package/validate/src/index.js +78 -148
  952. package/validate/src/locale/en-US.js +60 -59
  953. package/validate/src/locale/index.js +11 -10
  954. package/validate/src/locale/zh-CN.js +60 -59
  955. package/validate/src/rules/array.d.ts +12 -0
  956. package/validate/src/rules/array.js +50 -72
  957. package/validate/src/rules/base.d.ts +27 -0
  958. package/validate/src/rules/base.js +64 -72
  959. package/validate/src/rules/boolean.d.ts +8 -0
  960. package/validate/src/rules/boolean.js +20 -28
  961. package/validate/src/rules/custom.d.ts +7 -0
  962. package/validate/src/rules/custom.js +23 -25
  963. package/validate/src/rules/number.d.ts +12 -0
  964. package/validate/src/rules/number.js +35 -53
  965. package/validate/src/rules/object.d.ts +9 -0
  966. package/validate/src/rules/object.js +22 -37
  967. package/validate/src/rules/string.d.ts +12 -0
  968. package/validate/src/rules/string.js +33 -54
  969. package/validate/src/rules/type.d.ts +19 -0
  970. package/validate/src/rules/type.js +65 -103
  971. package/version/index.js +6 -6
  972. package/xlsx/crc32.d.ts +12 -0
  973. package/xlsx/crc32.js +39 -0
  974. package/xlsx/index.d.ts +2 -1135
  975. package/xlsx/index.js +4 -23
  976. package/xlsx/xlsx.js +22195 -28156
  977. package/assert.js +0 -9
  978. package/caseName.js +0 -12
  979. package/className.js +0 -6
  980. package/clipboardCopy.js +0 -6
  981. package/constant.js +0 -29
  982. package/contentDisposition.js +0 -9
  983. package/cookie.js +0 -5
  984. package/date.js +0 -11
  985. package/decimal.js +0 -6
  986. package/domHelpers.js +0 -96
  987. package/emitter.js +0 -5
  988. package/emoji.js +0 -11
  989. package/escape.js +0 -6
  990. package/file.js +0 -9
  991. package/filesize/LICENSE +0 -26
  992. package/filesize/types/constants.d.ts +0 -111
  993. package/filesize/types/filesize.d.ts +0 -97
  994. package/filesize/types/helpers.d.ts +0 -130
  995. package/function.js +0 -49
  996. package/idb.js +0 -5
  997. package/invariant.js +0 -5
  998. package/is.js +0 -154
  999. package/lunar/LICENSE +0 -20
  1000. package/lunar/index.js +0 -37
  1001. package/lunar/lib/Holiday.js +0 -39
  1002. package/lunar/lib/HolidayUtil.js +0 -142
  1003. package/lunar/lib/I18n.js +0 -426
  1004. package/lunar/lib/JieQi.js +0 -37
  1005. package/lunar/lib/Lunar.js +0 -588
  1006. package/lunar/lib/LunarMonth.js +0 -88
  1007. package/lunar/lib/LunarTime.js +0 -60
  1008. package/lunar/lib/LunarUtil.js +0 -451
  1009. package/lunar/lib/LunarYear.js +0 -524
  1010. package/lunar/lib/ShouXingUtil.js +0 -6940
  1011. package/lunar/lib/Solar.js +0 -287
  1012. package/lunar/lib/SolarHalfYear.js +0 -44
  1013. package/lunar/lib/SolarMonth.js +0 -54
  1014. package/lunar/lib/SolarSeason.js +0 -41
  1015. package/lunar/lib/SolarUtil.js +0 -269
  1016. package/lunar/lib/SolarWeek.js +0 -150
  1017. package/lunar/lib/SolarYear.js +0 -35
  1018. package/lunar/lib/index.js +0 -36
  1019. package/lunar.js +0 -37
  1020. package/math.js +0 -10
  1021. package/md5.js +0 -5
  1022. package/mock.js +0 -9
  1023. package/normalizeWheel.js +0 -7
  1024. package/numberToChinese.js +0 -5
  1025. package/nzh.js +0 -5
  1026. package/object.js +0 -8
  1027. package/pinyin.js +0 -5
  1028. package/queryString.js +0 -5
  1029. package/random.js +0 -16
  1030. package/screenfull.js +0 -6
  1031. package/sleep.js +0 -5
  1032. package/snapdom/types/snapdom.d.ts +0 -362
  1033. package/snapdom.js +0 -7
  1034. package/string.js +0 -11
  1035. package/tinycolor.js +0 -47
  1036. package/tree.js +0 -16
  1037. package/tween.js +0 -8
  1038. package/types/cookie/index.d.ts +0 -1
  1039. package/types/dom-helpers/animate.d.ts +0 -19
  1040. package/types/dom-helpers/camelizeStyle.d.ts +0 -2
  1041. package/types/dom-helpers/css.d.ts +0 -3
  1042. package/types/dom-helpers/filterEventHandler.d.ts +0 -2
  1043. package/types/dom-helpers/hyphenateStyle.d.ts +0 -7
  1044. package/types/dom-helpers/listen.d.ts +0 -3
  1045. package/types/dom-helpers/removeEventListener.d.ts +0 -11
  1046. package/types/dom-helpers/types.d.ts +0 -6
  1047. package/types/emitter/src/index.d.ts +0 -73
  1048. package/types/idb/index.d.ts +0 -21
  1049. package/types/is/index.d.ts +0 -84
  1050. package/types/is/lib/isAscii.d.ts +0 -1
  1051. package/types/is/lib/isBase64.d.ts +0 -1
  1052. package/types/is/lib/isChinese.d.ts +0 -4
  1053. package/types/is/lib/isDataURI.d.ts +0 -1
  1054. package/types/lunar/index.d.ts +0 -3
  1055. package/types/lunar/lib/Holiday.d.ts +0 -17
  1056. package/types/lunar/lib/HolidayUtil.d.ts +0 -23
  1057. package/types/lunar/lib/I18n.d.ts +0 -23
  1058. package/types/lunar/lib/JieQi.d.ts +0 -15
  1059. package/types/lunar/lib/Lunar.d.ts +0 -147
  1060. package/types/lunar/lib/LunarMonth.d.ts +0 -23
  1061. package/types/lunar/lib/LunarTime.d.ts +0 -18
  1062. package/types/lunar/lib/LunarUtil.d.ts +0 -38
  1063. package/types/lunar/lib/LunarYear.d.ts +0 -31
  1064. package/types/lunar/lib/ShouXingUtil.d.ts +0 -38
  1065. package/types/lunar/lib/Solar.d.ts +0 -46
  1066. package/types/lunar/lib/SolarHalfYear.d.ts +0 -15
  1067. package/types/lunar/lib/SolarMonth.d.ts +0 -16
  1068. package/types/lunar/lib/SolarSeason.d.ts +0 -15
  1069. package/types/lunar/lib/SolarUtil.d.ts +0 -20
  1070. package/types/lunar/lib/SolarWeek.d.ts +0 -23
  1071. package/types/lunar/lib/SolarYear.d.ts +0 -12
  1072. package/types/lunar/lib/index.d.ts +0 -17
  1073. package/types/nzh/nzh.d.ts +0 -36
  1074. package/types/object/index.d.ts +0 -5
  1075. package/types/pinyin/es/main.d.ts +0 -4
  1076. package/types/pinyin/es/traditional.d.ts +0 -4
  1077. package/types/pinyin/index.d.ts +0 -1
  1078. package/types/query-string/base.d.ts +0 -11
  1079. package/types/query-string/index.d.ts +0 -2
  1080. package/types/random/index.d.ts +0 -31
  1081. package/types/snapdom/src/api/preCache.d.ts +0 -28
  1082. package/types/snapdom/src/core/cache.d.ts +0 -29
  1083. package/types/snapdom/src/core/context.d.ts +0 -67
  1084. package/types/snapdom/src/modules/fonts.d.ts +0 -83
  1085. package/types/snapdom/src/modules/lineClamp.d.ts +0 -13
  1086. package/types/snapdom/src/utils/browser.d.ts +0 -9
  1087. package/types/snapdom/src/utils/capture.helpers.d.ts +0 -45
  1088. package/types/snapdom/src/utils/clone.helpers.d.ts +0 -97
  1089. package/types/snapdom/src/utils/helpers.d.ts +0 -16
  1090. package/types/snapdom/src/utils/index.d.ts +0 -4
  1091. package/types/string/index.d.ts +0 -11
  1092. package/types/tinycolor/src/conversion.d.ts +0 -79
  1093. package/types/tinycolor/src/format-input.d.ts +0 -38
  1094. package/types/tinycolor/src/index.d.ts +0 -214
  1095. package/types/tinycolor/src/readability.d.ts +0 -46
  1096. package/types/tinycolor/src/to-ms-filter.d.ts +0 -5
  1097. package/types/tree/index.d.ts +0 -8
  1098. package/types/url-toolkit/src/url-toolkit.d.ts +0 -18
  1099. package/types/validate/src/rules/array.d.ts +0 -12
  1100. package/types/validate/src/rules/base.d.ts +0 -27
  1101. package/types/validate/src/rules/boolean.d.ts +0 -8
  1102. package/types/validate/src/rules/custom.d.ts +0 -7
  1103. package/types/validate/src/rules/number.d.ts +0 -12
  1104. package/types/validate/src/rules/object.d.ts +0 -9
  1105. package/types/validate/src/rules/string.d.ts +0 -12
  1106. package/types/validate/src/rules/type.d.ts +0 -19
  1107. package/types/xlsx/index.d.ts +0 -2
  1108. package/uiColor.js +0 -31
  1109. package/urlToolkit.js +0 -9
  1110. package/validate.js +0 -26
  1111. package/version.js +0 -6
  1112. package/xlsx.js +0 -23
  1113. /package/{types/assert → assert}/index.d.ts +0 -0
  1114. /package/{types/case-name → case-name}/index.d.ts +0 -0
  1115. /package/{types/class-name → class-name}/index.d.ts +0 -0
  1116. /package/{types/clipboard-copy → clipboard-copy}/index.d.ts +0 -0
  1117. /package/{types/constant → constant}/address.d.ts +0 -0
  1118. /package/{types/constant → constant}/chineseCharacters.d.ts +0 -0
  1119. /package/{types/constant → constant}/constellations.d.ts +0 -0
  1120. /package/{types/constant → constant}/domain.d.ts +0 -0
  1121. /package/{types/constant → constant}/identity.d.ts +0 -0
  1122. /package/{types/constant → constant}/index.d.ts +0 -0
  1123. /package/{types/constant → constant}/isMobile.d.ts +0 -0
  1124. /package/{types/constant → constant}/keyboardCode.d.ts +0 -0
  1125. /package/{types/constant → constant}/licensePlate.d.ts +0 -0
  1126. /package/{types/constant → constant}/name.d.ts +0 -0
  1127. /package/{types/constant → constant}/platform.d.ts +0 -0
  1128. /package/{types/constant → constant}/protocol.d.ts +0 -0
  1129. /package/{types/constant → constant}/string.d.ts +0 -0
  1130. /package/{types/constant → constant}/ui.d.ts +0 -0
  1131. /package/{types/content-disposition → content-disposition}/index.d.ts +0 -0
  1132. /package/{types/cookie → cookie}/src/api.d.mts +0 -0
  1133. /package/{types/cookie → cookie}/src/assign.d.mts +0 -0
  1134. /package/{types/cookie → cookie}/src/converter.d.mts +0 -0
  1135. /package/{types/date → date}/convertTime.d.ts +0 -0
  1136. /package/{types/date → date}/convertToDuration.d.ts +0 -0
  1137. /package/{types/date → date}/index.d.ts +0 -0
  1138. /package/{types/decimal → decimal}/decimal.d.ts +0 -0
  1139. /package/{types/decimal → decimal}/index.d.ts +0 -0
  1140. /package/{types/dom-helpers → dom-helpers}/activeElement.d.ts +0 -0
  1141. /package/{types/dom-helpers → dom-helpers}/addClass.d.ts +0 -0
  1142. /package/{types/dom-helpers → dom-helpers}/addEventListener.d.ts +0 -0
  1143. /package/{types/dom-helpers → dom-helpers}/animationFrame.d.ts +0 -0
  1144. /package/{types/dom-helpers → dom-helpers}/attribute.d.ts +0 -0
  1145. /package/{types/dom-helpers → dom-helpers}/camelize.d.ts +0 -0
  1146. /package/{types/dom-helpers → dom-helpers}/canUseDOM.d.ts +0 -0
  1147. /package/{types/dom-helpers → dom-helpers}/childElements.d.ts +0 -0
  1148. /package/{types/dom-helpers → dom-helpers}/childNodes.d.ts +0 -0
  1149. /package/{types/dom-helpers → dom-helpers}/clear.d.ts +0 -0
  1150. /package/{types/dom-helpers → dom-helpers}/closest.d.ts +0 -0
  1151. /package/{types/dom-helpers → dom-helpers}/collectElements.d.ts +0 -0
  1152. /package/{types/dom-helpers → dom-helpers}/collectSiblings.d.ts +0 -0
  1153. /package/{types/dom-helpers → dom-helpers}/contains.d.ts +0 -0
  1154. /package/{types/dom-helpers → dom-helpers}/getComputedStyle.d.ts +0 -0
  1155. /package/{types/dom-helpers → dom-helpers}/getElementCoordinates.d.ts +0 -0
  1156. /package/{types/dom-helpers → dom-helpers}/getScrollAccessor.d.ts +0 -0
  1157. /package/{types/dom-helpers → dom-helpers}/hasClass.d.ts +0 -0
  1158. /package/{types/dom-helpers → dom-helpers}/height.d.ts +0 -0
  1159. /package/{types/dom-helpers → dom-helpers}/hyphenate.d.ts +0 -0
  1160. /package/{types/dom-helpers → dom-helpers}/index.d.ts +0 -0
  1161. /package/{types/dom-helpers → dom-helpers}/insertAfter.d.ts +0 -0
  1162. /package/{types/dom-helpers → dom-helpers}/isDocument.d.ts +0 -0
  1163. /package/{types/dom-helpers → dom-helpers}/isInput.d.ts +0 -0
  1164. /package/{types/dom-helpers → dom-helpers}/isTransform.d.ts +0 -0
  1165. /package/{types/dom-helpers → dom-helpers}/isVisible.d.ts +0 -0
  1166. /package/{types/dom-helpers → dom-helpers}/isWindow.d.ts +0 -0
  1167. /package/{types/dom-helpers → dom-helpers}/matches.d.ts +0 -0
  1168. /package/{types/dom-helpers → dom-helpers}/nextUntil.d.ts +0 -0
  1169. /package/{types/dom-helpers → dom-helpers}/offset.d.ts +0 -0
  1170. /package/{types/dom-helpers → dom-helpers}/offsetParent.d.ts +0 -0
  1171. /package/{types/dom-helpers → dom-helpers}/ownerDocument.d.ts +0 -0
  1172. /package/{types/dom-helpers → dom-helpers}/ownerWindow.d.ts +0 -0
  1173. /package/{types/dom-helpers → dom-helpers}/parents.d.ts +0 -0
  1174. /package/{types/dom-helpers → dom-helpers}/position.d.ts +0 -0
  1175. /package/{types/dom-helpers → dom-helpers}/prepend.d.ts +0 -0
  1176. /package/{types/dom-helpers → dom-helpers}/querySelectorAll.d.ts +0 -0
  1177. /package/{types/dom-helpers → dom-helpers}/reflow.d.ts +0 -0
  1178. /package/{types/dom-helpers → dom-helpers}/remove.d.ts +0 -0
  1179. /package/{types/dom-helpers → dom-helpers}/removeClass.d.ts +0 -0
  1180. /package/{types/dom-helpers → dom-helpers}/scrollLeft.d.ts +0 -0
  1181. /package/{types/dom-helpers → dom-helpers}/scrollParent.d.ts +0 -0
  1182. /package/{types/dom-helpers → dom-helpers}/scrollTo.d.ts +0 -0
  1183. /package/{types/dom-helpers → dom-helpers}/scrollTop.d.ts +0 -0
  1184. /package/{types/dom-helpers → dom-helpers}/scrollbarSize.d.ts +0 -0
  1185. /package/{types/dom-helpers → dom-helpers}/siblings.d.ts +0 -0
  1186. /package/{types/dom-helpers → dom-helpers}/text.d.ts +0 -0
  1187. /package/{types/dom-helpers → dom-helpers}/toggleClass.d.ts +0 -0
  1188. /package/{types/dom-helpers → dom-helpers}/transitionEnd.d.ts +0 -0
  1189. /package/{types/dom-helpers → dom-helpers}/triggerEvent.d.ts +0 -0
  1190. /package/{types/dom-helpers → dom-helpers}/width.d.ts +0 -0
  1191. /package/{types/emitter → emitter}/index.d.ts +0 -0
  1192. /package/{types/emoji → emoji}/emoji.d.ts +0 -0
  1193. /package/{types/emoji → emoji}/emojis.d.ts +0 -0
  1194. /package/{types/emoji → emoji}/index.d.ts +0 -0
  1195. /package/{types/escape → escape}/index.d.ts +0 -0
  1196. /package/{types/file → file}/fileRead.d.ts +0 -0
  1197. /package/{types/file → file}/fileToDataURL.d.ts +0 -0
  1198. /package/{types/file → file}/index.d.ts +0 -0
  1199. /package/{types/file → file}/saveAs.d.ts +0 -0
  1200. /package/{types/filesize → filesize}/benchmarks/basic-performance.d.ts +0 -0
  1201. /package/{types/filesize → filesize}/benchmarks/index.d.ts +0 -0
  1202. /package/{types/filesize → filesize}/benchmarks/options-benchmark.d.ts +0 -0
  1203. /package/{types/filesize → filesize}/benchmarks/partial-benchmark.d.ts +0 -0
  1204. /package/{types/filesize → filesize}/benchmarks/stress-test.d.ts +0 -0
  1205. /package/{types/filesize → filesize}/src/constants.d.ts +0 -0
  1206. /package/{types/filesize → filesize}/src/filesize.d.ts +0 -0
  1207. /package/{types/filesize → filesize}/src/helpers.d.ts +0 -0
  1208. /package/{types/function → function}/index.d.ts +0 -0
  1209. /package/{types/nzh/index.d.ts → idb/async-iterators.d.ts} +0 -0
  1210. /package/{types/snapdom/src/index.browser.d.ts → idb/database-extras.d.ts} +0 -0
  1211. /package/{types/index.d.ts → index.d.ts} +0 -0
  1212. /package/{types/invariant → invariant}/index.d.ts +0 -0
  1213. /package/{types/is → is}/lib/isEmail.d.ts +0 -0
  1214. /package/{types/is → is}/lib/isFQDN.d.ts +0 -0
  1215. /package/{types/is → is}/lib/isFullWidth.d.ts +0 -0
  1216. /package/{types/is → is}/lib/isHSL.d.ts +0 -0
  1217. /package/{types/is → is}/lib/isHalfWidth.d.ts +0 -0
  1218. /package/{types/is → is}/lib/isHash.d.ts +0 -0
  1219. /package/{types/is → is}/lib/isHexColor.d.ts +0 -0
  1220. /package/{types/is → is}/lib/isIMEI.d.ts +0 -0
  1221. /package/{types/is → is}/lib/isIP.d.ts +0 -0
  1222. /package/{types/is → is}/lib/isIPRange.d.ts +0 -0
  1223. /package/{types/is → is}/lib/isIdentityCard.d.ts +0 -0
  1224. /package/{types/is → is}/lib/isJWT.d.ts +0 -0
  1225. /package/{types/is → is}/lib/isMACAddress.d.ts +0 -0
  1226. /package/{types/is → is}/lib/isMD5.d.ts +0 -0
  1227. /package/{types/is → is}/lib/isMimeType.d.ts +0 -0
  1228. /package/{types/is → is}/lib/isMobilePhone.d.ts +0 -0
  1229. /package/{types/is → is}/lib/isOctal.d.ts +0 -0
  1230. /package/{types/is → is}/lib/isPort.d.ts +0 -0
  1231. /package/{types/is → is}/lib/isRgbColor.d.ts +0 -0
  1232. /package/{types/is → is}/lib/isSemVer.d.ts +0 -0
  1233. /package/{types/is → is}/lib/isSlug.d.ts +0 -0
  1234. /package/{types/is → is}/lib/isStrongPassword.d.ts +0 -0
  1235. /package/{types/is → is}/lib/isURL.d.ts +0 -0
  1236. /package/{types/is → is}/lib/isUUID.d.ts +0 -0
  1237. /package/{types/is → is}/lib/isVariableWidth.d.ts +0 -0
  1238. /package/{types/lodash → lodash}/_DataView.d.ts +0 -0
  1239. /package/{types/lodash → lodash}/_Hash.d.ts +0 -0
  1240. /package/{types/lodash → lodash}/_LazyWrapper.d.ts +0 -0
  1241. /package/{types/lodash → lodash}/_ListCache.d.ts +0 -0
  1242. /package/{types/lodash → lodash}/_LodashWrapper.d.ts +0 -0
  1243. /package/{types/lodash → lodash}/_Map.d.ts +0 -0
  1244. /package/{types/lodash → lodash}/_MapCache.d.ts +0 -0
  1245. /package/{types/lodash → lodash}/_Promise.d.ts +0 -0
  1246. /package/{types/lodash → lodash}/_Set.d.ts +0 -0
  1247. /package/{types/lodash → lodash}/_SetCache.d.ts +0 -0
  1248. /package/{types/lodash → lodash}/_Stack.d.ts +0 -0
  1249. /package/{types/lodash → lodash}/_Symbol.d.ts +0 -0
  1250. /package/{types/lodash → lodash}/_Uint8Array.d.ts +0 -0
  1251. /package/{types/lodash → lodash}/_WeakMap.d.ts +0 -0
  1252. /package/{types/lodash → lodash}/_addMapEntry.d.ts +0 -0
  1253. /package/{types/lodash → lodash}/_addSetEntry.d.ts +0 -0
  1254. /package/{types/lodash → lodash}/_apply.d.ts +0 -0
  1255. /package/{types/lodash → lodash}/_arrayAggregator.d.ts +0 -0
  1256. /package/{types/lodash → lodash}/_arrayEach.d.ts +0 -0
  1257. /package/{types/lodash → lodash}/_arrayEachRight.d.ts +0 -0
  1258. /package/{types/lodash → lodash}/_arrayEvery.d.ts +0 -0
  1259. /package/{types/lodash → lodash}/_arrayFilter.d.ts +0 -0
  1260. /package/{types/lodash → lodash}/_arrayIncludes.d.ts +0 -0
  1261. /package/{types/lodash → lodash}/_arrayIncludesWith.d.ts +0 -0
  1262. /package/{types/lodash → lodash}/_arrayLikeKeys.d.ts +0 -0
  1263. /package/{types/lodash → lodash}/_arrayMap.d.ts +0 -0
  1264. /package/{types/lodash → lodash}/_arrayPush.d.ts +0 -0
  1265. /package/{types/lodash → lodash}/_arrayReduce.d.ts +0 -0
  1266. /package/{types/lodash → lodash}/_arrayReduceRight.d.ts +0 -0
  1267. /package/{types/lodash → lodash}/_arraySample.d.ts +0 -0
  1268. /package/{types/lodash → lodash}/_arraySampleSize.d.ts +0 -0
  1269. /package/{types/lodash → lodash}/_arrayShuffle.d.ts +0 -0
  1270. /package/{types/lodash → lodash}/_arraySome.d.ts +0 -0
  1271. /package/{types/lodash → lodash}/_asciiSize.d.ts +0 -0
  1272. /package/{types/lodash → lodash}/_asciiToArray.d.ts +0 -0
  1273. /package/{types/lodash → lodash}/_asciiWords.d.ts +0 -0
  1274. /package/{types/lodash → lodash}/_assignMergeValue.d.ts +0 -0
  1275. /package/{types/lodash → lodash}/_assignValue.d.ts +0 -0
  1276. /package/{types/lodash → lodash}/_assocIndexOf.d.ts +0 -0
  1277. /package/{types/lodash → lodash}/_baseAggregator.d.ts +0 -0
  1278. /package/{types/lodash → lodash}/_baseAssign.d.ts +0 -0
  1279. /package/{types/lodash → lodash}/_baseAssignIn.d.ts +0 -0
  1280. /package/{types/lodash → lodash}/_baseAssignValue.d.ts +0 -0
  1281. /package/{types/lodash → lodash}/_baseAt.d.ts +0 -0
  1282. /package/{types/lodash → lodash}/_baseClamp.d.ts +0 -0
  1283. /package/{types/lodash → lodash}/_baseClone.d.ts +0 -0
  1284. /package/{types/lodash → lodash}/_baseConforms.d.ts +0 -0
  1285. /package/{types/lodash → lodash}/_baseConformsTo.d.ts +0 -0
  1286. /package/{types/lodash → lodash}/_baseCreate.d.ts +0 -0
  1287. /package/{types/lodash → lodash}/_baseDelay.d.ts +0 -0
  1288. /package/{types/lodash → lodash}/_baseDifference.d.ts +0 -0
  1289. /package/{types/lodash → lodash}/_baseEach.d.ts +0 -0
  1290. /package/{types/lodash → lodash}/_baseEachRight.d.ts +0 -0
  1291. /package/{types/lodash → lodash}/_baseEvery.d.ts +0 -0
  1292. /package/{types/lodash → lodash}/_baseExtremum.d.ts +0 -0
  1293. /package/{types/lodash → lodash}/_baseFill.d.ts +0 -0
  1294. /package/{types/lodash → lodash}/_baseFilter.d.ts +0 -0
  1295. /package/{types/lodash → lodash}/_baseFindIndex.d.ts +0 -0
  1296. /package/{types/lodash → lodash}/_baseFindKey.d.ts +0 -0
  1297. /package/{types/lodash → lodash}/_baseFlatten.d.ts +0 -0
  1298. /package/{types/lodash → lodash}/_baseFor.d.ts +0 -0
  1299. /package/{types/lodash → lodash}/_baseForOwn.d.ts +0 -0
  1300. /package/{types/lodash → lodash}/_baseForOwnRight.d.ts +0 -0
  1301. /package/{types/lodash → lodash}/_baseForRight.d.ts +0 -0
  1302. /package/{types/lodash → lodash}/_baseFunctions.d.ts +0 -0
  1303. /package/{types/lodash → lodash}/_baseGet.d.ts +0 -0
  1304. /package/{types/lodash → lodash}/_baseGetAllKeys.d.ts +0 -0
  1305. /package/{types/lodash → lodash}/_baseGetTag.d.ts +0 -0
  1306. /package/{types/lodash → lodash}/_baseGt.d.ts +0 -0
  1307. /package/{types/lodash → lodash}/_baseHas.d.ts +0 -0
  1308. /package/{types/lodash → lodash}/_baseHasIn.d.ts +0 -0
  1309. /package/{types/lodash → lodash}/_baseInRange.d.ts +0 -0
  1310. /package/{types/lodash → lodash}/_baseIndexOf.d.ts +0 -0
  1311. /package/{types/lodash → lodash}/_baseIndexOfWith.d.ts +0 -0
  1312. /package/{types/lodash → lodash}/_baseIntersection.d.ts +0 -0
  1313. /package/{types/lodash → lodash}/_baseInverter.d.ts +0 -0
  1314. /package/{types/lodash → lodash}/_baseInvoke.d.ts +0 -0
  1315. /package/{types/lodash → lodash}/_baseIsArguments.d.ts +0 -0
  1316. /package/{types/lodash → lodash}/_baseIsArrayBuffer.d.ts +0 -0
  1317. /package/{types/lodash → lodash}/_baseIsDate.d.ts +0 -0
  1318. /package/{types/lodash → lodash}/_baseIsEqual.d.ts +0 -0
  1319. /package/{types/lodash → lodash}/_baseIsEqualDeep.d.ts +0 -0
  1320. /package/{types/lodash → lodash}/_baseIsMap.d.ts +0 -0
  1321. /package/{types/lodash → lodash}/_baseIsMatch.d.ts +0 -0
  1322. /package/{types/lodash → lodash}/_baseIsNaN.d.ts +0 -0
  1323. /package/{types/lodash → lodash}/_baseIsNative.d.ts +0 -0
  1324. /package/{types/lodash → lodash}/_baseIsRegExp.d.ts +0 -0
  1325. /package/{types/lodash → lodash}/_baseIsSet.d.ts +0 -0
  1326. /package/{types/lodash → lodash}/_baseIsTypedArray.d.ts +0 -0
  1327. /package/{types/lodash → lodash}/_baseIteratee.d.ts +0 -0
  1328. /package/{types/lodash → lodash}/_baseKeys.d.ts +0 -0
  1329. /package/{types/lodash → lodash}/_baseKeysIn.d.ts +0 -0
  1330. /package/{types/lodash → lodash}/_baseLodash.d.ts +0 -0
  1331. /package/{types/lodash → lodash}/_baseLt.d.ts +0 -0
  1332. /package/{types/lodash → lodash}/_baseMap.d.ts +0 -0
  1333. /package/{types/lodash → lodash}/_baseMatches.d.ts +0 -0
  1334. /package/{types/lodash → lodash}/_baseMatchesProperty.d.ts +0 -0
  1335. /package/{types/lodash → lodash}/_baseMean.d.ts +0 -0
  1336. /package/{types/lodash → lodash}/_baseMerge.d.ts +0 -0
  1337. /package/{types/lodash → lodash}/_baseMergeDeep.d.ts +0 -0
  1338. /package/{types/lodash → lodash}/_baseNth.d.ts +0 -0
  1339. /package/{types/lodash → lodash}/_baseOrderBy.d.ts +0 -0
  1340. /package/{types/lodash → lodash}/_basePick.d.ts +0 -0
  1341. /package/{types/lodash → lodash}/_basePickBy.d.ts +0 -0
  1342. /package/{types/lodash → lodash}/_baseProperty.d.ts +0 -0
  1343. /package/{types/lodash → lodash}/_basePropertyDeep.d.ts +0 -0
  1344. /package/{types/lodash → lodash}/_basePropertyOf.d.ts +0 -0
  1345. /package/{types/lodash → lodash}/_basePullAll.d.ts +0 -0
  1346. /package/{types/lodash → lodash}/_basePullAt.d.ts +0 -0
  1347. /package/{types/lodash → lodash}/_baseRandom.d.ts +0 -0
  1348. /package/{types/lodash → lodash}/_baseRange.d.ts +0 -0
  1349. /package/{types/lodash → lodash}/_baseReduce.d.ts +0 -0
  1350. /package/{types/lodash → lodash}/_baseRepeat.d.ts +0 -0
  1351. /package/{types/lodash → lodash}/_baseRest.d.ts +0 -0
  1352. /package/{types/lodash → lodash}/_baseSample.d.ts +0 -0
  1353. /package/{types/lodash → lodash}/_baseSampleSize.d.ts +0 -0
  1354. /package/{types/lodash → lodash}/_baseSet.d.ts +0 -0
  1355. /package/{types/lodash → lodash}/_baseSetData.d.ts +0 -0
  1356. /package/{types/lodash → lodash}/_baseSetToString.d.ts +0 -0
  1357. /package/{types/lodash → lodash}/_baseShuffle.d.ts +0 -0
  1358. /package/{types/lodash → lodash}/_baseSlice.d.ts +0 -0
  1359. /package/{types/lodash → lodash}/_baseSome.d.ts +0 -0
  1360. /package/{types/lodash → lodash}/_baseSortBy.d.ts +0 -0
  1361. /package/{types/lodash → lodash}/_baseSortedIndex.d.ts +0 -0
  1362. /package/{types/lodash → lodash}/_baseSortedIndexBy.d.ts +0 -0
  1363. /package/{types/lodash → lodash}/_baseSortedUniq.d.ts +0 -0
  1364. /package/{types/lodash → lodash}/_baseSum.d.ts +0 -0
  1365. /package/{types/lodash → lodash}/_baseTimes.d.ts +0 -0
  1366. /package/{types/lodash → lodash}/_baseToNumber.d.ts +0 -0
  1367. /package/{types/lodash → lodash}/_baseToPairs.d.ts +0 -0
  1368. /package/{types/lodash → lodash}/_baseToString.d.ts +0 -0
  1369. /package/{types/lodash → lodash}/_baseTrim.d.ts +0 -0
  1370. /package/{types/lodash → lodash}/_baseUnary.d.ts +0 -0
  1371. /package/{types/lodash → lodash}/_baseUniq.d.ts +0 -0
  1372. /package/{types/lodash → lodash}/_baseUnset.d.ts +0 -0
  1373. /package/{types/lodash → lodash}/_baseUpdate.d.ts +0 -0
  1374. /package/{types/lodash → lodash}/_baseValues.d.ts +0 -0
  1375. /package/{types/lodash → lodash}/_baseWhile.d.ts +0 -0
  1376. /package/{types/lodash → lodash}/_baseWrapperValue.d.ts +0 -0
  1377. /package/{types/lodash → lodash}/_baseXor.d.ts +0 -0
  1378. /package/{types/lodash → lodash}/_baseZipObject.d.ts +0 -0
  1379. /package/{types/lodash → lodash}/_cacheHas.d.ts +0 -0
  1380. /package/{types/lodash → lodash}/_castArrayLikeObject.d.ts +0 -0
  1381. /package/{types/lodash → lodash}/_castFunction.d.ts +0 -0
  1382. /package/{types/lodash → lodash}/_castPath.d.ts +0 -0
  1383. /package/{types/lodash → lodash}/_castRest.d.ts +0 -0
  1384. /package/{types/lodash → lodash}/_castSlice.d.ts +0 -0
  1385. /package/{types/lodash → lodash}/_charsEndIndex.d.ts +0 -0
  1386. /package/{types/lodash → lodash}/_charsStartIndex.d.ts +0 -0
  1387. /package/{types/lodash → lodash}/_cloneArrayBuffer.d.ts +0 -0
  1388. /package/{types/lodash → lodash}/_cloneBuffer.d.ts +0 -0
  1389. /package/{types/lodash → lodash}/_cloneDataView.d.ts +0 -0
  1390. /package/{types/lodash → lodash}/_cloneMap.d.ts +0 -0
  1391. /package/{types/lodash → lodash}/_cloneRegExp.d.ts +0 -0
  1392. /package/{types/lodash → lodash}/_cloneSet.d.ts +0 -0
  1393. /package/{types/lodash → lodash}/_cloneSymbol.d.ts +0 -0
  1394. /package/{types/lodash → lodash}/_cloneTypedArray.d.ts +0 -0
  1395. /package/{types/lodash → lodash}/_compareAscending.d.ts +0 -0
  1396. /package/{types/lodash → lodash}/_compareMultiple.d.ts +0 -0
  1397. /package/{types/lodash → lodash}/_composeArgs.d.ts +0 -0
  1398. /package/{types/lodash → lodash}/_composeArgsRight.d.ts +0 -0
  1399. /package/{types/lodash → lodash}/_copyArray.d.ts +0 -0
  1400. /package/{types/lodash → lodash}/_copyObject.d.ts +0 -0
  1401. /package/{types/lodash → lodash}/_copySymbols.d.ts +0 -0
  1402. /package/{types/lodash → lodash}/_copySymbolsIn.d.ts +0 -0
  1403. /package/{types/lodash → lodash}/_coreJsData.d.ts +0 -0
  1404. /package/{types/lodash → lodash}/_countHolders.d.ts +0 -0
  1405. /package/{types/lodash → lodash}/_createAggregator.d.ts +0 -0
  1406. /package/{types/lodash → lodash}/_createAssigner.d.ts +0 -0
  1407. /package/{types/lodash → lodash}/_createBaseEach.d.ts +0 -0
  1408. /package/{types/lodash → lodash}/_createBaseFor.d.ts +0 -0
  1409. /package/{types/lodash → lodash}/_createBind.d.ts +0 -0
  1410. /package/{types/lodash → lodash}/_createCaseFirst.d.ts +0 -0
  1411. /package/{types/lodash → lodash}/_createCompounder.d.ts +0 -0
  1412. /package/{types/lodash → lodash}/_createCtor.d.ts +0 -0
  1413. /package/{types/lodash → lodash}/_createCurry.d.ts +0 -0
  1414. /package/{types/lodash → lodash}/_createFind.d.ts +0 -0
  1415. /package/{types/lodash → lodash}/_createFlow.d.ts +0 -0
  1416. /package/{types/lodash → lodash}/_createHybrid.d.ts +0 -0
  1417. /package/{types/lodash → lodash}/_createInverter.d.ts +0 -0
  1418. /package/{types/lodash → lodash}/_createMathOperation.d.ts +0 -0
  1419. /package/{types/lodash → lodash}/_createOver.d.ts +0 -0
  1420. /package/{types/lodash → lodash}/_createPadding.d.ts +0 -0
  1421. /package/{types/lodash → lodash}/_createPartial.d.ts +0 -0
  1422. /package/{types/lodash → lodash}/_createRange.d.ts +0 -0
  1423. /package/{types/lodash → lodash}/_createRecurry.d.ts +0 -0
  1424. /package/{types/lodash → lodash}/_createRelationalOperation.d.ts +0 -0
  1425. /package/{types/lodash → lodash}/_createRound.d.ts +0 -0
  1426. /package/{types/lodash → lodash}/_createSet.d.ts +0 -0
  1427. /package/{types/lodash → lodash}/_createToPairs.d.ts +0 -0
  1428. /package/{types/lodash → lodash}/_createWrap.d.ts +0 -0
  1429. /package/{types/lodash → lodash}/_customDefaultsAssignIn.d.ts +0 -0
  1430. /package/{types/lodash → lodash}/_customDefaultsMerge.d.ts +0 -0
  1431. /package/{types/lodash → lodash}/_customOmitClone.d.ts +0 -0
  1432. /package/{types/lodash → lodash}/_deburrLetter.d.ts +0 -0
  1433. /package/{types/lodash → lodash}/_defineProperty.d.ts +0 -0
  1434. /package/{types/lodash → lodash}/_equalArrays.d.ts +0 -0
  1435. /package/{types/lodash → lodash}/_equalByTag.d.ts +0 -0
  1436. /package/{types/lodash → lodash}/_equalObjects.d.ts +0 -0
  1437. /package/{types/lodash → lodash}/_escapeHtmlChar.d.ts +0 -0
  1438. /package/{types/lodash → lodash}/_escapeStringChar.d.ts +0 -0
  1439. /package/{types/lodash → lodash}/_flatRest.d.ts +0 -0
  1440. /package/{types/lodash → lodash}/_freeGlobal.d.ts +0 -0
  1441. /package/{types/lodash → lodash}/_getAllKeys.d.ts +0 -0
  1442. /package/{types/lodash → lodash}/_getAllKeysIn.d.ts +0 -0
  1443. /package/{types/lodash → lodash}/_getData.d.ts +0 -0
  1444. /package/{types/lodash → lodash}/_getFuncName.d.ts +0 -0
  1445. /package/{types/lodash → lodash}/_getHolder.d.ts +0 -0
  1446. /package/{types/lodash → lodash}/_getMapData.d.ts +0 -0
  1447. /package/{types/lodash → lodash}/_getMatchData.d.ts +0 -0
  1448. /package/{types/lodash → lodash}/_getNative.d.ts +0 -0
  1449. /package/{types/lodash → lodash}/_getPrototype.d.ts +0 -0
  1450. /package/{types/lodash → lodash}/_getRawTag.d.ts +0 -0
  1451. /package/{types/lodash → lodash}/_getSymbols.d.ts +0 -0
  1452. /package/{types/lodash → lodash}/_getSymbolsIn.d.ts +0 -0
  1453. /package/{types/lodash → lodash}/_getTag.d.ts +0 -0
  1454. /package/{types/lodash → lodash}/_getValue.d.ts +0 -0
  1455. /package/{types/lodash → lodash}/_getView.d.ts +0 -0
  1456. /package/{types/lodash → lodash}/_getWrapDetails.d.ts +0 -0
  1457. /package/{types/lodash → lodash}/_hasPath.d.ts +0 -0
  1458. /package/{types/lodash → lodash}/_hasUnicode.d.ts +0 -0
  1459. /package/{types/lodash → lodash}/_hasUnicodeWord.d.ts +0 -0
  1460. /package/{types/lodash → lodash}/_hashClear.d.ts +0 -0
  1461. /package/{types/lodash → lodash}/_hashDelete.d.ts +0 -0
  1462. /package/{types/lodash → lodash}/_hashGet.d.ts +0 -0
  1463. /package/{types/lodash → lodash}/_hashHas.d.ts +0 -0
  1464. /package/{types/lodash → lodash}/_hashSet.d.ts +0 -0
  1465. /package/{types/lodash → lodash}/_initCloneArray.d.ts +0 -0
  1466. /package/{types/lodash → lodash}/_initCloneByTag.d.ts +0 -0
  1467. /package/{types/lodash → lodash}/_initCloneObject.d.ts +0 -0
  1468. /package/{types/lodash → lodash}/_insertWrapDetails.d.ts +0 -0
  1469. /package/{types/lodash → lodash}/_isFlattenable.d.ts +0 -0
  1470. /package/{types/lodash → lodash}/_isIndex.d.ts +0 -0
  1471. /package/{types/lodash → lodash}/_isIterateeCall.d.ts +0 -0
  1472. /package/{types/lodash → lodash}/_isKey.d.ts +0 -0
  1473. /package/{types/lodash → lodash}/_isKeyable.d.ts +0 -0
  1474. /package/{types/lodash → lodash}/_isLaziable.d.ts +0 -0
  1475. /package/{types/lodash → lodash}/_isMaskable.d.ts +0 -0
  1476. /package/{types/lodash → lodash}/_isMasked.d.ts +0 -0
  1477. /package/{types/lodash → lodash}/_isPrototype.d.ts +0 -0
  1478. /package/{types/lodash → lodash}/_isStrictComparable.d.ts +0 -0
  1479. /package/{types/lodash → lodash}/_iteratorToArray.d.ts +0 -0
  1480. /package/{types/lodash → lodash}/_lazyClone.d.ts +0 -0
  1481. /package/{types/lodash → lodash}/_lazyReverse.d.ts +0 -0
  1482. /package/{types/lodash → lodash}/_lazyValue.d.ts +0 -0
  1483. /package/{types/lodash → lodash}/_listCacheClear.d.ts +0 -0
  1484. /package/{types/lodash → lodash}/_listCacheDelete.d.ts +0 -0
  1485. /package/{types/lodash → lodash}/_listCacheGet.d.ts +0 -0
  1486. /package/{types/lodash → lodash}/_listCacheHas.d.ts +0 -0
  1487. /package/{types/lodash → lodash}/_listCacheSet.d.ts +0 -0
  1488. /package/{types/lodash → lodash}/_mapCacheClear.d.ts +0 -0
  1489. /package/{types/lodash → lodash}/_mapCacheDelete.d.ts +0 -0
  1490. /package/{types/lodash → lodash}/_mapCacheGet.d.ts +0 -0
  1491. /package/{types/lodash → lodash}/_mapCacheHas.d.ts +0 -0
  1492. /package/{types/lodash → lodash}/_mapCacheSet.d.ts +0 -0
  1493. /package/{types/lodash → lodash}/_mapToArray.d.ts +0 -0
  1494. /package/{types/lodash → lodash}/_matchesStrictComparable.d.ts +0 -0
  1495. /package/{types/lodash → lodash}/_memoizeCapped.d.ts +0 -0
  1496. /package/{types/lodash → lodash}/_mergeData.d.ts +0 -0
  1497. /package/{types/lodash → lodash}/_metaMap.d.ts +0 -0
  1498. /package/{types/lodash → lodash}/_nativeCreate.d.ts +0 -0
  1499. /package/{types/lodash → lodash}/_nativeKeys.d.ts +0 -0
  1500. /package/{types/lodash → lodash}/_nativeKeysIn.d.ts +0 -0
  1501. /package/{types/lodash → lodash}/_nodeUtil.d.ts +0 -0
  1502. /package/{types/lodash → lodash}/_objectToString.d.ts +0 -0
  1503. /package/{types/lodash → lodash}/_overArg.d.ts +0 -0
  1504. /package/{types/lodash → lodash}/_overRest.d.ts +0 -0
  1505. /package/{types/lodash → lodash}/_parent.d.ts +0 -0
  1506. /package/{types/lodash → lodash}/_reEscape.d.ts +0 -0
  1507. /package/{types/lodash → lodash}/_reEvaluate.d.ts +0 -0
  1508. /package/{types/lodash → lodash}/_reInterpolate.d.ts +0 -0
  1509. /package/{types/lodash → lodash}/_realNames.d.ts +0 -0
  1510. /package/{types/lodash → lodash}/_reorder.d.ts +0 -0
  1511. /package/{types/lodash → lodash}/_replaceHolders.d.ts +0 -0
  1512. /package/{types/lodash → lodash}/_root.d.ts +0 -0
  1513. /package/{types/lodash → lodash}/_safeGet.d.ts +0 -0
  1514. /package/{types/lodash → lodash}/_setCacheAdd.d.ts +0 -0
  1515. /package/{types/lodash → lodash}/_setCacheHas.d.ts +0 -0
  1516. /package/{types/lodash → lodash}/_setData.d.ts +0 -0
  1517. /package/{types/lodash → lodash}/_setToArray.d.ts +0 -0
  1518. /package/{types/lodash → lodash}/_setToPairs.d.ts +0 -0
  1519. /package/{types/lodash → lodash}/_setToString.d.ts +0 -0
  1520. /package/{types/lodash → lodash}/_setWrapToString.d.ts +0 -0
  1521. /package/{types/lodash → lodash}/_shortOut.d.ts +0 -0
  1522. /package/{types/lodash → lodash}/_shuffleSelf.d.ts +0 -0
  1523. /package/{types/lodash → lodash}/_stackClear.d.ts +0 -0
  1524. /package/{types/lodash → lodash}/_stackDelete.d.ts +0 -0
  1525. /package/{types/lodash → lodash}/_stackGet.d.ts +0 -0
  1526. /package/{types/lodash → lodash}/_stackHas.d.ts +0 -0
  1527. /package/{types/lodash → lodash}/_stackSet.d.ts +0 -0
  1528. /package/{types/lodash → lodash}/_strictIndexOf.d.ts +0 -0
  1529. /package/{types/lodash → lodash}/_strictLastIndexOf.d.ts +0 -0
  1530. /package/{types/lodash → lodash}/_stringSize.d.ts +0 -0
  1531. /package/{types/lodash → lodash}/_stringToArray.d.ts +0 -0
  1532. /package/{types/lodash → lodash}/_stringToPath.d.ts +0 -0
  1533. /package/{types/lodash → lodash}/_toKey.d.ts +0 -0
  1534. /package/{types/lodash → lodash}/_toSource.d.ts +0 -0
  1535. /package/{types/lodash → lodash}/_trimmedEndIndex.d.ts +0 -0
  1536. /package/{types/lodash → lodash}/_unescapeHtmlChar.d.ts +0 -0
  1537. /package/{types/lodash → lodash}/_unicodeSize.d.ts +0 -0
  1538. /package/{types/lodash → lodash}/_unicodeToArray.d.ts +0 -0
  1539. /package/{types/lodash → lodash}/_unicodeWords.d.ts +0 -0
  1540. /package/{types/lodash → lodash}/_updateWrapDetails.d.ts +0 -0
  1541. /package/{types/lodash → lodash}/_wrapperClone.d.ts +0 -0
  1542. /package/{types/lodash → lodash}/add.d.ts +0 -0
  1543. /package/{types/lodash → lodash}/after.d.ts +0 -0
  1544. /package/{types/lodash → lodash}/array.d.ts +0 -0
  1545. /package/{types/lodash → lodash}/array.default.d.ts +0 -0
  1546. /package/{types/lodash → lodash}/ary.d.ts +0 -0
  1547. /package/{types/lodash → lodash}/assign.d.ts +0 -0
  1548. /package/{types/lodash → lodash}/assignIn.d.ts +0 -0
  1549. /package/{types/lodash → lodash}/assignInWith.d.ts +0 -0
  1550. /package/{types/lodash → lodash}/assignWith.d.ts +0 -0
  1551. /package/{types/lodash → lodash}/at.d.ts +0 -0
  1552. /package/{types/lodash → lodash}/attempt.d.ts +0 -0
  1553. /package/{types/lodash → lodash}/before.d.ts +0 -0
  1554. /package/{types/lodash → lodash}/bind.d.ts +0 -0
  1555. /package/{types/lodash → lodash}/bindAll.d.ts +0 -0
  1556. /package/{types/lodash → lodash}/bindKey.d.ts +0 -0
  1557. /package/{types/lodash → lodash}/camelCase.d.ts +0 -0
  1558. /package/{types/lodash → lodash}/capitalize.d.ts +0 -0
  1559. /package/{types/lodash → lodash}/castArray.d.ts +0 -0
  1560. /package/{types/lodash → lodash}/ceil.d.ts +0 -0
  1561. /package/{types/lodash → lodash}/chain.d.ts +0 -0
  1562. /package/{types/lodash → lodash}/chunk.d.ts +0 -0
  1563. /package/{types/lodash → lodash}/clamp.d.ts +0 -0
  1564. /package/{types/lodash → lodash}/clone.d.ts +0 -0
  1565. /package/{types/lodash → lodash}/cloneDeep.d.ts +0 -0
  1566. /package/{types/lodash → lodash}/cloneDeepWith.d.ts +0 -0
  1567. /package/{types/lodash → lodash}/cloneWith.d.ts +0 -0
  1568. /package/{types/lodash → lodash}/collection.d.ts +0 -0
  1569. /package/{types/lodash → lodash}/collection.default.d.ts +0 -0
  1570. /package/{types/lodash → lodash}/commit.d.ts +0 -0
  1571. /package/{types/lodash → lodash}/compact.d.ts +0 -0
  1572. /package/{types/lodash → lodash}/concat.d.ts +0 -0
  1573. /package/{types/lodash → lodash}/cond.d.ts +0 -0
  1574. /package/{types/lodash → lodash}/conforms.d.ts +0 -0
  1575. /package/{types/lodash → lodash}/conformsTo.d.ts +0 -0
  1576. /package/{types/lodash → lodash}/constant.d.ts +0 -0
  1577. /package/{types/lodash → lodash}/countBy.d.ts +0 -0
  1578. /package/{types/lodash → lodash}/create.d.ts +0 -0
  1579. /package/{types/lodash → lodash}/curry.d.ts +0 -0
  1580. /package/{types/lodash → lodash}/curryRight.d.ts +0 -0
  1581. /package/{types/lodash → lodash}/date.d.ts +0 -0
  1582. /package/{types/lodash → lodash}/date.default.d.ts +0 -0
  1583. /package/{types/lodash → lodash}/debounce.d.ts +0 -0
  1584. /package/{types/lodash → lodash}/deburr.d.ts +0 -0
  1585. /package/{types/lodash → lodash}/defaultTo.d.ts +0 -0
  1586. /package/{types/lodash → lodash}/defaults.d.ts +0 -0
  1587. /package/{types/lodash → lodash}/defaultsDeep.d.ts +0 -0
  1588. /package/{types/lodash → lodash}/defer.d.ts +0 -0
  1589. /package/{types/lodash → lodash}/delay.d.ts +0 -0
  1590. /package/{types/lodash → lodash}/difference.d.ts +0 -0
  1591. /package/{types/lodash → lodash}/differenceBy.d.ts +0 -0
  1592. /package/{types/lodash → lodash}/differenceWith.d.ts +0 -0
  1593. /package/{types/lodash → lodash}/divide.d.ts +0 -0
  1594. /package/{types/lodash → lodash}/drop.d.ts +0 -0
  1595. /package/{types/lodash → lodash}/dropRight.d.ts +0 -0
  1596. /package/{types/lodash → lodash}/dropRightWhile.d.ts +0 -0
  1597. /package/{types/lodash → lodash}/dropWhile.d.ts +0 -0
  1598. /package/{types/lodash → lodash}/each.d.ts +0 -0
  1599. /package/{types/lodash → lodash}/eachRight.d.ts +0 -0
  1600. /package/{types/lodash → lodash}/endsWith.d.ts +0 -0
  1601. /package/{types/lodash → lodash}/entries.d.ts +0 -0
  1602. /package/{types/lodash → lodash}/entriesIn.d.ts +0 -0
  1603. /package/{types/lodash → lodash}/eq.d.ts +0 -0
  1604. /package/{types/lodash → lodash}/escape.d.ts +0 -0
  1605. /package/{types/lodash → lodash}/escapeRegExp.d.ts +0 -0
  1606. /package/{types/lodash → lodash}/every.d.ts +0 -0
  1607. /package/{types/lodash → lodash}/extend.d.ts +0 -0
  1608. /package/{types/lodash → lodash}/extendWith.d.ts +0 -0
  1609. /package/{types/lodash → lodash}/fill.d.ts +0 -0
  1610. /package/{types/lodash → lodash}/filter.d.ts +0 -0
  1611. /package/{types/lodash → lodash}/find.d.ts +0 -0
  1612. /package/{types/lodash → lodash}/findIndex.d.ts +0 -0
  1613. /package/{types/lodash → lodash}/findKey.d.ts +0 -0
  1614. /package/{types/lodash → lodash}/findLast.d.ts +0 -0
  1615. /package/{types/lodash → lodash}/findLastIndex.d.ts +0 -0
  1616. /package/{types/lodash → lodash}/findLastKey.d.ts +0 -0
  1617. /package/{types/lodash → lodash}/first.d.ts +0 -0
  1618. /package/{types/lodash → lodash}/flatMap.d.ts +0 -0
  1619. /package/{types/lodash → lodash}/flatMapDeep.d.ts +0 -0
  1620. /package/{types/lodash → lodash}/flatMapDepth.d.ts +0 -0
  1621. /package/{types/lodash → lodash}/flatten.d.ts +0 -0
  1622. /package/{types/lodash → lodash}/flattenDeep.d.ts +0 -0
  1623. /package/{types/lodash → lodash}/flattenDepth.d.ts +0 -0
  1624. /package/{types/lodash → lodash}/flip.d.ts +0 -0
  1625. /package/{types/lodash → lodash}/floor.d.ts +0 -0
  1626. /package/{types/lodash → lodash}/flow.d.ts +0 -0
  1627. /package/{types/lodash → lodash}/flowRight.d.ts +0 -0
  1628. /package/{types/lodash → lodash}/forEach.d.ts +0 -0
  1629. /package/{types/lodash → lodash}/forEachRight.d.ts +0 -0
  1630. /package/{types/lodash → lodash}/forIn.d.ts +0 -0
  1631. /package/{types/lodash → lodash}/forInRight.d.ts +0 -0
  1632. /package/{types/lodash → lodash}/forOwn.d.ts +0 -0
  1633. /package/{types/lodash → lodash}/forOwnRight.d.ts +0 -0
  1634. /package/{types/lodash → lodash}/fromPairs.d.ts +0 -0
  1635. /package/{types/lodash → lodash}/function.d.ts +0 -0
  1636. /package/{types/lodash → lodash}/function.default.d.ts +0 -0
  1637. /package/{types/lodash → lodash}/functions.d.ts +0 -0
  1638. /package/{types/lodash → lodash}/functionsIn.d.ts +0 -0
  1639. /package/{types/lodash → lodash}/get.d.ts +0 -0
  1640. /package/{types/lodash → lodash}/groupBy.d.ts +0 -0
  1641. /package/{types/lodash → lodash}/gt.d.ts +0 -0
  1642. /package/{types/lodash → lodash}/gte.d.ts +0 -0
  1643. /package/{types/lodash → lodash}/has.d.ts +0 -0
  1644. /package/{types/lodash → lodash}/hasIn.d.ts +0 -0
  1645. /package/{types/lodash → lodash}/head.d.ts +0 -0
  1646. /package/{types/lodash → lodash}/identity.d.ts +0 -0
  1647. /package/{types/lodash → lodash}/inRange.d.ts +0 -0
  1648. /package/{types/lodash → lodash}/includes.d.ts +0 -0
  1649. /package/{types/lodash → lodash}/index.d.ts +0 -0
  1650. /package/{types/lodash → lodash}/indexOf.d.ts +0 -0
  1651. /package/{types/lodash → lodash}/initial.d.ts +0 -0
  1652. /package/{types/lodash → lodash}/intersection.d.ts +0 -0
  1653. /package/{types/lodash → lodash}/intersectionBy.d.ts +0 -0
  1654. /package/{types/lodash → lodash}/intersectionWith.d.ts +0 -0
  1655. /package/{types/lodash → lodash}/invert.d.ts +0 -0
  1656. /package/{types/lodash → lodash}/invertBy.d.ts +0 -0
  1657. /package/{types/lodash → lodash}/invoke.d.ts +0 -0
  1658. /package/{types/lodash → lodash}/invokeMap.d.ts +0 -0
  1659. /package/{types/lodash → lodash}/isArguments.d.ts +0 -0
  1660. /package/{types/lodash → lodash}/isArray.d.ts +0 -0
  1661. /package/{types/lodash → lodash}/isArrayBuffer.d.ts +0 -0
  1662. /package/{types/lodash → lodash}/isArrayLike.d.ts +0 -0
  1663. /package/{types/lodash → lodash}/isArrayLikeObject.d.ts +0 -0
  1664. /package/{types/lodash → lodash}/isBoolean.d.ts +0 -0
  1665. /package/{types/lodash → lodash}/isBuffer.d.ts +0 -0
  1666. /package/{types/lodash → lodash}/isDate.d.ts +0 -0
  1667. /package/{types/lodash → lodash}/isElement.d.ts +0 -0
  1668. /package/{types/lodash → lodash}/isEmpty.d.ts +0 -0
  1669. /package/{types/lodash → lodash}/isEqual.d.ts +0 -0
  1670. /package/{types/lodash → lodash}/isEqualWith.d.ts +0 -0
  1671. /package/{types/lodash → lodash}/isError.d.ts +0 -0
  1672. /package/{types/lodash → lodash}/isFinite.d.ts +0 -0
  1673. /package/{types/lodash → lodash}/isFunction.d.ts +0 -0
  1674. /package/{types/lodash → lodash}/isInteger.d.ts +0 -0
  1675. /package/{types/lodash → lodash}/isLength.d.ts +0 -0
  1676. /package/{types/lodash → lodash}/isMap.d.ts +0 -0
  1677. /package/{types/lodash → lodash}/isMatch.d.ts +0 -0
  1678. /package/{types/lodash → lodash}/isMatchWith.d.ts +0 -0
  1679. /package/{types/lodash → lodash}/isNaN.d.ts +0 -0
  1680. /package/{types/lodash → lodash}/isNative.d.ts +0 -0
  1681. /package/{types/lodash → lodash}/isNil.d.ts +0 -0
  1682. /package/{types/lodash → lodash}/isNull.d.ts +0 -0
  1683. /package/{types/lodash → lodash}/isNumber.d.ts +0 -0
  1684. /package/{types/lodash → lodash}/isObject.d.ts +0 -0
  1685. /package/{types/lodash → lodash}/isObjectLike.d.ts +0 -0
  1686. /package/{types/lodash → lodash}/isPlainObject.d.ts +0 -0
  1687. /package/{types/lodash → lodash}/isPromise.d.ts +0 -0
  1688. /package/{types/lodash → lodash}/isRegExp.d.ts +0 -0
  1689. /package/{types/lodash → lodash}/isSafeInteger.d.ts +0 -0
  1690. /package/{types/lodash → lodash}/isSet.d.ts +0 -0
  1691. /package/{types/lodash → lodash}/isString.d.ts +0 -0
  1692. /package/{types/lodash → lodash}/isSymbol.d.ts +0 -0
  1693. /package/{types/lodash → lodash}/isTypedArray.d.ts +0 -0
  1694. /package/{types/lodash → lodash}/isUndefined.d.ts +0 -0
  1695. /package/{types/lodash → lodash}/isWeakMap.d.ts +0 -0
  1696. /package/{types/lodash → lodash}/isWeakSet.d.ts +0 -0
  1697. /package/{types/lodash → lodash}/iteratee.d.ts +0 -0
  1698. /package/{types/lodash → lodash}/join.d.ts +0 -0
  1699. /package/{types/lodash → lodash}/kebabCase.d.ts +0 -0
  1700. /package/{types/lodash → lodash}/keyBy.d.ts +0 -0
  1701. /package/{types/lodash → lodash}/keys.d.ts +0 -0
  1702. /package/{types/lodash → lodash}/keysIn.d.ts +0 -0
  1703. /package/{types/lodash → lodash}/lang.d.ts +0 -0
  1704. /package/{types/lodash → lodash}/lang.default.d.ts +0 -0
  1705. /package/{types/lodash → lodash}/last.d.ts +0 -0
  1706. /package/{types/lodash → lodash}/lastIndexOf.d.ts +0 -0
  1707. /package/{types/lodash → lodash}/lodash.d.ts +0 -0
  1708. /package/{types/lodash → lodash}/lodash.default.d.ts +0 -0
  1709. /package/{types/lodash → lodash}/lowerCase.d.ts +0 -0
  1710. /package/{types/lodash → lodash}/lowerFirst.d.ts +0 -0
  1711. /package/{types/lodash → lodash}/lt.d.ts +0 -0
  1712. /package/{types/lodash → lodash}/lte.d.ts +0 -0
  1713. /package/{types/lodash → lodash}/map.d.ts +0 -0
  1714. /package/{types/lodash → lodash}/mapKeys.d.ts +0 -0
  1715. /package/{types/lodash → lodash}/mapValues.d.ts +0 -0
  1716. /package/{types/lodash → lodash}/matches.d.ts +0 -0
  1717. /package/{types/lodash → lodash}/matchesProperty.d.ts +0 -0
  1718. /package/{types/lodash → lodash}/math.d.ts +0 -0
  1719. /package/{types/lodash → lodash}/math.default.d.ts +0 -0
  1720. /package/{types/lodash → lodash}/max.d.ts +0 -0
  1721. /package/{types/lodash → lodash}/maxBy.d.ts +0 -0
  1722. /package/{types/lodash → lodash}/mean.d.ts +0 -0
  1723. /package/{types/lodash → lodash}/meanBy.d.ts +0 -0
  1724. /package/{types/lodash → lodash}/memoize.d.ts +0 -0
  1725. /package/{types/lodash → lodash}/merge.d.ts +0 -0
  1726. /package/{types/lodash → lodash}/mergeWith.d.ts +0 -0
  1727. /package/{types/lodash → lodash}/method.d.ts +0 -0
  1728. /package/{types/lodash → lodash}/methodOf.d.ts +0 -0
  1729. /package/{types/lodash → lodash}/min.d.ts +0 -0
  1730. /package/{types/lodash → lodash}/minBy.d.ts +0 -0
  1731. /package/{types/lodash → lodash}/mixin.d.ts +0 -0
  1732. /package/{types/lodash → lodash}/multiply.d.ts +0 -0
  1733. /package/{types/lodash → lodash}/negate.d.ts +0 -0
  1734. /package/{types/lodash → lodash}/next.d.ts +0 -0
  1735. /package/{types/lodash → lodash}/noop.d.ts +0 -0
  1736. /package/{types/lodash → lodash}/now.d.ts +0 -0
  1737. /package/{types/lodash → lodash}/nth.d.ts +0 -0
  1738. /package/{types/lodash → lodash}/nthArg.d.ts +0 -0
  1739. /package/{types/lodash → lodash}/number.d.ts +0 -0
  1740. /package/{types/lodash → lodash}/number.default.d.ts +0 -0
  1741. /package/{types/lodash → lodash}/object.d.ts +0 -0
  1742. /package/{types/lodash → lodash}/object.default.d.ts +0 -0
  1743. /package/{types/lodash → lodash}/omit.d.ts +0 -0
  1744. /package/{types/lodash → lodash}/omitBy.d.ts +0 -0
  1745. /package/{types/lodash → lodash}/once.d.ts +0 -0
  1746. /package/{types/lodash → lodash}/orderBy.d.ts +0 -0
  1747. /package/{types/lodash → lodash}/over.d.ts +0 -0
  1748. /package/{types/lodash → lodash}/overArgs.d.ts +0 -0
  1749. /package/{types/lodash → lodash}/overEvery.d.ts +0 -0
  1750. /package/{types/lodash → lodash}/overSome.d.ts +0 -0
  1751. /package/{types/lodash → lodash}/pad.d.ts +0 -0
  1752. /package/{types/lodash → lodash}/padEnd.d.ts +0 -0
  1753. /package/{types/lodash → lodash}/padStart.d.ts +0 -0
  1754. /package/{types/lodash → lodash}/parseInt.d.ts +0 -0
  1755. /package/{types/lodash → lodash}/partial.d.ts +0 -0
  1756. /package/{types/lodash → lodash}/partialRight.d.ts +0 -0
  1757. /package/{types/lodash → lodash}/partition.d.ts +0 -0
  1758. /package/{types/lodash → lodash}/pick.d.ts +0 -0
  1759. /package/{types/lodash → lodash}/pickBy.d.ts +0 -0
  1760. /package/{types/lodash → lodash}/plant.d.ts +0 -0
  1761. /package/{types/lodash → lodash}/property.d.ts +0 -0
  1762. /package/{types/lodash → lodash}/propertyOf.d.ts +0 -0
  1763. /package/{types/lodash → lodash}/pull.d.ts +0 -0
  1764. /package/{types/lodash → lodash}/pullAll.d.ts +0 -0
  1765. /package/{types/lodash → lodash}/pullAllBy.d.ts +0 -0
  1766. /package/{types/lodash → lodash}/pullAllWith.d.ts +0 -0
  1767. /package/{types/lodash → lodash}/pullAt.d.ts +0 -0
  1768. /package/{types/lodash → lodash}/random.d.ts +0 -0
  1769. /package/{types/lodash → lodash}/range.d.ts +0 -0
  1770. /package/{types/lodash → lodash}/rangeRight.d.ts +0 -0
  1771. /package/{types/lodash → lodash}/rearg.d.ts +0 -0
  1772. /package/{types/lodash → lodash}/reduce.d.ts +0 -0
  1773. /package/{types/lodash → lodash}/reduceRight.d.ts +0 -0
  1774. /package/{types/lodash → lodash}/reject.d.ts +0 -0
  1775. /package/{types/lodash → lodash}/remove.d.ts +0 -0
  1776. /package/{types/lodash → lodash}/repeat.d.ts +0 -0
  1777. /package/{types/lodash → lodash}/replace.d.ts +0 -0
  1778. /package/{types/lodash → lodash}/rest.d.ts +0 -0
  1779. /package/{types/lodash → lodash}/result.d.ts +0 -0
  1780. /package/{types/lodash → lodash}/reverse.d.ts +0 -0
  1781. /package/{types/lodash → lodash}/round.d.ts +0 -0
  1782. /package/{types/lodash → lodash}/sample.d.ts +0 -0
  1783. /package/{types/lodash → lodash}/sampleSize.d.ts +0 -0
  1784. /package/{types/lodash → lodash}/seq.d.ts +0 -0
  1785. /package/{types/lodash → lodash}/seq.default.d.ts +0 -0
  1786. /package/{types/lodash → lodash}/set.d.ts +0 -0
  1787. /package/{types/lodash → lodash}/setWith.d.ts +0 -0
  1788. /package/{types/lodash → lodash}/shuffle.d.ts +0 -0
  1789. /package/{types/lodash → lodash}/size.d.ts +0 -0
  1790. /package/{types/lodash → lodash}/slice.d.ts +0 -0
  1791. /package/{types/lodash → lodash}/snakeCase.d.ts +0 -0
  1792. /package/{types/lodash → lodash}/some.d.ts +0 -0
  1793. /package/{types/lodash → lodash}/sortBy.d.ts +0 -0
  1794. /package/{types/lodash → lodash}/sortedIndex.d.ts +0 -0
  1795. /package/{types/lodash → lodash}/sortedIndexBy.d.ts +0 -0
  1796. /package/{types/lodash → lodash}/sortedIndexOf.d.ts +0 -0
  1797. /package/{types/lodash → lodash}/sortedLastIndex.d.ts +0 -0
  1798. /package/{types/lodash → lodash}/sortedLastIndexBy.d.ts +0 -0
  1799. /package/{types/lodash → lodash}/sortedLastIndexOf.d.ts +0 -0
  1800. /package/{types/lodash → lodash}/sortedUniq.d.ts +0 -0
  1801. /package/{types/lodash → lodash}/sortedUniqBy.d.ts +0 -0
  1802. /package/{types/lodash → lodash}/split.d.ts +0 -0
  1803. /package/{types/lodash → lodash}/spread.d.ts +0 -0
  1804. /package/{types/lodash → lodash}/startCase.d.ts +0 -0
  1805. /package/{types/lodash → lodash}/startsWith.d.ts +0 -0
  1806. /package/{types/lodash → lodash}/string.d.ts +0 -0
  1807. /package/{types/lodash → lodash}/string.default.d.ts +0 -0
  1808. /package/{types/lodash → lodash}/stubArray.d.ts +0 -0
  1809. /package/{types/lodash → lodash}/stubFalse.d.ts +0 -0
  1810. /package/{types/lodash → lodash}/stubObject.d.ts +0 -0
  1811. /package/{types/lodash → lodash}/stubString.d.ts +0 -0
  1812. /package/{types/lodash → lodash}/stubTrue.d.ts +0 -0
  1813. /package/{types/lodash → lodash}/subtract.d.ts +0 -0
  1814. /package/{types/lodash → lodash}/sum.d.ts +0 -0
  1815. /package/{types/lodash → lodash}/sumBy.d.ts +0 -0
  1816. /package/{types/lodash → lodash}/tail.d.ts +0 -0
  1817. /package/{types/lodash → lodash}/take.d.ts +0 -0
  1818. /package/{types/lodash → lodash}/takeRight.d.ts +0 -0
  1819. /package/{types/lodash → lodash}/takeRightWhile.d.ts +0 -0
  1820. /package/{types/lodash → lodash}/takeWhile.d.ts +0 -0
  1821. /package/{types/lodash → lodash}/tap.d.ts +0 -0
  1822. /package/{types/lodash → lodash}/template.d.ts +0 -0
  1823. /package/{types/lodash → lodash}/templateSettings.d.ts +0 -0
  1824. /package/{types/lodash → lodash}/throttle.d.ts +0 -0
  1825. /package/{types/lodash → lodash}/thru.d.ts +0 -0
  1826. /package/{types/lodash → lodash}/times.d.ts +0 -0
  1827. /package/{types/lodash → lodash}/toArray.d.ts +0 -0
  1828. /package/{types/lodash → lodash}/toFinite.d.ts +0 -0
  1829. /package/{types/lodash → lodash}/toInteger.d.ts +0 -0
  1830. /package/{types/lodash → lodash}/toIterator.d.ts +0 -0
  1831. /package/{types/lodash → lodash}/toJSON.d.ts +0 -0
  1832. /package/{types/lodash → lodash}/toLength.d.ts +0 -0
  1833. /package/{types/lodash → lodash}/toLower.d.ts +0 -0
  1834. /package/{types/lodash → lodash}/toNumber.d.ts +0 -0
  1835. /package/{types/lodash → lodash}/toPairs.d.ts +0 -0
  1836. /package/{types/lodash → lodash}/toPairsIn.d.ts +0 -0
  1837. /package/{types/lodash → lodash}/toPath.d.ts +0 -0
  1838. /package/{types/lodash → lodash}/toPlainObject.d.ts +0 -0
  1839. /package/{types/lodash → lodash}/toSafeInteger.d.ts +0 -0
  1840. /package/{types/lodash → lodash}/toString.d.ts +0 -0
  1841. /package/{types/lodash → lodash}/toUpper.d.ts +0 -0
  1842. /package/{types/lodash → lodash}/transform.d.ts +0 -0
  1843. /package/{types/lodash → lodash}/trim.d.ts +0 -0
  1844. /package/{types/lodash → lodash}/trimEnd.d.ts +0 -0
  1845. /package/{types/lodash → lodash}/trimStart.d.ts +0 -0
  1846. /package/{types/lodash → lodash}/truncate.d.ts +0 -0
  1847. /package/{types/lodash → lodash}/unary.d.ts +0 -0
  1848. /package/{types/lodash → lodash}/unescape.d.ts +0 -0
  1849. /package/{types/lodash → lodash}/union.d.ts +0 -0
  1850. /package/{types/lodash → lodash}/unionBy.d.ts +0 -0
  1851. /package/{types/lodash → lodash}/unionWith.d.ts +0 -0
  1852. /package/{types/lodash → lodash}/uniq.d.ts +0 -0
  1853. /package/{types/lodash → lodash}/uniqBy.d.ts +0 -0
  1854. /package/{types/lodash → lodash}/uniqWith.d.ts +0 -0
  1855. /package/{types/lodash → lodash}/uniqueId.d.ts +0 -0
  1856. /package/{types/lodash → lodash}/unset.d.ts +0 -0
  1857. /package/{types/lodash → lodash}/unzip.d.ts +0 -0
  1858. /package/{types/lodash → lodash}/unzipWith.d.ts +0 -0
  1859. /package/{types/lodash → lodash}/update.d.ts +0 -0
  1860. /package/{types/lodash → lodash}/updateWith.d.ts +0 -0
  1861. /package/{types/lodash → lodash}/upperCase.d.ts +0 -0
  1862. /package/{types/lodash → lodash}/upperFirst.d.ts +0 -0
  1863. /package/{types/lodash → lodash}/util.d.ts +0 -0
  1864. /package/{types/lodash → lodash}/util.default.d.ts +0 -0
  1865. /package/{types/lodash → lodash}/value.d.ts +0 -0
  1866. /package/{types/lodash → lodash}/valueOf.d.ts +0 -0
  1867. /package/{types/lodash → lodash}/values.d.ts +0 -0
  1868. /package/{types/lodash → lodash}/valuesIn.d.ts +0 -0
  1869. /package/{types/lodash → lodash}/without.d.ts +0 -0
  1870. /package/{types/lodash → lodash}/words.d.ts +0 -0
  1871. /package/{types/lodash → lodash}/wrap.d.ts +0 -0
  1872. /package/{types/lodash → lodash}/wrapperAt.d.ts +0 -0
  1873. /package/{types/lodash → lodash}/wrapperChain.d.ts +0 -0
  1874. /package/{types/lodash → lodash}/wrapperLodash.d.ts +0 -0
  1875. /package/{types/lodash → lodash}/wrapperReverse.d.ts +0 -0
  1876. /package/{types/lodash → lodash}/wrapperValue.d.ts +0 -0
  1877. /package/{types/lodash → lodash}/xor.d.ts +0 -0
  1878. /package/{types/lodash → lodash}/xorBy.d.ts +0 -0
  1879. /package/{types/lodash → lodash}/xorWith.d.ts +0 -0
  1880. /package/{types/lodash → lodash}/zip.d.ts +0 -0
  1881. /package/{types/lodash → lodash}/zipObject.d.ts +0 -0
  1882. /package/{types/lodash → lodash}/zipObjectDeep.d.ts +0 -0
  1883. /package/{types/lodash → lodash}/zipWith.d.ts +0 -0
  1884. /package/{types/math → math}/index.d.ts +0 -0
  1885. /package/{types/md5 → md5}/index.d.ts +0 -0
  1886. /package/{types/mock → mock}/MockWebSocket.d.ts +0 -0
  1887. /package/{types/mock → mock}/MockXMLHttpRequest.d.ts +0 -0
  1888. /package/{types/mock → mock}/index.d.ts +0 -0
  1889. /package/{types/normalize-wheel → normalize-wheel}/ExecutionEnvironment.d.ts +0 -0
  1890. /package/{types/normalize-wheel → normalize-wheel}/UserAgent_DEPRECATED.d.ts +0 -0
  1891. /package/{types/normalize-wheel → normalize-wheel}/index.d.ts +0 -0
  1892. /package/{types/normalize-wheel → normalize-wheel}/isEventSupported.d.ts +0 -0
  1893. /package/{types/number-to-chinese → number-to-chinese}/index.d.ts +0 -0
  1894. /package/{types/nzh → nzh}/cn.d.ts +0 -0
  1895. /package/{types/nzh → nzh}/hk.d.ts +0 -0
  1896. /package/{types/nzh → nzh}/src/autoGet.d.ts +0 -0
  1897. /package/{types/nzh → nzh}/src/index.d.ts +0 -0
  1898. /package/{types/nzh → nzh}/src/langs/cn_b.d.ts +0 -0
  1899. /package/{types/nzh → nzh}/src/langs/cn_s.d.ts +0 -0
  1900. /package/{types/nzh → nzh}/src/langs/hk_b.d.ts +0 -0
  1901. /package/{types/nzh → nzh}/src/langs/hk_s.d.ts +0 -0
  1902. /package/{types/nzh → nzh}/src/utils.d.ts +0 -0
  1903. /package/{types/pinyin → pinyin}/simplified.d.ts +0 -0
  1904. /package/{types/pinyin → pinyin}/src/core.d.ts +0 -0
  1905. /package/{types/pinyin → pinyin}/src/simplified.d.ts +0 -0
  1906. /package/{types/pinyin → pinyin}/src/simplified_dict.d.ts +0 -0
  1907. /package/{types/pinyin → pinyin}/src/traditional.d.ts +0 -0
  1908. /package/{types/pinyin → pinyin}/src/traditional_dict.d.ts +0 -0
  1909. /package/{types/pinyin → pinyin}/traditional.d.ts +0 -0
  1910. /package/{types/query-string → query-string}/splitOnFirst.d.ts +0 -0
  1911. /package/{types/random → random}/address.d.ts +0 -0
  1912. /package/{types/random → random}/constellation.d.ts +0 -0
  1913. /package/{types/random → random}/image.d.ts +0 -0
  1914. /package/{types/random → random}/licensePlate.d.ts +0 -0
  1915. /package/{types/random → random}/name.d.ts +0 -0
  1916. /package/{types/random → random}/number.d.ts +0 -0
  1917. /package/{types/random → random}/text.d.ts +0 -0
  1918. /package/{types/random → random}/time.d.ts +0 -0
  1919. /package/{types/random → random}/web.d.ts +0 -0
  1920. /package/{types/screenfull → screenfull}/index.d.ts +0 -0
  1921. /package/{types/sleep → sleep}/index.d.ts +0 -0
  1922. /package/{types/snapdom → snapdom}/index.d.ts +0 -0
  1923. /package/{types/snapdom → snapdom}/src/api/snapdom.d.ts +0 -0
  1924. /package/{types/snapdom → snapdom}/src/core/capture.d.ts +0 -0
  1925. /package/{types/snapdom → snapdom}/src/core/clone.d.ts +0 -0
  1926. /package/{types/snapdom → snapdom}/src/core/exporters.d.ts +0 -0
  1927. /package/{types/snapdom → snapdom}/src/core/plugins.d.ts +0 -0
  1928. /package/{types/snapdom → snapdom}/src/core/prepare.d.ts +0 -0
  1929. /package/{types/snapdom → snapdom}/src/exporters/download.d.ts +0 -0
  1930. /package/{types/snapdom → snapdom}/src/exporters/toBlob.d.ts +0 -0
  1931. /package/{types/snapdom → snapdom}/src/exporters/toCanvas.d.ts +0 -0
  1932. /package/{types/snapdom → snapdom}/src/exporters/toImg.d.ts +0 -0
  1933. /package/{types/snapdom → snapdom}/src/exporters/toJpg.d.ts +0 -0
  1934. /package/{types/snapdom → snapdom}/src/exporters/toPng.d.ts +0 -0
  1935. /package/{types/snapdom → snapdom}/src/exporters/toSvg.d.ts +0 -0
  1936. /package/{types/snapdom → snapdom}/src/exporters/toWebp.d.ts +0 -0
  1937. /package/{types/snapdom → snapdom}/src/index.d.ts +0 -0
  1938. /package/{types/snapdom → snapdom}/src/modules/CSSVar.d.ts +0 -0
  1939. /package/{types/snapdom → snapdom}/src/modules/background.d.ts +0 -0
  1940. /package/{types/snapdom → snapdom}/src/modules/changeCSS.d.ts +0 -0
  1941. /package/{types/snapdom → snapdom}/src/modules/counter.d.ts +0 -0
  1942. /package/{types/snapdom → snapdom}/src/modules/iconFonts.d.ts +0 -0
  1943. /package/{types/snapdom → snapdom}/src/modules/images.d.ts +0 -0
  1944. /package/{types/snapdom → snapdom}/src/modules/pseudo.d.ts +0 -0
  1945. /package/{types/snapdom → snapdom}/src/modules/rasterize.d.ts +0 -0
  1946. /package/{types/snapdom → snapdom}/src/modules/snapFetch.d.ts +0 -0
  1947. /package/{types/snapdom → snapdom}/src/modules/styles.d.ts +0 -0
  1948. /package/{types/snapdom → snapdom}/src/modules/svgDefs.d.ts +0 -0
  1949. /package/{types/snapdom → snapdom}/src/utils/css.d.ts +0 -0
  1950. /package/{types/snapdom → snapdom}/src/utils/image.d.ts +0 -0
  1951. /package/{types/snapdom → snapdom}/src/utils/prepare.helpers.d.ts +0 -0
  1952. /package/{types/snapdom → snapdom}/src/utils/transforms.helpers.d.ts +0 -0
  1953. /package/{types/string → string}/chars.d.ts +0 -0
  1954. /package/{types/tinycolor → tinycolor}/index.d.ts +0 -0
  1955. /package/{types/tinycolor → tinycolor}/src/css-color-names.d.ts +0 -0
  1956. /package/{types/tinycolor → tinycolor}/src/from-ratio.d.ts +0 -0
  1957. /package/{types/tinycolor → tinycolor}/src/interfaces.d.ts +0 -0
  1958. /package/{types/tinycolor → tinycolor}/src/public_api.d.ts +0 -0
  1959. /package/{types/tinycolor → tinycolor}/src/random.d.ts +0 -0
  1960. /package/{types/tinycolor → tinycolor}/src/umd_api.d.ts +0 -0
  1961. /package/{types/tinycolor → tinycolor}/src/utils.d.ts +0 -0
  1962. /package/{types/tree → tree}/search/index.d.ts +0 -0
  1963. /package/{types/tween → tween}/index.d.ts +0 -0
  1964. /package/{types/tween → tween}/src/easing.d.ts +0 -0
  1965. /package/{types/tween → tween}/src/index.d.ts +0 -0
  1966. /package/{types/tween → tween}/src/tween.d.ts +0 -0
  1967. /package/{types/ui-color → ui-color}/compareColorByRange.d.ts +0 -0
  1968. /package/{types/ui-color → ui-color}/index.d.ts +0 -0
  1969. /package/{types/url-toolkit → url-toolkit}/index.d.ts +0 -0
  1970. /package/{types/validate → validate}/index.d.ts +0 -0
  1971. /package/{types/validate → validate}/src/index.d.ts +0 -0
  1972. /package/{types/validate → validate}/src/interface.d.ts +0 -0
  1973. /package/{types/validate → validate}/src/locale/en-US.d.ts +0 -0
  1974. /package/{types/validate → validate}/src/locale/index.d.ts +0 -0
  1975. /package/{types/validate → validate}/src/locale/zh-CN.d.ts +0 -0
  1976. /package/{types/version → version}/index.d.ts +0 -0
  1977. /package/{types/xlsx → xlsx}/xlsx.d.ts +0 -0
@@ -1,33 +1,28 @@
1
- /* 2026-01-27 10:43:49 */
2
- function o(t, r) {
3
- i(t) && (t = "100%");
4
- const e = n(t);
5
- return t = r === 360 ? t : Math.min(r, Math.max(0, parseFloat(t))), e && (t = parseInt(String(t * r), 10) / 100), Math.abs(t - r) < 1e-6 ? 1 : (r === 360 ? t = (t < 0 ? t % r + r : t % r) / parseFloat(String(r)) : t = t % r / parseFloat(String(r)), t);
1
+ /* 潘启宝 2026-03-24 15:26:16 星期二 */
2
+ //#region utils/tinycolor/src/utils.ts
3
+ function e(e, t) {
4
+ n(e) && (e = "100%");
5
+ let i = r(e);
6
+ return e = t === 360 ? e : Math.min(t, Math.max(0, parseFloat(e))), i && (e = parseInt(String(e * t), 10) / 100), Math.abs(e - t) < 1e-6 ? 1 : (e = t === 360 ? (e < 0 ? e % t + t : e % t) / parseFloat(String(t)) : e % t / parseFloat(String(t)), e);
6
7
  }
7
- function u(t) {
8
- return Math.min(1, Math.max(0, t));
8
+ function t(e) {
9
+ return Math.min(1, Math.max(0, e));
9
10
  }
10
- function i(t) {
11
- return typeof t == "string" && t.indexOf(".") !== -1 && parseFloat(t) === 1;
11
+ function n(e) {
12
+ return typeof e == "string" && e.indexOf(".") !== -1 && parseFloat(e) === 1;
12
13
  }
13
- function n(t) {
14
- return typeof t == "string" && t.indexOf("%") !== -1;
14
+ function r(e) {
15
+ return typeof e == "string" && e.indexOf("%") !== -1;
15
16
  }
16
- function f(t) {
17
- return t = parseFloat(t), (isNaN(t) || t < 0 || t > 1) && (t = 1), t;
17
+ function i(e) {
18
+ return e = parseFloat(e), (isNaN(e) || e < 0 || e > 1) && (e = 1), e;
18
19
  }
19
- function s(t) {
20
- return Number(t) <= 1 ? `${Number(t) * 100}%` : t;
20
+ function a(e) {
21
+ return Number(e) <= 1 ? `${Number(e) * 100}%` : e;
21
22
  }
22
- function p(t) {
23
- return t.length === 1 ? "0" + t : String(t);
23
+ function o(e) {
24
+ return e.length === 1 ? "0" + e : String(e);
24
25
  }
25
- export {
26
- o as bound01,
27
- f as boundAlpha,
28
- u as clamp01,
29
- s as convertToPercentage,
30
- i as isOnePointZero,
31
- n as isPercentage,
32
- p as pad2
33
- };
26
+ //#endregion
27
+ export { e as bound01, i as boundAlpha, t as clamp01, a as convertToPercentage, n as isOnePointZero, r as isPercentage, o as pad2 };
28
+ /* 独立思考,明辨是非 */
@@ -0,0 +1,8 @@
1
+ export default searchTree;
2
+ export function findNodeBy(root: any, key: any, value: any, childrenKey?: string): any;
3
+ export function getChildWithParentBy(root: any, key: any, value: any, childrenKey?: string): null | undefined;
4
+ export function getItemBy(root: any, key: any, value: any, childrenKey?: string, strict?: boolean): any;
5
+ export function getItemByID(root: any, value: any): any;
6
+ export function getLabelFromDictionaryByValue(a: any, value: any, fallback?: boolean): any;
7
+ import searchTree from './search';
8
+ export { searchTree };
package/tree/index.js CHANGED
@@ -1,72 +1,63 @@
1
- /* 2026-01-27 10:43:49 */
2
- import d from "lodash/castArray";
3
- import s from "lodash/isArray.js";
4
- import h from "lodash/isObject.js";
5
- import p from "lodash/isUndefined.js";
6
- import A from "./search/index.js";
7
- function g(e, i, r, n = "children") {
8
- if (s(e) && (e = {
9
- [n]: e
10
- }), !(e && h(e))) return null;
11
- if (i in e && e[i] === r)
12
- return e;
13
- const f = e[n] ?? e.items ?? e.list;
14
- if (s(f))
15
- for (let l of f) {
16
- const t = g(l, i, r, n);
17
- if (t)
18
- return t;
19
- }
20
- return null;
1
+ /* 潘启宝 2026-03-24 15:26:16 星期二 */
2
+ import { isArray as e, isObject as t, isUndefined as n } from "../is/index.js";
3
+ import r from "./search/index.js";
4
+ import i from "lodash/castArray.js";
5
+ //#region utils/tree/index.js
6
+ function a(n, r, i, o = "children") {
7
+ if (e(n) && (n = { [o]: n }), !(n && t(n))) return null;
8
+ if (r in n && n[r] === i) return n;
9
+ let s = n[o] ?? n.items ?? n.list;
10
+ if (e(s)) for (let e of s) {
11
+ let t = a(e, r, i, o);
12
+ if (t) return t;
13
+ }
14
+ return null;
21
15
  }
22
- function a(e, i, r, n = "children", f = !0) {
23
- if (!e) return;
24
- let l = [...d(e)];
25
- e: for (; l.length; ) {
26
- let t = l.shift();
27
- if (!t) continue e;
28
- const c = t[i];
29
- if (!s(t)) {
30
- if (f ? c === r : c == r)
31
- return t;
32
- let u = t[n] ?? t.items ?? t.list;
33
- if (p(u))
34
- continue e;
35
- t = u;
36
- }
37
- l = l.concat(t);
38
- }
16
+ function o(t, r, a, o = "children", s = !0) {
17
+ if (!t) return;
18
+ let c = [...i(t)];
19
+ pqb: for (; c.length;) {
20
+ let t = c.shift();
21
+ if (!t) continue pqb;
22
+ let i = t[r];
23
+ if (!e(t)) {
24
+ if (s ? i === a : i == a) return t;
25
+ let e = t[o] ?? t.items ?? t.list;
26
+ if (n(e)) continue pqb;
27
+ t = e;
28
+ }
29
+ c = c.concat(t);
30
+ }
39
31
  }
40
- function D(e, i) {
41
- return a(e, "id", i);
32
+ function s(e, t) {
33
+ return o(e, "id", t);
42
34
  }
43
- function N(e, i, r = !0) {
44
- let n = a(e, "value", i)?.label;
45
- return !n && r && (n = i), n;
35
+ function c(e, t, n = !0) {
36
+ let r = o(e, "value", t)?.label;
37
+ return n && (r ||= t), r;
46
38
  }
47
- function j(e, i, r, n = "children") {
48
- if (!e) return;
49
- let f = null;
50
- function l(t) {
51
- if (!t) return;
52
- let c = s(t) ? t : t[n] ?? t.items ?? t.list ?? [];
53
- for (let u = 0; u < c.length; u++) {
54
- const m = c[u];
55
- if (m?.[i] === r) {
56
- f = { item: m, parent: t, index: u };
57
- return;
58
- }
59
- l(m);
60
- }
61
- }
62
- return l(e), f;
39
+ function l(t, n, r, i = "children") {
40
+ if (!t) return;
41
+ let a = null;
42
+ function o(t) {
43
+ if (!t) return;
44
+ let s = e(t) ? t : t[i] ?? t.items ?? t.list ?? [];
45
+ for (let e = 0; e < s.length; e++) {
46
+ let i = s[e];
47
+ if (i?.[n] === r) {
48
+ a = {
49
+ item: i,
50
+ parent: t,
51
+ index: e
52
+ };
53
+ return;
54
+ }
55
+ o(i);
56
+ }
57
+ }
58
+ return o(t), a;
63
59
  }
64
- export {
65
- A as default,
66
- g as findNodeBy,
67
- j as getChildWithParentBy,
68
- a as getItemBy,
69
- D as getItemByID,
70
- N as getLabelFromDictionaryByValue,
71
- A as searchTree
72
- };
60
+ var u = r;
61
+ //#endregion
62
+ export { u as default, a as findNodeBy, l as getChildWithParentBy, o as getItemBy, s as getItemByID, c as getLabelFromDictionaryByValue, r as searchTree };
63
+ /* 独立思考,明辨是非 */
@@ -1,108 +1,86 @@
1
- /* 2026-01-27 10:43:49 */
2
- import E from "lodash/isArray";
3
- import B from "lodash/isFunction";
4
- import C from "lodash/isNil";
5
- import K from "lodash/isNumber";
6
- import L from "lodash/isObjectLike";
7
- import j from "lodash/isRegExp";
8
- import f from "lodash/isString";
9
- function k(n, u, m, w) {
10
- return u && n ? { shouldExit: !0, newMatch: !0 } : m && !n ? { shouldExit: !0, newMatch: !1 } : { shouldExit: !1, newMatch: w || n };
1
+ /* 潘启宝 2026-03-24 15:26:16 星期二 */
2
+ import { isArray as e, isFunction as t, isNil as n, isNumber as r, isObjectLike as i, isRegExp as a, isString as o } from "../../is/index.js";
3
+ //#region utils/tree/search/index.ts
4
+ function s(e, t, n, r) {
5
+ return t && e ? {
6
+ shouldExit: !0,
7
+ newMatch: !0
8
+ } : n && !e ? {
9
+ shouldExit: !0,
10
+ newMatch: !1
11
+ } : {
12
+ shouldExit: !1,
13
+ newMatch: r || e
14
+ };
11
15
  }
12
- function P(n, u, m = {}) {
13
- if (C(n) || !E(n)) return null;
14
- if (!L(u)) throw new TypeError("参数 searchCondition 必须是一个对象");
15
- const w = {
16
- strategy: "BFS",
17
- childrenKey: "children",
18
- strict: !1,
19
- fuzzyMatch: !1,
20
- returnAllMatches: !1,
21
- caseSensitive: !1,
22
- allowEmptyString: !1,
23
- matchMode: "AND",
24
- returnTree: !1,
25
- returnTreeMaxDepth: 0,
26
- // 只在 returnTree 为 true 时才生效
27
- ...m
28
- // 用户配置覆盖默认值
29
- }, {
30
- strategy: S,
31
- childrenKey: a,
32
- strict: v,
33
- fuzzyMatch: R,
34
- returnAllMatches: M,
35
- caseSensitive: b,
36
- allowEmptyString: z,
37
- matchMode: T,
38
- returnTree: g,
39
- returnTreeMaxDepth: d
40
- } = w, x = T === "OR", A = T === "AND", y = S === "BFS";
41
- if (!(y || S === "DFS")) throw new Error('配置 strategy 必须是 "BFS" "DFS"');
42
- if (!(x || A)) throw new Error('配置 matchMode 必须是 "AND" 或 "OR"');
43
- if (!f(a)) throw new TypeError("配置 childrenKey 必须是字符串");
44
- if (g) {
45
- if (!M) throw new Error(
46
- "当 returnTree 为 true 时,returnAllMatches 也必须为 true"
47
- );
48
- if (!(K(d) && d > -1)) throw new TypeError("配置 returnTreeMaxDepth 必须是一个非负整数");
49
- }
50
- const h = [...n], F = [], D = Object.entries(u);
51
- if (D.length) {
52
- const N = (r) => {
53
- let s = !1;
54
- for (const [i, c] of D) {
55
- let e = c, t = r[i];
56
- if (b || (f(e) && (e = e.toLowerCase()), f(t) && (t = t.toLowerCase())), e === "" && !z)
57
- continue;
58
- let o = !1;
59
- B(e) ? o = !!e(t, r) : j(e) && f(t) ? o = t ? e.test(t) : !1 : R && f(e) && f(t) ? o = t.includes(e) : o = v ? t === e : t == e;
60
- const l = k(o, x, A, s);
61
- if (l.shouldExit)
62
- return l.newMatch;
63
- s = l.newMatch;
64
- }
65
- return s;
66
- };
67
- if (g) {
68
- const r = (i, c = 1) => {
69
- const e = d > 0 && c > d, t = !e && N(i), o = e ? void 0 : i[a], l = [];
70
- if (E(o))
71
- for (const p of o) {
72
- const O = r(p, c + 1);
73
- O && l.push(O);
74
- }
75
- if (t || l.length > 0) {
76
- const p = { ...i };
77
- return l.length > 0 && (p[a] = l), p;
78
- }
79
- return null;
80
- }, s = [];
81
- for (const i of n) {
82
- const c = r(i, 1);
83
- c && s.push(c);
84
- }
85
- return s;
86
- } else
87
- for (; h.length > 0; ) {
88
- const r = y ? h.shift() : h.pop();
89
- if (!r) continue;
90
- if (N(r))
91
- if (M)
92
- F.push(r);
93
- else
94
- return r;
95
- const s = r[a];
96
- if (E(s))
97
- if (y)
98
- h.push(...s);
99
- else
100
- for (let i = s.length - 1; i >= 0; i--)
101
- h.push(s[i]);
102
- }
103
- }
104
- return M ? F : null;
16
+ function c(c, l, u = {}) {
17
+ if (n(c) || !e(c)) return null;
18
+ if (!i(l)) throw TypeError("参数 searchCondition 必须是一个对象");
19
+ let { strategy: d, childrenKey: f, strict: p, fuzzyMatch: m, returnAllMatches: h, caseSensitive: g, allowEmptyString: _, matchMode: v, returnTree: y, returnTreeMaxDepth: b } = {
20
+ strategy: "BFS",
21
+ childrenKey: "children",
22
+ strict: !1,
23
+ fuzzyMatch: !1,
24
+ returnAllMatches: !1,
25
+ caseSensitive: !1,
26
+ allowEmptyString: !1,
27
+ matchMode: "AND",
28
+ returnTree: !1,
29
+ returnTreeMaxDepth: 0,
30
+ ...u
31
+ }, x = v === "OR", S = v === "AND", C = d === "BFS";
32
+ if (!(C || d === "DFS")) throw Error("配置 strategy 必须是 \"BFS\" 或 \"DFS\"");
33
+ if (!(x || S)) throw Error("配置 matchMode 必须是 \"AND\" 或 \"OR\"");
34
+ if (!o(f)) throw TypeError("配置 childrenKey 必须是字符串");
35
+ if (y) {
36
+ if (!h) throw Error("当 returnTree 为 true 时,returnAllMatches 也必须为 true");
37
+ if (!(r(b) && b > -1)) throw TypeError("配置 returnTreeMaxDepth 必须是一个非负整数");
38
+ }
39
+ let w = [...c], T = [], E = Object.entries(l);
40
+ if (E.length) {
41
+ let n = (e) => {
42
+ let n = !1;
43
+ for (let [r, i] of E) {
44
+ let c = i, l = e[r];
45
+ if (g || (o(c) && (c = c.toLowerCase()), o(l) && (l = l.toLowerCase())), c === "" && !_) continue;
46
+ let u = !1;
47
+ u = t(c) ? !!c(l, e) : a(c) && o(l) ? l ? c.test(l) : !1 : m && o(c) && o(l) ? l.includes(c) : p ? l === c : l == c;
48
+ let d = s(u, x, S, n);
49
+ if (d.shouldExit) return d.newMatch;
50
+ n = d.newMatch;
51
+ }
52
+ return n;
53
+ };
54
+ if (y) {
55
+ let t = (r, i = 1) => {
56
+ let a = b > 0 && i > b, o = !a && n(r), s = a ? void 0 : r[f], c = [];
57
+ if (e(s)) for (let e of s) {
58
+ let n = t(e, i + 1);
59
+ n && c.push(n);
60
+ }
61
+ if (o || c.length > 0) {
62
+ let e = { ...r };
63
+ return c.length > 0 && (e[f] = c), e;
64
+ }
65
+ return null;
66
+ }, r = [];
67
+ for (let e of c) {
68
+ let n = t(e, 1);
69
+ n && r.push(n);
70
+ }
71
+ return r;
72
+ } else for (; w.length > 0;) {
73
+ let t = C ? w.shift() : w.pop();
74
+ if (!t) continue;
75
+ if (n(t)) if (h) T.push(t);
76
+ else return t;
77
+ let r = t[f];
78
+ if (e(r)) if (C) w.push(...r);
79
+ else for (let e = r.length - 1; e >= 0; e--) w.push(r[e]);
80
+ }
81
+ }
82
+ return h ? T : null;
105
83
  }
106
- export {
107
- P as default
108
- };
84
+ //#endregion
85
+ export { c as default };
86
+ /* 独立思考,明辨是非 */
package/tween/index.js CHANGED
@@ -1,8 +1,6 @@
1
- /* 2026-01-27 10:43:49 */
2
- import * as e from "./src/easing.js";
3
- import { default as r, default as t } from "./src/tween.js";
4
- export {
5
- r as Tween,
6
- t as default,
7
- e as easing
8
- };
1
+ /* 潘启宝 2026-03-24 15:26:16 星期二 */
2
+ import { easing_exports as e } from "./src/easing.js";
3
+ import t from "./src/tween.js";
4
+ import "./src/index.js";
5
+ export { t as Tween, t as default, e as easing };
6
+ /* 独立思考,明辨是非 */
@@ -1,62 +1,68 @@
1
- /* 2026-01-27 10:43:49 */
2
- function u(n) {
3
- return function(t) {
4
- return Math.pow(t, n);
5
- };
6
- }
7
- function r(n) {
8
- return function(t) {
9
- return 1 - Math.abs(Math.pow(t - 1, n));
10
- };
11
- }
12
- function c(n) {
13
- return function(t) {
14
- return t < 0.5 ? u(n)(t * 2) / 2 : r(n)(t * 2 - 1) / 2 + 0.5;
15
- };
16
- }
17
- function s(n) {
18
- return n;
19
- }
20
- const a = u(2), I = r(2), f = c(2), O = u(3), h = r(3), M = c(3), p = u(4), q = r(4), b = c(4), P = u(5), d = r(5), l = c(5);
21
- function y(n) {
22
- return 1 + Math.sin(Math.PI / 2 * n - Math.PI / 2);
23
- }
24
- function B(n) {
25
- return Math.sin(Math.PI / 2 * n);
26
- }
27
- function w(n) {
28
- return (1 + Math.sin(Math.PI * n - Math.PI / 2)) / 2;
29
- }
30
- function e(n) {
31
- return n < 1 / 2.75 ? 7.5625 * n * n : n < 2 / 2.75 ? (n -= 1.5 / 2.75, 7.5625 * n * n + 0.75) : n < 2.5 / 2.75 ? (n -= 2.25 / 2.75, 7.5625 * n * n + 0.9375) : (n -= 2.625 / 2.75, 7.5625 * n * n + 0.984375);
32
- }
33
- function o(n) {
34
- return 1 - e(1 - n);
35
- }
36
- function x(n) {
37
- return n < 0.5 ? o(n * 2) * 0.5 : e(n * 2 - 1) * 0.5 + 0.5;
38
- }
39
- export {
40
- o as bounceIn,
41
- x as bounceInOut,
42
- e as bounceOut,
43
- O as cubicIn,
44
- M as cubicInOut,
45
- h as cubicOut,
46
- u as easeInBy,
47
- c as easeInOutBy,
48
- r as easeOutBy,
49
- s as linear,
50
- a as quadIn,
51
- f as quadInOut,
52
- I as quadOut,
53
- p as quartIn,
54
- b as quartInOut,
55
- q as quartOut,
56
- P as quintIn,
57
- l as quintInOut,
58
- d as quintOut,
59
- y as sineIn,
60
- w as sineInOut,
61
- B as sineOut
62
- };
1
+ /* 潘启宝 2026-03-24 15:26:16 星期二 */
2
+ import { __exportAll as e } from "../../.virtual/_rolldown/runtime.js";
3
+ //#region utils/tween/src/easing.js
4
+ var t = /* @__PURE__ */ e({
5
+ bounceIn: () => S,
6
+ bounceInOut: () => C,
7
+ bounceOut: () => x,
8
+ cubicIn: () => l,
9
+ cubicInOut: () => d,
10
+ cubicOut: () => u,
11
+ easeInBy: () => n,
12
+ easeInOutBy: () => i,
13
+ easeOutBy: () => r,
14
+ linear: () => a,
15
+ quadIn: () => o,
16
+ quadInOut: () => c,
17
+ quadOut: () => s,
18
+ quartIn: () => f,
19
+ quartInOut: () => m,
20
+ quartOut: () => p,
21
+ quintIn: () => h,
22
+ quintInOut: () => _,
23
+ quintOut: () => g,
24
+ sineIn: () => v,
25
+ sineInOut: () => b,
26
+ sineOut: () => y
27
+ });
28
+ function n(e) {
29
+ return function(t) {
30
+ return t ** +e;
31
+ };
32
+ }
33
+ function r(e) {
34
+ return function(t) {
35
+ return 1 - Math.abs((t - 1) ** e);
36
+ };
37
+ }
38
+ function i(e) {
39
+ return function(t) {
40
+ return t < .5 ? n(e)(t * 2) / 2 : r(e)(t * 2 - 1) / 2 + .5;
41
+ };
42
+ }
43
+ function a(e) {
44
+ return e;
45
+ }
46
+ var o = n(2), s = r(2), c = i(2), l = n(3), u = r(3), d = i(3), f = n(4), p = r(4), m = i(4), h = n(5), g = r(5), _ = i(5);
47
+ function v(e) {
48
+ return 1 + Math.sin(Math.PI / 2 * e - Math.PI / 2);
49
+ }
50
+ function y(e) {
51
+ return Math.sin(Math.PI / 2 * e);
52
+ }
53
+ function b(e) {
54
+ return (1 + Math.sin(Math.PI * e - Math.PI / 2)) / 2;
55
+ }
56
+ function x(e) {
57
+ let t = 7.5625, n = 2.75;
58
+ return e < 1 / n ? t * e * e : e < 2 / n ? (e -= 1.5 / n, t * e * e + .75) : e < 2.5 / n ? (e -= 2.25 / n, t * e * e + .9375) : (e -= 2.625 / n, t * e * e + .984375);
59
+ }
60
+ function S(e) {
61
+ return 1 - x(1 - e);
62
+ }
63
+ function C(e) {
64
+ return e < .5 ? S(e * 2) * .5 : x(e * 2 - 1) * .5 + .5;
65
+ }
66
+ //#endregion
67
+ export { t as easing_exports, a as linear };
68
+ /* 独立思考,明辨是非 */
@@ -0,0 +1,4 @@
1
+ /* 潘启宝 2026-03-24 15:26:16 星期二 */
2
+ import "./easing.js";
3
+ import "./tween.js";
4
+ /* 独立思考,明辨是非 */
@@ -1,47 +1,32 @@
1
- /* 2026-01-27 10:43:49 */
2
- import n from "lodash/isFunction.js";
3
- import l from "lodash/isString.js";
4
- import a from "lodash/isUndefined.js";
5
- import * as u from "./easing.js";
6
- import { linear as p } from "./easing.js";
7
- class S {
8
- constructor(i) {
9
- const {
10
- from: s,
11
- to: e,
12
- duration: r = 500,
13
- delay: o = 0,
14
- easing: h,
15
- onStart: f,
16
- onUpdate: m = function() {
17
- },
18
- onFinish: d
19
- } = i;
20
- for (const t in s)
21
- a(e[t]) && (e[t] = s[t]);
22
- for (const t in e)
23
- a(s[t]) && (s[t] = e[t]);
24
- this.from = s, this.to = e, this.duration = r, this.delay = o, n(h) ? this.easing = h : l(h) && (this.easing = u[h]), this.easing ||= p, this.onStart = f, this.onUpdate = m, this.onFinish = d, this.startTime = Date.now() + this.delay, this.started = !1, this.finished = !1, this.timer = null, this.keys = {};
25
- }
26
- update() {
27
- if (this.time = Date.now(), !(this.time < this.startTime) && !this.finished) {
28
- this.elapsed = this.time - this.startTime, this.elapsed = Math.min(this.elapsed, this.duration);
29
- for (const i in this.to)
30
- this.keys[i] = this.from[i] + (this.to[i] - this.from[i]) * this.easing(this.elapsed / this.duration);
31
- this.started || (n(this.onStart) && this.onStart(this.keys), this.started = !0), n(this.onUpdate) && this.onUpdate(this.keys), this.elapsed === this.duration && !this.finished && (this.finished = !0, n(this.onFinish) && this.onFinish(this.keys));
32
- }
33
- }
34
- start() {
35
- this.startTime = Date.now() + this.delay, this.started = !1, this.finished = !1;
36
- const i = () => {
37
- this.update(), this.finished ? this.timer && (cancelAnimationFrame(this.timer), this.timer = null) : this.timer = requestAnimationFrame(i);
38
- };
39
- this.timer = requestAnimationFrame(i);
40
- }
41
- stop() {
42
- this.timer && (cancelAnimationFrame(this.timer), this.timer = null), this.finished = !0;
43
- }
44
- }
45
- export {
46
- S as default
1
+ /* 潘启宝 2026-03-24 15:26:16 星期二 */
2
+ import { isFunction as e, isString as t, isUndefined as n } from "../../is/index.js";
3
+ import { easing_exports as r, linear as i } from "./easing.js";
4
+ //#region utils/tween/src/tween.js
5
+ var a = class {
6
+ constructor(a) {
7
+ let { from: o, to: s, duration: c = 500, delay: l = 0, easing: u, onStart: d, onUpdate: f = function() {}, onFinish: p } = a;
8
+ for (let e in o) n(s[e]) && (s[e] = o[e]);
9
+ for (let e in s) n(o[e]) && (o[e] = s[e]);
10
+ this.from = o, this.to = s, this.duration = c, this.delay = l, e(u) ? this.easing = u : t(u) && (this.easing = r[u]), this.easing ||= i, this.onStart = d, this.onUpdate = f, this.onFinish = p, this.startTime = Date.now() + this.delay, this.started = !1, this.finished = !1, this.timer = null, this.keys = {};
11
+ }
12
+ update() {
13
+ if (this.time = Date.now(), !(this.time < this.startTime) && !this.finished) {
14
+ this.elapsed = this.time - this.startTime, this.elapsed = Math.min(this.elapsed, this.duration);
15
+ for (let e in this.to) this.keys[e] = this.from[e] + (this.to[e] - this.from[e]) * this.easing(this.elapsed / this.duration);
16
+ this.started ||= (e(this.onStart) && this.onStart(this.keys), !0), e(this.onUpdate) && this.onUpdate(this.keys), this.elapsed === this.duration && !this.finished && (this.finished = !0, e(this.onFinish) && this.onFinish(this.keys));
17
+ }
18
+ }
19
+ start() {
20
+ this.startTime = Date.now() + this.delay, this.started = !1, this.finished = !1;
21
+ let e = () => {
22
+ this.update(), this.finished ? this.timer &&= (cancelAnimationFrame(this.timer), null) : this.timer = requestAnimationFrame(e);
23
+ };
24
+ this.timer = requestAnimationFrame(e);
25
+ }
26
+ stop() {
27
+ this.timer &&= (cancelAnimationFrame(this.timer), null), this.finished = !0;
28
+ }
47
29
  };
30
+ //#endregion
31
+ export { a as default };
32
+ /* 独立思考,明辨是非 */