@fedify/fedify 1.6.0-dev.808 → 1.6.0-dev.810

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 (624) hide show
  1. package/esm/_dnt.polyfills.js +15 -0
  2. package/esm/compat/mod.js +1 -0
  3. package/esm/deno.js +2 -5
  4. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.js +9 -0
  5. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.js +28 -0
  6. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.js +36 -0
  7. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.js +21 -0
  8. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.js +36 -0
  9. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.js +26 -0
  10. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.js +38 -0
  11. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.js +35 -0
  12. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.js +20 -0
  13. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.js +23 -0
  14. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.js +26 -0
  15. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.js +25 -0
  16. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.js +37 -0
  17. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.js +24 -0
  18. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.js +17 -0
  19. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.js +33 -0
  20. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.js +15 -0
  21. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.js +28 -0
  22. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.js +44 -0
  23. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.js +18 -0
  24. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.js +60 -0
  25. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.js +16 -0
  26. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.js +24 -0
  27. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.js +37 -0
  28. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.js +41 -0
  29. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.js +27 -0
  30. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.js +34 -0
  31. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.js +36 -0
  32. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.js +25 -0
  33. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.js +37 -0
  34. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.js +37 -0
  35. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.js +52 -0
  36. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.js +36 -0
  37. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.js +33 -0
  38. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.js +25 -0
  39. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.js +35 -0
  40. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.js +18 -0
  41. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.js +35 -0
  42. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.js +25 -0
  43. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.js +36 -0
  44. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.js +27 -0
  45. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.js +27 -0
  46. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.js +29 -0
  47. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.js +25 -0
  48. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.js +29 -0
  49. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.js +22 -0
  50. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.js +21 -0
  51. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.js +26 -0
  52. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.js +24 -0
  53. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.js +18 -0
  54. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.js +37 -0
  55. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.js +26 -0
  56. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.js +31 -0
  57. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.js +26 -0
  58. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.js +44 -0
  59. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.js +24 -0
  60. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.js +23 -0
  61. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.js +27 -0
  62. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.js +26 -0
  63. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.js +39 -0
  64. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.js +37 -0
  65. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.js +32 -0
  66. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.js +3 -0
  67. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.js +13 -0
  68. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.js +26 -0
  69. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.js +23 -0
  70. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.js +27 -0
  71. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.js +51 -0
  72. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.js +17 -0
  73. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.js +16 -0
  74. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.js +26 -0
  75. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.js +23 -0
  76. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.js +23 -0
  77. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.js +10 -0
  78. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.js +10 -0
  79. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.js +2 -0
  80. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.js +40 -0
  81. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.js +23 -0
  82. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.js +10 -0
  83. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.js +40 -0
  84. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.js +42 -0
  85. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.js +44 -0
  86. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.js +97 -0
  87. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.js +24 -0
  88. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.js +21 -0
  89. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.js +22 -0
  90. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.js +21 -0
  91. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.js +86 -0
  92. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.js +16 -0
  93. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.js +10 -0
  94. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.js +28 -0
  95. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.js +45 -0
  96. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.js +47 -0
  97. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.js +40 -0
  98. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.js +41 -0
  99. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.js +21 -0
  100. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.js +46 -0
  101. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.js +18 -0
  102. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.js +65 -0
  103. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.js +23 -0
  104. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.js +24 -0
  105. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.js +13 -0
  106. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.js +17 -0
  107. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.js +20 -0
  108. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.js +35 -0
  109. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.js +25 -0
  110. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.js +23 -0
  111. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.js +18 -0
  112. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.js +32 -0
  113. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.js +32 -0
  114. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.js +24 -0
  115. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.js +20 -0
  116. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.js +22 -0
  117. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.js +70 -0
  118. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.js +50 -0
  119. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.js +201 -0
  120. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.js +22 -0
  121. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.js +49 -0
  122. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.js +17 -0
  123. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.js +28 -0
  124. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.js +27 -0
  125. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.js +28 -0
  126. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.js +69 -0
  127. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.js +71 -0
  128. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.js +25 -0
  129. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.js +31 -0
  130. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.js +27 -0
  131. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.js +31 -0
  132. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.js +66 -0
  133. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.js +47 -0
  134. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.js +66 -0
  135. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.js +30 -0
  136. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.js +20 -0
  137. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.js +23 -0
  138. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.js +25 -0
  139. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.js +17 -0
  140. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.js +23 -0
  141. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.js +16 -0
  142. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.js +19 -0
  143. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.js +218 -0
  144. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.js +16 -0
  145. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.js +26 -0
  146. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.js +16 -0
  147. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.js +40 -0
  148. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.js +94 -0
  149. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.js +24 -0
  150. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.js +20 -0
  151. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.js +22 -0
  152. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.js +17 -0
  153. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.js +19 -0
  154. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.js +23 -0
  155. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.js +56 -0
  156. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.js +31 -0
  157. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.js +20 -0
  158. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.js +16 -0
  159. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.js +20 -0
  160. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.js +20 -0
  161. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.js +26 -0
  162. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.js +29 -0
  163. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.js +23 -0
  164. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.js +23 -0
  165. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.js +23 -0
  166. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.js +52 -0
  167. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.js +5 -0
  168. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.js +69 -0
  169. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.js +99 -0
  170. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.js +20 -0
  171. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.js +29 -0
  172. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.js +26 -0
  173. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.js +14 -0
  174. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.js +19 -0
  175. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.js +64 -0
  176. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.js +23 -0
  177. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.js +14 -0
  178. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.js +21 -0
  179. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.js +19 -0
  180. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.js +19 -0
  181. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.js +14 -0
  182. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.js +19 -0
  183. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.js +20 -0
  184. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.js +16 -0
  185. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.js +19 -0
  186. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.js +26 -0
  187. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.js +20 -0
  188. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.js +39 -0
  189. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.js +36 -0
  190. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.js +23 -0
  191. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.js +26 -0
  192. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.js +14 -0
  193. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.js +38 -0
  194. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.js +47 -0
  195. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.js +41 -0
  196. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.js +4 -0
  197. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.js +33 -0
  198. package/esm/federation/mod.js +1 -0
  199. package/esm/mod.js +1 -0
  200. package/esm/nodeinfo/mod.js +1 -0
  201. package/esm/runtime/mod.js +1 -0
  202. package/esm/sig/mod.js +1 -0
  203. package/esm/vocab/lookup.js +1 -1
  204. package/esm/vocab/mod.js +1 -0
  205. package/esm/vocab/vocab.js +176 -176
  206. package/esm/webfinger/mod.js +1 -0
  207. package/esm/x/hono.js +12 -0
  208. package/esm/x/sveltekit.js +1 -0
  209. package/package.json +1 -1
  210. package/types/_dnt.polyfills.d.ts +18 -0
  211. package/types/_dnt.polyfills.d.ts.map +1 -0
  212. package/types/compat/mod.d.ts +1 -0
  213. package/types/compat/mod.d.ts.map +1 -1
  214. package/types/deno.d.ts +1 -4
  215. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.d.ts +2 -0
  216. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.d.ts.map +1 -0
  217. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.d.ts +17 -0
  218. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.d.ts.map +1 -0
  219. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.d.ts +25 -0
  220. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.d.ts.map +1 -0
  221. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.d.ts +15 -0
  222. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.d.ts.map +1 -0
  223. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.d.ts +29 -0
  224. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.d.ts.map +1 -0
  225. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.d.ts +24 -0
  226. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.d.ts.map +1 -0
  227. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.d.ts +34 -0
  228. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.d.ts.map +1 -0
  229. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.d.ts +30 -0
  230. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.d.ts.map +1 -0
  231. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.d.ts +18 -0
  232. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.d.ts.map +1 -0
  233. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.d.ts +18 -0
  234. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.d.ts.map +1 -0
  235. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.d.ts +20 -0
  236. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.d.ts.map +1 -0
  237. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.d.ts +20 -0
  238. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.d.ts.map +1 -0
  239. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.d.ts +85 -0
  240. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.d.ts.map +1 -0
  241. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.d.ts +22 -0
  242. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.d.ts.map +1 -0
  243. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.d.ts +16 -0
  244. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.d.ts.map +1 -0
  245. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.d.ts +18 -0
  246. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.d.ts.map +1 -0
  247. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.d.ts +24 -0
  248. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.d.ts.map +1 -0
  249. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.d.ts +47 -0
  250. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.d.ts.map +1 -0
  251. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.d.ts +34 -0
  252. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.d.ts.map +1 -0
  253. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.d.ts +33 -0
  254. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.d.ts.map +1 -0
  255. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.d.ts +61 -0
  256. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.d.ts.map +1 -0
  257. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.d.ts +53 -0
  258. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.d.ts.map +1 -0
  259. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.d.ts +20 -0
  260. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.d.ts.map +1 -0
  261. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.d.ts +35 -0
  262. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.d.ts.map +1 -0
  263. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.d.ts +36 -0
  264. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.d.ts.map +1 -0
  265. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.d.ts +25 -0
  266. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.d.ts.map +1 -0
  267. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.d.ts +32 -0
  268. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.d.ts.map +1 -0
  269. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.d.ts +29 -0
  270. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.d.ts.map +1 -0
  271. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.d.ts +47 -0
  272. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.d.ts.map +1 -0
  273. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.d.ts +44 -0
  274. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.d.ts.map +1 -0
  275. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.d.ts +44 -0
  276. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.d.ts.map +1 -0
  277. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.d.ts +36 -0
  278. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.d.ts.map +1 -0
  279. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.d.ts +24 -0
  280. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.d.ts.map +1 -0
  281. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.d.ts +18 -0
  282. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.d.ts.map +1 -0
  283. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.d.ts +18 -0
  284. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.d.ts.map +1 -0
  285. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.d.ts +18 -0
  286. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.d.ts.map +1 -0
  287. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.d.ts +16 -0
  288. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.d.ts.map +1 -0
  289. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.d.ts +20 -0
  290. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.d.ts.map +1 -0
  291. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.d.ts +16 -0
  292. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.d.ts.map +1 -0
  293. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.d.ts +34 -0
  294. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.d.ts.map +1 -0
  295. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.d.ts +66 -0
  296. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.d.ts.map +1 -0
  297. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.d.ts +24 -0
  298. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.d.ts.map +1 -0
  299. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.d.ts +23 -0
  300. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.d.ts.map +1 -0
  301. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.d.ts +19 -0
  302. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.d.ts.map +1 -0
  303. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.d.ts +20 -0
  304. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.d.ts.map +1 -0
  305. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.d.ts +91 -0
  306. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.d.ts.map +1 -0
  307. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.d.ts +19 -0
  308. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.d.ts.map +1 -0
  309. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.d.ts +24 -0
  310. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.d.ts.map +1 -0
  311. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.d.ts +22 -0
  312. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.d.ts.map +1 -0
  313. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.d.ts +17 -0
  314. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.d.ts.map +1 -0
  315. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.d.ts +28 -0
  316. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.d.ts.map +1 -0
  317. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.d.ts +17 -0
  318. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.d.ts.map +1 -0
  319. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.d.ts +19 -0
  320. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.d.ts.map +1 -0
  321. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.d.ts +16 -0
  322. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.d.ts.map +1 -0
  323. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.d.ts +49 -0
  324. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.d.ts.map +1 -0
  325. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.d.ts +22 -0
  326. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.d.ts.map +1 -0
  327. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.d.ts +19 -0
  328. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.d.ts.map +1 -0
  329. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.d.ts +21 -0
  330. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.d.ts.map +1 -0
  331. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.d.ts +20 -0
  332. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.d.ts.map +1 -0
  333. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.d.ts +105 -0
  334. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.d.ts.map +1 -0
  335. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.d.ts +32 -0
  336. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.d.ts.map +1 -0
  337. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.d.ts +71 -0
  338. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.d.ts.map +1 -0
  339. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.d.ts +2 -0
  340. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.d.ts.map +1 -0
  341. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.d.ts +9 -0
  342. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.d.ts.map +1 -0
  343. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.d.ts +27 -0
  344. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.d.ts.map +1 -0
  345. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.d.ts +22 -0
  346. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.d.ts.map +1 -0
  347. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.d.ts +26 -0
  348. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.d.ts.map +1 -0
  349. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.d.ts +24 -0
  350. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.d.ts.map +1 -0
  351. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.d.ts +16 -0
  352. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.d.ts.map +1 -0
  353. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.d.ts +15 -0
  354. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.d.ts.map +1 -0
  355. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.d.ts +16 -0
  356. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.d.ts.map +1 -0
  357. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.d.ts +19 -0
  358. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.d.ts.map +1 -0
  359. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.d.ts +18 -0
  360. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.d.ts.map +1 -0
  361. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.d.ts +8 -0
  362. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.d.ts.map +1 -0
  363. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.d.ts +8 -0
  364. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.d.ts.map +1 -0
  365. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.d.ts +3 -0
  366. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.d.ts.map +1 -0
  367. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.d.ts +30 -0
  368. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.d.ts.map +1 -0
  369. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.d.ts +20 -0
  370. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.d.ts.map +1 -0
  371. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.d.ts +11 -0
  372. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.d.ts.map +1 -0
  373. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.d.ts +30 -0
  374. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.d.ts.map +1 -0
  375. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.d.ts +125 -0
  376. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.d.ts.map +1 -0
  377. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.d.ts +139 -0
  378. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.d.ts.map +1 -0
  379. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.d.ts +74 -0
  380. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.d.ts.map +1 -0
  381. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.d.ts +131 -0
  382. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.d.ts.map +1 -0
  383. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.d.ts +143 -0
  384. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.d.ts.map +1 -0
  385. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.d.ts +21 -0
  386. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.d.ts.map +1 -0
  387. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.d.ts +22 -0
  388. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.d.ts.map +1 -0
  389. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.d.ts +123 -0
  390. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.d.ts.map +1 -0
  391. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.d.ts +15 -0
  392. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.d.ts.map +1 -0
  393. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.d.ts +11 -0
  394. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.d.ts.map +1 -0
  395. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.d.ts +34 -0
  396. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.d.ts.map +1 -0
  397. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.d.ts +552 -0
  398. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.d.ts.map +1 -0
  399. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.d.ts +629 -0
  400. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.d.ts.map +1 -0
  401. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.d.ts +32 -0
  402. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.d.ts.map +1 -0
  403. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.d.ts +77 -0
  404. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.d.ts.map +1 -0
  405. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.d.ts +18 -0
  406. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.d.ts.map +1 -0
  407. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.d.ts +48 -0
  408. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.d.ts.map +1 -0
  409. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.d.ts +16 -0
  410. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.d.ts.map +1 -0
  411. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.d.ts +66 -0
  412. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.d.ts.map +1 -0
  413. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.d.ts +31 -0
  414. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.d.ts.map +1 -0
  415. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.d.ts +26 -0
  416. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.d.ts.map +1 -0
  417. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.d.ts +14 -0
  418. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.d.ts.map +1 -0
  419. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.d.ts +15 -0
  420. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.d.ts.map +1 -0
  421. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.d.ts +17 -0
  422. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.d.ts.map +1 -0
  423. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.d.ts +24 -0
  424. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.d.ts.map +1 -0
  425. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.d.ts +22 -0
  426. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.d.ts.map +1 -0
  427. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.d.ts +29 -0
  428. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.d.ts.map +1 -0
  429. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.d.ts +25 -0
  430. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.d.ts.map +1 -0
  431. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.d.ts +37 -0
  432. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.d.ts.map +1 -0
  433. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.d.ts +37 -0
  434. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.d.ts.map +1 -0
  435. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.d.ts +19 -0
  436. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.d.ts.map +1 -0
  437. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.d.ts +15 -0
  438. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.d.ts.map +1 -0
  439. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.d.ts +17 -0
  440. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.d.ts.map +1 -0
  441. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.d.ts +30 -0
  442. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.d.ts.map +1 -0
  443. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.d.ts +48 -0
  444. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.d.ts.map +1 -0
  445. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.d.ts +44 -0
  446. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.d.ts.map +1 -0
  447. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.d.ts +20 -0
  448. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.d.ts.map +1 -0
  449. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.d.ts +36 -0
  450. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.d.ts.map +1 -0
  451. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.d.ts +18 -0
  452. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.d.ts.map +1 -0
  453. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.d.ts +20 -0
  454. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.d.ts.map +1 -0
  455. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.d.ts +19 -0
  456. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.d.ts.map +1 -0
  457. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.d.ts +20 -0
  458. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.d.ts.map +1 -0
  459. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.d.ts +42 -0
  460. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.d.ts.map +1 -0
  461. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.d.ts +50 -0
  462. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.d.ts.map +1 -0
  463. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.d.ts +19 -0
  464. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.d.ts.map +1 -0
  465. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.d.ts +21 -0
  466. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.d.ts.map +1 -0
  467. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.d.ts +19 -0
  468. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.d.ts.map +1 -0
  469. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.d.ts +21 -0
  470. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.d.ts.map +1 -0
  471. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.d.ts +53 -0
  472. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.d.ts.map +1 -0
  473. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.d.ts +44 -0
  474. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.d.ts.map +1 -0
  475. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.d.ts +53 -0
  476. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.d.ts.map +1 -0
  477. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.d.ts +31 -0
  478. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.d.ts.map +1 -0
  479. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.d.ts +19 -0
  480. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.d.ts.map +1 -0
  481. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.d.ts +18 -0
  482. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.d.ts.map +1 -0
  483. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.d.ts +24 -0
  484. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.d.ts.map +1 -0
  485. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.d.ts +16 -0
  486. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.d.ts.map +1 -0
  487. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.d.ts +20 -0
  488. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.d.ts.map +1 -0
  489. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.d.ts +15 -0
  490. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.d.ts.map +1 -0
  491. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.d.ts +16 -0
  492. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.d.ts.map +1 -0
  493. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.d.ts +37 -0
  494. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.d.ts.map +1 -0
  495. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.d.ts +15 -0
  496. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.d.ts.map +1 -0
  497. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.d.ts +20 -0
  498. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.d.ts.map +1 -0
  499. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.d.ts +15 -0
  500. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.d.ts.map +1 -0
  501. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.d.ts +30 -0
  502. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.d.ts.map +1 -0
  503. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.d.ts +55 -0
  504. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.d.ts.map +1 -0
  505. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.d.ts +23 -0
  506. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.d.ts.map +1 -0
  507. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.d.ts +19 -0
  508. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.d.ts.map +1 -0
  509. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.d.ts +21 -0
  510. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.d.ts.map +1 -0
  511. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.d.ts +16 -0
  512. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.d.ts.map +1 -0
  513. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.d.ts +18 -0
  514. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.d.ts.map +1 -0
  515. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.d.ts +22 -0
  516. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.d.ts.map +1 -0
  517. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.d.ts +44 -0
  518. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.d.ts.map +1 -0
  519. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.d.ts +30 -0
  520. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.d.ts.map +1 -0
  521. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.d.ts +19 -0
  522. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.d.ts.map +1 -0
  523. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.d.ts +15 -0
  524. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.d.ts.map +1 -0
  525. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.d.ts +19 -0
  526. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.d.ts.map +1 -0
  527. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.d.ts +19 -0
  528. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.d.ts.map +1 -0
  529. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.d.ts +25 -0
  530. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.d.ts.map +1 -0
  531. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.d.ts +28 -0
  532. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.d.ts.map +1 -0
  533. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.d.ts +22 -0
  534. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.d.ts.map +1 -0
  535. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.d.ts +22 -0
  536. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.d.ts.map +1 -0
  537. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.d.ts +22 -0
  538. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.d.ts.map +1 -0
  539. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.d.ts +38 -0
  540. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.d.ts.map +1 -0
  541. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.d.ts +6 -0
  542. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.d.ts.map +1 -0
  543. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.d.ts +63 -0
  544. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.d.ts.map +1 -0
  545. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.d.ts +80 -0
  546. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.d.ts.map +1 -0
  547. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.d.ts +16 -0
  548. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.d.ts.map +1 -0
  549. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.d.ts +27 -0
  550. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.d.ts.map +1 -0
  551. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.d.ts +18 -0
  552. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.d.ts.map +1 -0
  553. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.d.ts +15 -0
  554. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.d.ts.map +1 -0
  555. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.d.ts +16 -0
  556. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.d.ts.map +1 -0
  557. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.d.ts +21 -0
  558. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.d.ts.map +1 -0
  559. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.d.ts +15 -0
  560. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.d.ts.map +1 -0
  561. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.d.ts +13 -0
  562. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.d.ts.map +1 -0
  563. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.d.ts +22 -0
  564. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.d.ts.map +1 -0
  565. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.d.ts +16 -0
  566. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.d.ts.map +1 -0
  567. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.d.ts +16 -0
  568. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.d.ts.map +1 -0
  569. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.d.ts +13 -0
  570. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.d.ts.map +1 -0
  571. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.d.ts +18 -0
  572. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.d.ts.map +1 -0
  573. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.d.ts +16 -0
  574. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.d.ts.map +1 -0
  575. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.d.ts +15 -0
  576. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.d.ts.map +1 -0
  577. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.d.ts +16 -0
  578. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.d.ts.map +1 -0
  579. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.d.ts +15 -0
  580. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.d.ts.map +1 -0
  581. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.d.ts +14 -0
  582. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.d.ts.map +1 -0
  583. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.d.ts +18 -0
  584. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.d.ts.map +1 -0
  585. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.d.ts +18 -0
  586. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.d.ts.map +1 -0
  587. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.d.ts +15 -0
  588. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.d.ts.map +1 -0
  589. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.d.ts +16 -0
  590. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.d.ts.map +1 -0
  591. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.d.ts +13 -0
  592. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.d.ts.map +1 -0
  593. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.d.ts +37 -0
  594. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.d.ts.map +1 -0
  595. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.d.ts +41 -0
  596. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.d.ts.map +1 -0
  597. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.d.ts +34 -0
  598. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.d.ts.map +1 -0
  599. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.d.ts +5 -0
  600. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.d.ts.map +1 -0
  601. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.d.ts +39 -0
  602. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.d.ts.map +1 -0
  603. package/types/federation/mod.d.ts +1 -0
  604. package/types/federation/mod.d.ts.map +1 -1
  605. package/types/mod.d.ts +1 -0
  606. package/types/mod.d.ts.map +1 -1
  607. package/types/nodeinfo/mod.d.ts +1 -0
  608. package/types/nodeinfo/mod.d.ts.map +1 -1
  609. package/types/runtime/mod.d.ts +1 -0
  610. package/types/runtime/mod.d.ts.map +1 -1
  611. package/types/sig/mod.d.ts +1 -0
  612. package/types/sig/mod.d.ts.map +1 -1
  613. package/types/vocab/lookup.d.ts.map +1 -1
  614. package/types/vocab/mod.d.ts +1 -0
  615. package/types/vocab/mod.d.ts.map +1 -1
  616. package/types/webfinger/mod.d.ts +1 -0
  617. package/types/webfinger/mod.d.ts.map +1 -1
  618. package/types/x/hono.d.ts +1 -0
  619. package/types/x/hono.d.ts.map +1 -1
  620. package/types/x/sveltekit.d.ts +1 -0
  621. package/types/x/sveltekit.d.ts.map +1 -1
  622. package/esm/deps/jsr.io/@std/async/1.0.13/delay.js +0 -65
  623. package/types/deps/jsr.io/@std/async/1.0.13/delay.d.ts +0 -42
  624. package/types/deps/jsr.io/@std/async/1.0.13/delay.d.ts.map +0 -1
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Creates a function that transforms the arguments of the provided function `func`.
3
+ * The transformed arguments are passed to `func` such that the arguments starting from a specified index
4
+ * are grouped into an array, while the previous arguments are passed as individual elements.
5
+ *
6
+ * @template F - The type of the function being transformed.
7
+ * @param {F} func - The function whose arguments are to be transformed.
8
+ * @param {number} [startIndex=func.length - 1] - The index from which to start grouping the remaining arguments into an array.
9
+ * Defaults to `func.length - 1`, grouping all arguments after the last parameter.
10
+ * @returns {(...args: any[]) => ReturnType<F>} A new function that, when called, returns the result of calling `func` with the transformed arguments.
11
+ *
12
+ * The transformed arguments are:
13
+ * - The first `start` arguments as individual elements.
14
+ * - The remaining arguments from index `start` onward grouped into an array.
15
+ * @example
16
+ * function fn(a, b, c) {
17
+ * return [a, b, c];
18
+ * }
19
+ *
20
+ * // Using default start index (func.length - 1, which is 2 in this case)
21
+ * const transformedFn = rest(fn);
22
+ * console.log(transformedFn(1, 2, 3, 4)); // [1, 2, [3, 4]]
23
+ *
24
+ * // Using start index 1
25
+ * const transformedFnWithStart = rest(fn, 1);
26
+ * console.log(transformedFnWithStart(1, 2, 3, 4)); // [1, [2, 3, 4]]
27
+ *
28
+ * // With fewer arguments than the start index
29
+ * console.log(transformedFn(1)); // [1, undefined, []]
30
+ */
31
+ export declare function rest<F extends (...args: any[]) => any>(func: F, startIndex?: number): (...args: any[]) => ReturnType<F>;
32
+ //# sourceMappingURL=rest.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rest.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,wBAAgB,IAAI,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,EACpD,IAAI,EAAE,CAAC,EACP,UAAU,SAAkB,GAC3B,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,UAAU,CAAC,CAAC,CAAC,CASnC"}
@@ -0,0 +1,77 @@
1
+ interface RetryOptions {
2
+ /**
3
+ * Delay between retries. Can be a static number (milliseconds) or a function
4
+ * that computes delay dynamically based on the current attempt.
5
+ *
6
+ * @default 0
7
+ * @example
8
+ * delay: (attempts) => attempt * 50
9
+ */
10
+ delay?: number | ((attempts: number) => number);
11
+ /**
12
+ * The number of retries to attempt.
13
+ * @default Number.POSITIVE_INFINITY
14
+ */
15
+ retries?: number;
16
+ /**
17
+ * An AbortSignal to cancel the retry operation.
18
+ */
19
+ signal?: AbortSignal;
20
+ }
21
+ /**
22
+ * Retries a function that returns a promise until it resolves successfully.
23
+ *
24
+ * @template T
25
+ * @param {() => Promise<T>} func - The function to retry.
26
+ * @returns {Promise<T>} A promise that resolves with the value of the successful function call.
27
+ *
28
+ * @example
29
+ * // Basic usage with default retry options
30
+ * retry(() => fetchData()).then(data => console.log(data));
31
+ */
32
+ export declare function retry<T>(func: () => Promise<T>): Promise<T>;
33
+ /**
34
+ * Retries a function that returns a promise a specified number of times.
35
+ *
36
+ * @template T
37
+ * @param {() => Promise<T>} func - The function to retry. It should return a promise.
38
+ * @param {number} retries - The number of retries to attempt. Default is Infinity.
39
+ * @returns {Promise<T>} A promise that resolves with the value of the successful function call.
40
+ *
41
+ * @example
42
+ * // Retry a function up to 3 times
43
+ * retry(() => fetchData(), 3).then(data => console.log(data));
44
+ */
45
+ export declare function retry<T>(func: () => Promise<T>, retries: number): Promise<T>;
46
+ /**
47
+ * Retries a function that returns a promise with specified options.
48
+ *
49
+ * @template T
50
+ * @param {() => Promise<T>} func - The function to retry. It should return a promise.
51
+ * @param {RetryOptions} options - Options to configure the retry behavior.
52
+ * @param {number | ((attempts: number) => number)} [options.delay=0] - Delay(milliseconds) between retries.
53
+ * @param {number} [options.retries=Infinity] - The number of retries to attempt.
54
+ * @param {AbortSignal} [options.signal] - An AbortSignal to cancel the retry operation.
55
+ * @returns {Promise<T>} A promise that resolves with the value of the successful function call.
56
+ *
57
+ * @example
58
+ * // Retry a function with a delay of 1000ms between attempts
59
+ * retry(() => fetchData(), { delay: 1000, times: 5 }).then(data => console.log(data));
60
+ *
61
+ * @example
62
+ * // Retry a function with a fixed delay
63
+ * retry(() => fetchData(), { delay: 1000, retries: 5 });
64
+ *
65
+ * // Retry a function with a delay increasing linearly by 50ms per attempt
66
+ * retry(() => fetchData(), { delay: (attempts) => attempt * 50, retries: 5 });
67
+ *
68
+ * @example
69
+ * // Retry a function with exponential backoff + jitter (max delay 10 seconds)
70
+ * retry(() => fetchData(), {
71
+ * delay: (attempts) => Math.min(Math.random() * 100 * 2 ** attempts, 10000),
72
+ * retries: 5
73
+ * });
74
+ */
75
+ export declare function retry<T>(func: () => Promise<T>, options: RetryOptions): Promise<T>;
76
+ export {};
77
+ //# sourceMappingURL=retry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"retry.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.ts"],"names":[],"mappings":"AAEA,UAAU,YAAY;IACpB;;;;;;;OAOG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,QAAQ,EAAE,MAAM,KAAK,MAAM,CAAC,CAAC;IAEhD;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB;AAKD;;;;;;;;;;GAUG;AACH,wBAAsB,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;AAEnE;;;;;;;;;;;GAWG;AACH,wBAAsB,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;AAEpF;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,wBAAsB,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC"}
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Creates a new function that spreads elements of an array argument into individual arguments
3
+ * for the original function.
4
+ *
5
+ * @template F - A function type with any number of parameters and any return type.
6
+ * @param {F} func - The function to be transformed. It can be any function with any number of arguments.
7
+ * @returns {(argsArr: Parameters<F>) => ReturnType<F>} - A new function that takes an array of arguments and returns the result of calling the original function with those arguments.
8
+ *
9
+ * @example
10
+ * function add(a, b) {
11
+ * return a + b;
12
+ * }
13
+ *
14
+ * const spreadAdd = spread(add);
15
+ * console.log(spreadAdd([1, 2])); // Output: 3
16
+ */
17
+ export declare function spread<F extends (...args: any[]) => any>(func: F): (argsArr: Parameters<F>) => ReturnType<F>;
18
+ //# sourceMappingURL=spread.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"spread.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,MAAM,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,EAAE,IAAI,EAAE,CAAC,GAAG,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC,CAAC,KAAK,UAAU,CAAC,CAAC,CAAC,CAI5G"}
@@ -0,0 +1,48 @@
1
+ interface ThrottleOptions {
2
+ /**
3
+ * An optional AbortSignal to cancel the debounced function.
4
+ */
5
+ signal?: AbortSignal;
6
+ /**
7
+ * An optional array specifying whether the function should be invoked on the leading edge, trailing edge, or both.
8
+ * If `edges` includes "leading", the function will be invoked at the start of the delay period.
9
+ * If `edges` includes "trailing", the function will be invoked at the end of the delay period.
10
+ * If both "leading" and "trailing" are included, the function will be invoked at both the start and end of the delay period.
11
+ * @default ["leading", "trailing"]
12
+ */
13
+ edges?: Array<'leading' | 'trailing'>;
14
+ }
15
+ export interface ThrottledFunction<F extends (...args: any[]) => void> {
16
+ (...args: Parameters<F>): void;
17
+ cancel: () => void;
18
+ flush: () => void;
19
+ }
20
+ /**
21
+ * Creates a throttled function that only invokes the provided function at most once
22
+ * per every `throttleMs` milliseconds. Subsequent calls to the throttled function
23
+ * within the wait time will not trigger the execution of the original function.
24
+ *
25
+ * @template F - The type of function.
26
+ * @param {F} func - The function to throttle.
27
+ * @param {number} throttleMs - The number of milliseconds to throttle executions to.
28
+ * @returns {(...args: Parameters<F>) => void} A new throttled function that accepts the same parameters as the original function.
29
+ *
30
+ * @example
31
+ * const throttledFunction = throttle(() => {
32
+ * console.log('Function executed');
33
+ * }, 1000);
34
+ *
35
+ * // Will log 'Function executed' immediately
36
+ * throttledFunction();
37
+ *
38
+ * // Will not log anything as it is within the throttle time
39
+ * throttledFunction();
40
+ *
41
+ * // After 1 second
42
+ * setTimeout(() => {
43
+ * throttledFunction(); // Will log 'Function executed'
44
+ * }, 1000);
45
+ */
46
+ export declare function throttle<F extends (...args: any[]) => void>(func: F, throttleMs: number, { signal, edges }?: ThrottleOptions): ThrottledFunction<F>;
47
+ export {};
48
+ //# sourceMappingURL=throttle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"throttle.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.ts"],"names":[],"mappings":"AAEA,UAAU,eAAe;IACvB;;OAEG;IACH,MAAM,CAAC,EAAE,WAAW,CAAC;IAErB;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,UAAU,CAAC,CAAC;CACvC;AAED,MAAM,WAAW,iBAAiB,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI;IACnE,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;IAC/B,MAAM,EAAE,MAAM,IAAI,CAAC;IACnB,KAAK,EAAE,MAAM,IAAI,CAAC;CACnB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,wBAAgB,QAAQ,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,EACzD,IAAI,EAAE,CAAC,EACP,UAAU,EAAE,MAAM,EAClB,EAAE,MAAM,EAAE,KAA+B,EAAE,GAAE,eAAoB,GAChE,iBAAiB,CAAC,CAAC,CAAC,CAsBtB"}
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Creates a function that accepts up to one argument, ignoring any additional arguments.
3
+ *
4
+ * @template F - The type of the function.
5
+ * @param {F} func - The function to cap arguments for.
6
+ * @returns {(...args: any[]) => ReturnType<F>} Returns the new capped function.
7
+ *
8
+ * @example
9
+ * function fn(a, b, c) {
10
+ * console.log(arguments);
11
+ * }
12
+ *
13
+ * unary(fn)(1, 2, 3); // [Arguments] { '0': 1 }
14
+ */
15
+ export declare function unary<F extends (...args: any[]) => any>(func: F): (...args: any[]) => ReturnType<F>;
16
+ //# sourceMappingURL=unary.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"unary.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;GAaG;AACH,wBAAgB,KAAK,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,EAAE,IAAI,EAAE,CAAC,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,UAAU,CAAC,CAAC,CAAC,CAEnG"}
@@ -0,0 +1,66 @@
1
+ /**
2
+ * es-toolkit
3
+ * ====================================
4
+ * A modern JavaScript utility library that's 2-3 times faster and up to 97% smaller—a major upgrade to lodash.
5
+ *
6
+ * es-toolkit is a state-of-the-art, high-performance JavaScript utility library
7
+ * with a small bundle size and strong type annotations.
8
+ *
9
+ * - es-toolkit offers a variety of everyday utility functions with modern implementations, such as [debounce](https://es-toolkit.slash.page/reference/function/debounce.html), [delay](https://es-toolkit.slash.page/reference/promise/delay.html), [chunk](https://es-toolkit.slash.page/reference/array/chunk.html), [sum](https://es-toolkit.slash.page/reference/math/sum.html), and [pick](https://es-toolkit.slash.page/reference/object/pick.html).
10
+ * - Designed with performance in mind, es-toolkit achieves [2-3× better performance](https://es-toolkit.slash.page/performance.html) in modern JavaScript environments.
11
+ * - es-toolkit supports tree shaking out of the box, and [reduces JavaScript code by up to 97%](https://es-toolkit.slash.page/bundle-size.html) compared to other libraries.
12
+ * - es-toolkit includes built-in TypeScript support, with straightforward yet robust types. It also provides useful type guards such as [isNotNil](https://es-toolkit.slash.page/reference/predicate/isNotNil.html).
13
+ * - es-toolkit is battle-tested with 100% test coverage, ensuring reliability and robustness.
14
+ *
15
+ * ## Features
16
+ *
17
+ * Here are some of the features es-toolkit offers:
18
+ *
19
+ * - **Array**: Utilities for array manipulation, such as [uniq](https://es-toolkit.slash.page/reference/array/uniq.html) and [difference](https://es-toolkit.slash.page/reference/array/difference.html).
20
+ * - **Function**: Tools for controlling function execution, including [debounce](https://es-toolkit.slash.page/reference/function/debounce.html) and [throttle](https://es-toolkit.slash.page/reference/function/throttle.html).
21
+ * - **Math**: Numerical utilities like [sum](https://es-toolkit.slash.page/reference/math/sum.html) and [round](https://es-toolkit.slash.page/reference/math/round.html).
22
+ * - **Object**: Tools for manipulating JavaScript objects, such as [pick](https://es-toolkit.slash.page/reference/object/pick.html) and [omit](https://es-toolkit.slash.page/reference/object/omit.html).
23
+ * - **Predicate**: Type guard functions like [isNotNil](https://es-toolkit.slash.page/reference/predicate/isNotNil.html).
24
+ * - **Promise**: Asynchronous utilities like [delay](https://es-toolkit.slash.page/reference/promise/delay.html).
25
+ * - **String**: Utilities for string manipulation, such as [snakeCase](https://es-toolkit.slash.page/reference/string/snakeCase.html)
26
+ *
27
+ * ## Examples
28
+ *
29
+ * ```typescript
30
+ * // import from '@es-toolkit/es-toolkit' in jsr.
31
+ * import { debounce, chunk } from 'es-toolkit';
32
+ *
33
+ * const debouncedLog = debounce(message => {
34
+ * console.log(message);
35
+ * }, 300);
36
+ *
37
+ * // This call will be debounced
38
+ * debouncedLog('Hello, world!');
39
+ *
40
+ * const array = [1, 2, 3, 4, 5, 6];
41
+ * const chunkedArray = chunk(array, 2);
42
+ *
43
+ * console.log(chunkedArray);
44
+ * // Output: [[1, 2], [3, 4], [5, 6]]
45
+ * ```
46
+ *
47
+ * ## Resources
48
+ *
49
+ * If you want to know more about the project, please take a look at the
50
+ * following resources:
51
+ *
52
+ * - [GitHub](https://github.com/toss/es-toolkit)
53
+ * - [Documentation](https://es-toolkit.slash.page)
54
+ *
55
+ * @module
56
+ */
57
+ export * from './array/index.js';
58
+ export * from './error/index.js';
59
+ export * from './function/index.js';
60
+ export * from './math/index.js';
61
+ export * from './object/index.js';
62
+ export * from './predicate/index.js';
63
+ export * from './promise/index.js';
64
+ export * from './string/index.js';
65
+ export * from './util/index.js';
66
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuDG;AACH,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC"}
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Clamps a number within the inclusive upper bound.
3
+ *
4
+ * This function takes a number and a maximum bound, and returns the number clamped within the specified upper bound.
5
+ * If only one bound is provided, it returns the minimum of the value and the bound.
6
+ *
7
+ * @param {number} value - The number to clamp.
8
+ * @param {number} maximum - The maximum bound to clamp the number.
9
+ * @returns {number} The clamped number within the specified upper bound.
10
+ *
11
+ * @example
12
+ * const result1 = clamp(10, 5); // result1 will be 5, as 10 is clamped to the bound 5
13
+ */
14
+ export declare function clamp(value: number, maximum: number): number;
15
+ /**
16
+ * Clamps a number within the inclusive lower and upper bounds.
17
+ *
18
+ * This function takes a number and two bounds, and returns the number clamped within the specified bounds.
19
+ *
20
+ * @param {number} value - The number to clamp.
21
+ * @param {number} minimum - The minimum bound to clamp the number.
22
+ * @param {number} maximum - The maximum bound to clamp the number.
23
+ * @returns {number} The clamped number within the specified bounds.
24
+ *
25
+ * @example
26
+ * const result2 = clamp(10, 5, 15); // result2 will be 10, as it is within the bounds 5 and 15
27
+ * const result3 = clamp(2, 5, 15); // result3 will be 5, as 2 is clamped to the lower bound 5
28
+ * const result4 = clamp(20, 5, 15); // result4 will be 15, as 20 is clamped to the upper bound 15
29
+ */
30
+ export declare function clamp(value: number, minimum: number, maximum: number): number;
31
+ //# sourceMappingURL=clamp.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"clamp.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AACH,wBAAgB,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;AAE9D;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC"}
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Checks if the value is less than the maximum.
3
+ *
4
+ * @param {number} value The value to check.
5
+ * @param {number} maximum The upper bound of the range (exclusive).
6
+ * @returns {boolean} `true` if the value is less than the maximum, otherwise `false`.
7
+ *
8
+ * @example
9
+ * const result = inRange(3, 5); // result will be true.
10
+ * const result2 = inRange(5, 5); // result2 will be false.
11
+ */
12
+ export declare function inRange(value: number, maximum: number): boolean;
13
+ /**
14
+ * Checks if the value is within the range defined by minimum (inclusive) and maximum (exclusive).
15
+ *
16
+ * @param {number} value The value to check.
17
+ * @param {number} minimum The lower bound of the range (inclusive).
18
+ * @param {number} maximum The upper bound of the range (exclusive).
19
+ * @returns {boolean} `true` if the value is within the specified range, otherwise `false`.
20
+ *
21
+ * @example
22
+ * const result = inRange(3, 2, 5); // result will be true.
23
+ * const result2 = inRange(1, 2, 5); // result2 will be false.
24
+ */
25
+ export declare function inRange(value: number, minimum: number, maximum: number): boolean;
26
+ //# sourceMappingURL=inRange.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"inRange.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,wBAAgB,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC;AAEjE;;;;;;;;;;;GAWG;AACH,wBAAgB,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC"}
@@ -0,0 +1,14 @@
1
+ export { clamp } from './clamp.js';
2
+ export { inRange } from './inRange.js';
3
+ export { mean } from './mean.js';
4
+ export { meanBy } from './meanBy.js';
5
+ export { median } from './median.js';
6
+ export { medianBy } from './medianBy.js';
7
+ export { random } from './random.js';
8
+ export { randomInt } from './randomInt.js';
9
+ export { range } from './range.js';
10
+ export { rangeRight } from './rangeRight.js';
11
+ export { round } from './round.js';
12
+ export { sum } from './sum.js';
13
+ export { sumBy } from './sumBy.js';
14
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACvC,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,OAAO,EAAE,GAAG,EAAE,MAAM,UAAU,CAAC;AAC/B,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC"}
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Calculates the average of an array of numbers.
3
+ *
4
+ * If the array is empty, this function returns `NaN`.
5
+ *
6
+ * @param {number[]} nums - An array of numbers to calculate the average.
7
+ * @returns {number} The average of all the numbers in the array.
8
+ *
9
+ * @example
10
+ * const numbers = [1, 2, 3, 4, 5];
11
+ * const result = mean(numbers);
12
+ * // result will be 3
13
+ */
14
+ export declare function mean(nums: readonly number[]): number;
15
+ //# sourceMappingURL=mean.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mean.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;GAYG;AACH,wBAAgB,IAAI,CAAC,IAAI,EAAE,SAAS,MAAM,EAAE,GAAG,MAAM,CAEpD"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Calculates the average of an array of numbers when applying
3
+ * the `getValue` function to each element.
4
+ *
5
+ * If the array is empty, this function returns `NaN`.
6
+ *
7
+ * @template T - The type of elements in the array.
8
+ * @param {T[]} items An array to calculate the average.
9
+ * @param {(element: T) => number} getValue A function that selects a numeric value from each element.
10
+ * @returns {number} The average of all the numbers as determined by the `getValue` function.
11
+ *
12
+ * @example
13
+ * meanBy([{ a: 1 }, { a: 2 }, { a: 3 }], x => x.a); // Returns: 2
14
+ * meanBy([], x => x.a); // Returns: NaN
15
+ */
16
+ export declare function meanBy<T>(items: readonly T[], getValue: (element: T) => number): number;
17
+ //# sourceMappingURL=meanBy.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"meanBy.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,MAAM,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,EAAE,QAAQ,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,MAAM,GAAG,MAAM,CAIvF"}
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Calculates the median of an array of numbers.
3
+ *
4
+ * The median is the middle value of a sorted array.
5
+ * If the array has an odd number of elements, the median is the middle value.
6
+ * If the array has an even number of elements, it returns the average of the two middle values.
7
+ *
8
+ * If the array is empty, this function returns `NaN`.
9
+ *
10
+ * @param {number[]} nums - An array of numbers to calculate the median.
11
+ * @returns {number} The median of all the numbers in the array.
12
+ *
13
+ * @example
14
+ * const arrayWithOddNumberOfElements = [1, 2, 3, 4, 5];
15
+ * const result = median(arrayWithOddNumberOfElements);
16
+ * // result will be 3
17
+ *
18
+ * @example
19
+ * const arrayWithEvenNumberOfElements = [1, 2, 3, 4];
20
+ * const result = median(arrayWithEvenNumberOfElements);
21
+ * // result will be 2.5
22
+ */
23
+ export declare function median(nums: readonly number[]): number;
24
+ //# sourceMappingURL=median.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"median.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAgB,MAAM,CAAC,IAAI,EAAE,SAAS,MAAM,EAAE,GAAG,MAAM,CAatD"}
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Calculates the median of an array of elements when applying
3
+ * the `getValue` function to each element.
4
+ *
5
+ * The median is the middle value of a sorted array.
6
+ * If the array has an odd number of elements, the median is the middle value.
7
+ * If the array has an even number of elements, it returns the average of the two middle values.
8
+ *
9
+ * If the array is empty, this function returns `NaN`.
10
+ *
11
+ * @template T - The type of elements in the array.
12
+ * @param {T[]} items An array to calculate the median.
13
+ * @param {(element: T) => number} getValue A function that selects a numeric value from each element.
14
+ * @returns {number} The median of all the numbers as determined by the `getValue` function.
15
+ *
16
+ * @example
17
+ * medianBy([{ a: 1 }, { a: 2 }, { a: 3 }, { a: 4 }, { a: 5 }], x => x.a); // Returns: 3
18
+ * medianBy([{ a: 1 }, { a: 2 }, { a: 3 }, { a: 4 }], x => x.a); // Returns: 2.5
19
+ * medianBy([], x => x.a); // Returns: NaN
20
+ */
21
+ export declare function medianBy<T>(items: readonly T[], getValue: (element: T) => number): number;
22
+ //# sourceMappingURL=medianBy.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"medianBy.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,QAAQ,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,EAAE,QAAQ,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,MAAM,GAAG,MAAM,CAIzF"}
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Generate a random number within the given range.
3
+ *
4
+ * If only one argument is provided, a number between `0` and the given number is returned.
5
+ *
6
+ * @param {number} maximum - The upper bound (exclusive).
7
+ * @returns {number} A random number between 0 (inclusive) and maximum (exclusive). The number can be an integer or a decimal.
8
+ * @throws {Error} Throws an error if `maximum` is not greater than `0`.
9
+ *
10
+ * @example
11
+ * const result1 = random(5); // Returns a random number between 0 and 5.
12
+ * const result2 = random(0); // If the `maximum` is less than or equal to 0, an error is thrown.
13
+ */
14
+ export declare function random(maximum: number): number;
15
+ /**
16
+ * Generate a random number within the given range.
17
+ *
18
+ * @param {number} minimum - The lower bound (inclusive).
19
+ * @param {number} maximum - The upper bound (exclusive).
20
+ * @returns {number} A random number between minimum (inclusive) and maximum (exclusive). The number can be an integer or a decimal.
21
+ * @throws {Error} Throws an error if `maximum` is not greater than `minimum`.
22
+ *
23
+ * @example
24
+ * const result1 = random(0, 5); // Returns a random number between 0 and 5.
25
+ * const result2 = random(5, 0); // If the minimum is greater than the maximum, an error is thrown.
26
+ * const result3 = random(5, 5); // If the minimum is equal to the maximum, an error is thrown.
27
+ */
28
+ export declare function random(minimum: number, maximum: number): number;
29
+ //# sourceMappingURL=random.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"random.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AACH,wBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;AAEhD;;;;;;;;;;;;GAYG;AACH,wBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Generates a random integer between 0 (inclusive) and the given maximum (exclusive).
3
+ *
4
+ * @param {number} maximum - The upper bound (exclusive).
5
+ * @returns {number} A random integer between 0 (inclusive) and maximum (exclusive).
6
+ * @throws {Error} Throws an error if `maximum` is not greater than `0`.
7
+ *
8
+ * @example
9
+ * const result = randomInt(5); // result will be a random integer between 0 (inclusive) and 5 (exclusive)
10
+ */
11
+ export declare function randomInt(maximum: number): number;
12
+ /**
13
+ * Generates a random integer between minimum (inclusive) and maximum (exclusive).
14
+ *
15
+ * @param {number} minimum - The lower bound (inclusive).
16
+ * @param {number} maximum - The upper bound (exclusive).
17
+ * @returns {number} A random integer between minimum (inclusive) and maximum (exclusive).
18
+ * @throws {Error} Throws an error if `maximum` is not greater than `minimum`.
19
+ *
20
+ * @example
21
+ * const result = randomInt(0, 5); // result will be a random integer between 0 (inclusive) and 5 (exclusive)
22
+ * const result2 = randomInt(5, 0); // This will throw an error
23
+ */
24
+ export declare function randomInt(minimum: number, maximum: number): number;
25
+ //# sourceMappingURL=randomInt.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"randomInt.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.ts"],"names":[],"mappings":"AAEA;;;;;;;;;GASG;AACH,wBAAgB,SAAS,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;AAEnD;;;;;;;;;;;GAWG;AACH,wBAAgB,SAAS,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC"}
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Returns an array of numbers from `0` (inclusive) to `end` (exclusive), incrementing by `1`.
3
+ *
4
+ * @param {number} end - The end number of the range (exclusive).
5
+ * @returns {number[]} An array of numbers from `0` (inclusive) to `end` (exclusive) with a step of `1`.
6
+ *
7
+ * @example
8
+ * // Returns [0, 1, 2, 3]
9
+ * range(4);
10
+ */
11
+ export declare function range(end: number): number[];
12
+ /**
13
+ * Returns an array of numbers from `start` (inclusive) to `end` (exclusive), incrementing by `1`.
14
+ *
15
+ * @param {number} start - The starting number of the range (inclusive).
16
+ * @param {number} end - The end number of the range (exclusive).
17
+ * @returns {number[]} An array of numbers from `start` (inclusive) to `end` (exclusive) with a step of `1`.
18
+ *
19
+ * @example
20
+ * // Returns [1, 2, 3]
21
+ * range(1, 4);
22
+ */
23
+ export declare function range(start: number, end: number): number[];
24
+ /**
25
+ * Returns an array of numbers from `start` (inclusive) to `end` (exclusive), incrementing by `step`.
26
+ *
27
+ * @param {number} start - The starting number of the range (inclusive).
28
+ * @param {number} end - The end number of the range (exclusive).
29
+ * @param {number} step - The step value for the range.
30
+ * @returns {number[]} An array of numbers from `start` (inclusive) to `end` (exclusive) with the specified `step`.
31
+ *
32
+ * @example
33
+ * // Returns [0, 5, 10, 15]
34
+ * range(0, 20, 5);
35
+ */
36
+ export declare function range(start: number, end: number, step: number): number[];
37
+ //# sourceMappingURL=range.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"range.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,wBAAgB,KAAK,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;AAE7C;;;;;;;;;;GAUG;AACH,wBAAgB,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;AAE5D;;;;;;;;;;;GAWG;AACH,wBAAgB,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC"}
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Returns an array of numbers from `end` (exclusive) to `0` (inclusive), decrementing by `1`.
3
+ *
4
+ * @param {number} end - The end number of the range (exclusive).
5
+ * @returns {number[]} An array of numbers from `end` (exclusive) to `0` (inclusive) with a step of `1`.
6
+ *
7
+ * @example
8
+ * // Returns [3, 2, 1, 0]
9
+ * rangeRight(4);
10
+ */
11
+ export declare function rangeRight(end: number): number[];
12
+ /**
13
+ * Returns an array of numbers from `end` (exclusive) to `start` (inclusive), decrementing by `1`.
14
+ *
15
+ * @param {number} start - The starting number of the range (inclusive).
16
+ * @param {number} end - The end number of the range (exclusive).
17
+ * @returns {number[]} An array of numbers from `end` (exclusive) to `start` (inclusive) with a step of `1`.
18
+ *
19
+ * @example
20
+ * // Returns [3, 2, 1]
21
+ * rangeRight(1, 4);
22
+ */
23
+ export declare function rangeRight(start: number, end: number): number[];
24
+ /**
25
+ * Returns an array of numbers from `end` (exclusive) to `start` (inclusive), decrementing by `step`.
26
+ *
27
+ * @param {number} start - The starting number of the range (inclusive).
28
+ * @param {number} end - The end number of the range (exclusive).
29
+ * @param {number} step - The step value for the range.
30
+ * @returns {number[]} An array of numbers from `end` (exclusive) to `start` (inclusive) with the specified `step`.
31
+ *
32
+ * @example
33
+ * // Returns [15, 10, 5, 0]
34
+ * rangeRight(0, 20, 5);
35
+ */
36
+ export declare function rangeRight(start: number, end: number, step: number): number[];
37
+ //# sourceMappingURL=rangeRight.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rangeRight.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;AAElD;;;;;;;;;;GAUG;AACH,wBAAgB,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;AAEjE;;;;;;;;;;;GAWG;AACH,wBAAgB,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC"}