@fedify/fedify 1.6.0-dev.814 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1249) hide show
  1. package/dist/_virtual/rolldown_runtime.js +15 -0
  2. package/dist/codegen/fs.js +23 -0
  3. package/dist/codegen/schema.js +87 -0
  4. package/dist/codegen/type.js +392 -0
  5. package/dist/compat/mod.d.ts +5 -0
  6. package/dist/compat/mod.js +7 -0
  7. package/dist/compat/transformers.d.ts +101 -0
  8. package/dist/compat/transformers.js +98 -0
  9. package/dist/compat/transformers.test.d.ts +2 -0
  10. package/dist/compat/transformers.test.js +69 -0
  11. package/dist/compat/types.d.ts +18 -0
  12. package/dist/deno.js +123 -0
  13. package/dist/federation/builder.d.ts +19 -0
  14. package/dist/federation/builder.js +491 -0
  15. package/dist/federation/builder.test.d.ts +2 -0
  16. package/dist/federation/builder.test.js +123 -0
  17. package/dist/federation/callback.d.ts +211 -0
  18. package/dist/federation/collection.d.ts +36 -0
  19. package/dist/federation/collection.js +48 -0
  20. package/dist/federation/collection.test.d.ts +2 -0
  21. package/dist/federation/collection.test.js +25 -0
  22. package/dist/federation/context.d.ts +724 -0
  23. package/dist/federation/federation.d.ts +689 -0
  24. package/dist/federation/handler.d.ts +44 -0
  25. package/dist/federation/handler.js +543 -0
  26. package/dist/federation/handler.test.d.ts +2 -0
  27. package/dist/federation/handler.test.js +1186 -0
  28. package/dist/federation/inbox.js +165 -0
  29. package/dist/federation/inbox.test.d.ts +2 -0
  30. package/dist/federation/inbox.test.js +88 -0
  31. package/dist/federation/keycache.js +47 -0
  32. package/dist/federation/keycache.test.d.ts +2 -0
  33. package/dist/federation/keycache.test.js +55 -0
  34. package/dist/federation/kv.d.ts +74 -0
  35. package/dist/federation/kv.js +51 -0
  36. package/dist/federation/kv.test.d.ts +2 -0
  37. package/dist/federation/kv.test.js +25 -0
  38. package/dist/federation/middleware.d.ts +101 -0
  39. package/dist/federation/middleware.js +1775 -0
  40. package/dist/federation/middleware.test.d.ts +2 -0
  41. package/dist/federation/middleware.test.js +1491 -0
  42. package/dist/federation/mod.d.ts +15 -0
  43. package/dist/federation/mod.js +14 -0
  44. package/dist/federation/mq.d.ts +127 -0
  45. package/dist/federation/mq.js +147 -0
  46. package/dist/federation/mq.test.d.ts +2 -0
  47. package/dist/federation/mq.test.js +128 -0
  48. package/dist/federation/negotiation.js +63 -0
  49. package/dist/federation/retry.d.ts +71 -0
  50. package/dist/federation/retry.js +36 -0
  51. package/dist/federation/retry.test.d.ts +2 -0
  52. package/dist/federation/retry.test.js +44 -0
  53. package/dist/federation/router.d.ts +91 -0
  54. package/dist/federation/router.js +99 -0
  55. package/dist/federation/router.test.d.ts +2 -0
  56. package/dist/federation/router.test.js +78 -0
  57. package/dist/federation/send.d.ts +29 -0
  58. package/dist/federation/send.js +127 -0
  59. package/dist/federation/send.test.d.ts +2 -0
  60. package/dist/federation/send.test.js +214 -0
  61. package/dist/mod.d.ts +36 -0
  62. package/dist/mod.js +33 -0
  63. package/dist/node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js +101 -0
  64. package/dist/node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/router.js +93 -0
  65. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert.js +26 -0
  66. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js +49 -0
  67. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_exists.js +32 -0
  68. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_false.js +26 -0
  69. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_greater.js +34 -0
  70. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_greater_or_equal.js +34 -0
  71. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_instance_of.js +40 -0
  72. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_is_error.js +48 -0
  73. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_not_equals.js +36 -0
  74. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_object_match.js +4 -0
  75. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_rejects.js +42 -0
  76. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_strict_equals.js +53 -0
  77. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_string_includes.js +32 -0
  78. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_throws.js +38 -0
  79. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assertion_error.js +33 -0
  80. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/equal.js +79 -0
  81. package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/mod.js +19 -0
  82. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/assertion_state.js +177 -0
  83. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/build_message.js +101 -0
  84. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/diff.js +274 -0
  85. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/diff_str.js +148 -0
  86. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/format.js +37 -0
  87. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/mod.js +10 -0
  88. package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/styles.js +172 -0
  89. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/assert_path.js +11 -0
  90. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/constants.js +16 -0
  91. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/dirname.js +14 -0
  92. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/from_file_url.js +13 -0
  93. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/normalize.js +14 -0
  94. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/normalize_string.js +60 -0
  95. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/strip_trailing_separators.js +15 -0
  96. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_os.js +9 -0
  97. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/basename.js +4 -0
  98. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/common.js +4 -0
  99. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/constants.js +4 -0
  100. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/dirname.js +35 -0
  101. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/extname.js +4 -0
  102. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/format.js +4 -0
  103. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/from_file_url.js +34 -0
  104. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/glob_to_regexp.js +4 -0
  105. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/is_absolute.js +4 -0
  106. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/join.js +35 -0
  107. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/join_globs.js +4 -0
  108. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/mod.js +7 -0
  109. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/normalize.js +4 -0
  110. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/normalize_glob.js +4 -0
  111. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/parse.js +4 -0
  112. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/_util.js +13 -0
  113. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/dirname.js +54 -0
  114. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/from_file_url.js +27 -0
  115. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/join.js +47 -0
  116. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/normalize.js +59 -0
  117. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/relative.js +4 -0
  118. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/resolve.js +4 -0
  119. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/to_file_url.js +4 -0
  120. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/to_namespaced_path.js +4 -0
  121. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/_util.js +19 -0
  122. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/dirname.js +75 -0
  123. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/from_file_url.js +31 -0
  124. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/join.js +54 -0
  125. package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/normalize.js +87 -0
  126. package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/_strip.js +17 -0
  127. package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/dirname.js +38 -0
  128. package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/join.js +36 -0
  129. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_chars.js +47 -0
  130. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_dumper_state.js +4 -0
  131. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_loader_state.js +884 -0
  132. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_schema.js +120 -0
  133. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/binary.js +92 -0
  134. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/bool.js +41 -0
  135. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/float.js +58 -0
  136. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/int.js +118 -0
  137. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/map.js +18 -0
  138. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/merge.js +14 -0
  139. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/nil.js +23 -0
  140. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/omap.js +31 -0
  141. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/pairs.js +22 -0
  142. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/regexp.js +29 -0
  143. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/seq.js +14 -0
  144. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/set.js +17 -0
  145. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/str.js +14 -0
  146. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/timestamp.js +57 -0
  147. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/undefined.js +24 -0
  148. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_utils.js +17 -0
  149. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/mod.js +5 -0
  150. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/parse.js +54 -0
  151. package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/stringify.js +4 -0
  152. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/AlwaysShrinkableArbitrary.js +30 -0
  153. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/ArrayArbitrary.js +203 -0
  154. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/ArrayInt64Arbitrary.js +122 -0
  155. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/BigIntArbitrary.js +63 -0
  156. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/ConstantArbitrary.js +58 -0
  157. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/FrequencyArbitrary.js +136 -0
  158. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/IntegerArbitrary.js +64 -0
  159. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/LazyArbitrary.js +29 -0
  160. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/StringUnitArbitrary.js +45 -0
  161. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/TupleArbitrary.js +74 -0
  162. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/WithShrinkFromOtherArbitrary.js +40 -0
  163. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/AnyArbitraryBuilder.js +97 -0
  164. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/BoxedArbitraryBuilder.js +13 -0
  165. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/CharacterArbitraryBuilder.js +17 -0
  166. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/RestrictedIntegerArbitraryBuilder.js +23 -0
  167. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/TypedIntArrayArbitraryBuilder.js +32 -0
  168. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/data/GraphemeRanges.js +990 -0
  169. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/ArrayInt64.js +98 -0
  170. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/BiasNumericRange.js +53 -0
  171. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/BuildSlicedGenerator.js +15 -0
  172. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/CustomEqualSet.js +27 -0
  173. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/DepthContext.js +24 -0
  174. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/DoubleHelpers.js +96 -0
  175. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/DoubleOnlyHelpers.js +25 -0
  176. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/FloatHelpers.js +57 -0
  177. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/FloatOnlyHelpers.js +26 -0
  178. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/FloatingOnlyHelpers.js +26 -0
  179. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/GraphemeRangesHelpers.js +58 -0
  180. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/MaxLengthFromMinLength.js +72 -0
  181. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/NoUndefinedAsContext.js +16 -0
  182. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/QualifiedObjectConstraints.js +58 -0
  183. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/SameValueSet.js +41 -0
  184. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/SameValueZeroSet.js +33 -0
  185. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/ShrinkBigInt.js +37 -0
  186. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/ShrinkInteger.js +41 -0
  187. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/SlicesForStringBuilder.js +74 -0
  188. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/StrictlyEqualSet.js +38 -0
  189. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/TokenizeString.js +47 -0
  190. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/implementations/NoopSlicedGenerator.js +21 -0
  191. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/implementations/SlicedBasedGenerator.js +53 -0
  192. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/ArrayToMap.js +16 -0
  193. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/ArrayToSet.js +16 -0
  194. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/CodePointsToString.js +17 -0
  195. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/IndexToCharString.js +20 -0
  196. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/IndexToMappedConstant.js +69 -0
  197. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/IndexToPrintableIndex.js +18 -0
  198. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/KeyValuePairsToObject.js +42 -0
  199. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/PatternsToString.js +32 -0
  200. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/TimeToDate.js +30 -0
  201. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/UnboxedToBoxed.js +22 -0
  202. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/anything.js +14 -0
  203. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/array.js +22 -0
  204. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/bigInt.js +38 -0
  205. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/boolean.js +24 -0
  206. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/constant.js +13 -0
  207. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/constantFrom.js +14 -0
  208. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/date.js +30 -0
  209. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/dictionary.js +27 -0
  210. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/double.js +54 -0
  211. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/float.js +60 -0
  212. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/float32Array.js +22 -0
  213. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/float64Array.js +22 -0
  214. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/fullUnicode.js +24 -0
  215. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/fullUnicodeString.js +20 -0
  216. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/int16Array.js +15 -0
  217. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/int32Array.js +15 -0
  218. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/int8Array.js +15 -0
  219. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/integer.js +26 -0
  220. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/letrec.js +28 -0
  221. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/mapToConstant.js +26 -0
  222. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/maxSafeInteger.js +15 -0
  223. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/nat.js +17 -0
  224. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/noBias.js +11 -0
  225. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/oneof.js +31 -0
  226. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/sparseArray.js +68 -0
  227. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/string.js +32 -0
  228. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/tuple.js +13 -0
  229. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint16Array.js +15 -0
  230. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint32Array.js +15 -0
  231. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint8Array.js +15 -0
  232. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint8ClampedArray.js +15 -0
  233. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uniqueArray.js +47 -0
  234. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/arbitrary/definition/Arbitrary.js +184 -0
  235. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/arbitrary/definition/Value.js +31 -0
  236. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/precondition/PreconditionFailure.js +19 -0
  237. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/IRawProperty.js +12 -0
  238. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/IgnoreEqualValuesProperty.js +52 -0
  239. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/Property.generic.js +77 -0
  240. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/Property.js +22 -0
  241. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/SkipAfterProperty.js +61 -0
  242. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/TimeoutProperty.js +52 -0
  243. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/UnbiasedProperty.js +29 -0
  244. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/DecorateProperty.js +26 -0
  245. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/Runner.js +61 -0
  246. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/RunnerIterator.js +47 -0
  247. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/SourceValuesIterator.js +35 -0
  248. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/Tosser.js +33 -0
  249. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/configuration/GlobalParameters.js +12 -0
  250. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/configuration/QualifiedParameters.js +121 -0
  251. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/configuration/VerbosityLevel.js +14 -0
  252. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/reporter/ExecutionStatus.js +14 -0
  253. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/reporter/RunExecution.js +116 -0
  254. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/utils/PathWalker.js +24 -0
  255. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/utils/RunDetailsFormatter.js +135 -0
  256. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/symbols.js +15 -0
  257. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/random/generator/Random.js +48 -0
  258. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/stream/LazyIterableIterator.js +24 -0
  259. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/stream/Stream.js +84 -0
  260. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/stream/StreamHelpers.js +50 -0
  261. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/utils/apply.js +28 -0
  262. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/utils/globals.js +309 -0
  263. package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/utils/stringify.js +217 -0
  264. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UniformArrayIntDistribution.js +20 -0
  265. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UniformBigIntDistribution.js +20 -0
  266. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UniformIntDistribution.js +20 -0
  267. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UnsafeUniformArrayIntDistribution.js +20 -0
  268. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UnsafeUniformBigIntDistribution.js +32 -0
  269. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UnsafeUniformIntDistribution.js +43 -0
  270. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/internals/ArrayInt.js +139 -0
  271. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/internals/UnsafeUniformArrayIntDistributionInternal.js +26 -0
  272. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/internals/UnsafeUniformIntDistributionInternal.js +14 -0
  273. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/LinearCongruential.js +53 -0
  274. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/MersenneTwister.js +114 -0
  275. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/RandomGenerator.js +26 -0
  276. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/XorShift.js +83 -0
  277. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/XoroShiro.js +83 -0
  278. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/pure-rand-default.js +44 -0
  279. package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/pure-rand.js +22 -0
  280. package/dist/nodeinfo/client.d.ts +96 -0
  281. package/dist/nodeinfo/client.js +272 -0
  282. package/dist/nodeinfo/client.test.d.ts +2 -0
  283. package/dist/nodeinfo/client.test.js +968 -0
  284. package/dist/nodeinfo/handler.js +46 -0
  285. package/dist/nodeinfo/handler.test.d.ts +2 -0
  286. package/dist/nodeinfo/handler.test.js +94 -0
  287. package/dist/nodeinfo/mod.d.ts +6 -0
  288. package/dist/nodeinfo/mod.js +9 -0
  289. package/dist/nodeinfo/semver.d.ts +78 -0
  290. package/dist/nodeinfo/semver.js +148 -0
  291. package/dist/nodeinfo/semver.test.d.ts +2 -0
  292. package/dist/nodeinfo/semver.test.js +134 -0
  293. package/dist/nodeinfo/types.d.ts +140 -0
  294. package/dist/nodeinfo/types.js +50 -0
  295. package/dist/nodeinfo/types.test.d.ts +2 -0
  296. package/dist/nodeinfo/types.test.js +197 -0
  297. package/dist/runtime/authdocloader.d.ts +56 -0
  298. package/dist/runtime/authdocloader.js +52 -0
  299. package/dist/runtime/authdocloader.test.d.ts +2 -0
  300. package/dist/runtime/authdocloader.test.js +54 -0
  301. package/dist/runtime/contexts.js +4116 -0
  302. package/dist/runtime/docloader.d.ts +211 -0
  303. package/dist/runtime/docloader.js +291 -0
  304. package/dist/runtime/docloader.test.d.ts +2 -0
  305. package/dist/runtime/docloader.test.js +428 -0
  306. package/dist/runtime/key.d.ts +66 -0
  307. package/dist/runtime/key.js +156 -0
  308. package/dist/runtime/key.test.d.ts +2 -0
  309. package/dist/runtime/key.test.js +93 -0
  310. package/dist/runtime/langstr.d.ts +24 -0
  311. package/dist/runtime/langstr.js +32 -0
  312. package/dist/runtime/langstr.test.d.ts +2 -0
  313. package/dist/runtime/langstr.test.js +31 -0
  314. package/dist/runtime/mod.d.ts +7 -0
  315. package/dist/runtime/mod.js +10 -0
  316. package/dist/runtime/multibase/base.js +32 -0
  317. package/dist/runtime/multibase/constants.js +172 -0
  318. package/dist/runtime/multibase/index.js +57 -0
  319. package/dist/runtime/multibase/multibase.test.d.ts +2 -0
  320. package/dist/runtime/multibase/multibase.test.js +351 -0
  321. package/dist/runtime/multibase/rfc4648.js +61 -0
  322. package/dist/runtime/multibase/util.js +21 -0
  323. package/dist/runtime/url.js +67 -0
  324. package/dist/runtime/url.test.d.ts +2 -0
  325. package/dist/runtime/url.test.js +43 -0
  326. package/dist/sig/http.d.ts +143 -0
  327. package/dist/sig/http.js +720 -0
  328. package/dist/sig/http.test.d.ts +2 -0
  329. package/dist/sig/http.test.js +1094 -0
  330. package/dist/sig/key.d.ts +125 -0
  331. package/dist/sig/key.js +257 -0
  332. package/dist/sig/key.test.d.ts +2 -0
  333. package/dist/sig/key.test.js +242 -0
  334. package/dist/sig/ld.d.ts +150 -0
  335. package/dist/sig/ld.js +270 -0
  336. package/dist/sig/ld.test.d.ts +2 -0
  337. package/dist/sig/ld.test.js +224 -0
  338. package/dist/sig/mod.d.ts +8 -0
  339. package/dist/sig/mod.js +11 -0
  340. package/dist/sig/owner.d.ts +74 -0
  341. package/dist/sig/owner.js +89 -0
  342. package/dist/sig/owner.test.d.ts +2 -0
  343. package/dist/sig/owner.test.js +45 -0
  344. package/dist/sig/proof.d.ts +134 -0
  345. package/dist/sig/proof.js +262 -0
  346. package/dist/sig/proof.test.d.ts +2 -0
  347. package/dist/sig/proof.test.js +263 -0
  348. package/dist/testing/context.js +94 -0
  349. package/dist/testing/docloader.js +48 -0
  350. package/dist/testing/docloader.test.d.ts +2 -0
  351. package/dist/testing/docloader.test.js +15 -0
  352. package/dist/testing/keys.js +123 -0
  353. package/dist/testing/mod.js +136 -0
  354. package/dist/vocab/actor.d.ts +133 -0
  355. package/dist/vocab/actor.js +148 -0
  356. package/dist/vocab/actor.test.d.ts +2 -0
  357. package/dist/vocab/actor.test.js +114 -0
  358. package/dist/vocab/constants.d.ts +24 -0
  359. package/dist/vocab/constants.js +17 -0
  360. package/dist/vocab/lookup.d.ts +123 -0
  361. package/dist/vocab/lookup.js +162 -0
  362. package/dist/vocab/lookup.test.d.ts +2 -0
  363. package/dist/vocab/lookup.test.js +113 -0
  364. package/dist/vocab/mod.d.ts +8 -0
  365. package/dist/vocab/mod.js +11 -0
  366. package/dist/vocab/type.d.ts +107 -0
  367. package/dist/vocab/type.js +13 -0
  368. package/dist/vocab/type.test.d.ts +2 -0
  369. package/dist/vocab/type.test.js +24 -0
  370. package/dist/vocab/vocab.d.ts +14448 -0
  371. package/dist/vocab/vocab.js +35617 -0
  372. package/dist/vocab/vocab.test.d.ts +2 -0
  373. package/dist/vocab/vocab.test.js +849 -0
  374. package/dist/webfinger/handler.js +140 -0
  375. package/dist/webfinger/handler.test.d.ts +2 -0
  376. package/dist/webfinger/handler.test.js +483 -0
  377. package/dist/webfinger/jrd.d.ts +60 -0
  378. package/dist/webfinger/lookup.d.ts +47 -0
  379. package/dist/webfinger/lookup.js +131 -0
  380. package/dist/webfinger/lookup.test.d.ts +2 -0
  381. package/dist/webfinger/lookup.test.js +119 -0
  382. package/dist/webfinger/mod.d.ts +5 -0
  383. package/dist/webfinger/mod.js +7 -0
  384. package/dist/x/denokv.js +41 -0
  385. package/dist/x/hono.d.ts +40 -0
  386. package/dist/x/hono.js +48 -0
  387. package/dist/x/sveltekit.d.ts +36 -0
  388. package/dist/x/sveltekit.js +56 -0
  389. package/package.json +57 -60
  390. package/CHANGES.md +0 -3883
  391. package/CONTRIBUTING.md +0 -272
  392. package/FEDERATION.md +0 -85
  393. package/LICENSE +0 -20
  394. package/SECURITY.md +0 -22
  395. package/SPONSORS.md +0 -47
  396. package/esm/_dnt.polyfills.js +0 -15
  397. package/esm/_dnt.shims.js +0 -70
  398. package/esm/compat/mod.js +0 -3
  399. package/esm/compat/transformers.js +0 -95
  400. package/esm/compat/types.js +0 -1
  401. package/esm/deno.js +0 -110
  402. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.js +0 -9
  403. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.js +0 -28
  404. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.js +0 -36
  405. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.js +0 -21
  406. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.js +0 -36
  407. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.js +0 -26
  408. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.js +0 -38
  409. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.js +0 -35
  410. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.js +0 -20
  411. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.js +0 -23
  412. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.js +0 -26
  413. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.js +0 -25
  414. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.js +0 -37
  415. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.js +0 -24
  416. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.js +0 -17
  417. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.js +0 -33
  418. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.js +0 -15
  419. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.js +0 -28
  420. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.js +0 -44
  421. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.js +0 -18
  422. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.js +0 -60
  423. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.js +0 -16
  424. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.js +0 -24
  425. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.js +0 -37
  426. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.js +0 -41
  427. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.js +0 -27
  428. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.js +0 -34
  429. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.js +0 -36
  430. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.js +0 -25
  431. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.js +0 -37
  432. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.js +0 -37
  433. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.js +0 -52
  434. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.js +0 -36
  435. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.js +0 -33
  436. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.js +0 -25
  437. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.js +0 -35
  438. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.js +0 -18
  439. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.js +0 -35
  440. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.js +0 -25
  441. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.js +0 -36
  442. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.js +0 -27
  443. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.js +0 -27
  444. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.js +0 -29
  445. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.js +0 -25
  446. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.js +0 -29
  447. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.js +0 -22
  448. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.js +0 -21
  449. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.js +0 -26
  450. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.js +0 -24
  451. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.js +0 -18
  452. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.js +0 -37
  453. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.js +0 -26
  454. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.js +0 -31
  455. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.js +0 -26
  456. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.js +0 -44
  457. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.js +0 -24
  458. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.js +0 -23
  459. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.js +0 -27
  460. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.js +0 -26
  461. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.js +0 -39
  462. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.js +0 -37
  463. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.js +0 -32
  464. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.js +0 -3
  465. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.js +0 -13
  466. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.js +0 -26
  467. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.js +0 -23
  468. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.js +0 -27
  469. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.js +0 -51
  470. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.js +0 -17
  471. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.js +0 -16
  472. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.js +0 -26
  473. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.js +0 -23
  474. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.js +0 -23
  475. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.js +0 -10
  476. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.js +0 -10
  477. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.js +0 -2
  478. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.js +0 -40
  479. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.js +0 -23
  480. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.js +0 -10
  481. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.js +0 -40
  482. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.js +0 -42
  483. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.js +0 -44
  484. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.js +0 -97
  485. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.js +0 -24
  486. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.js +0 -21
  487. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.js +0 -22
  488. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.js +0 -21
  489. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.js +0 -86
  490. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.js +0 -16
  491. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.js +0 -10
  492. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.js +0 -28
  493. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.js +0 -45
  494. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.js +0 -47
  495. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.js +0 -40
  496. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.js +0 -41
  497. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.js +0 -21
  498. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.js +0 -46
  499. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.js +0 -18
  500. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.js +0 -65
  501. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.js +0 -23
  502. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.js +0 -24
  503. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.js +0 -13
  504. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.js +0 -17
  505. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.js +0 -20
  506. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.js +0 -35
  507. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.js +0 -25
  508. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.js +0 -23
  509. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.js +0 -18
  510. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.js +0 -32
  511. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.js +0 -32
  512. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.js +0 -24
  513. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.js +0 -20
  514. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.js +0 -22
  515. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.js +0 -70
  516. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.js +0 -50
  517. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.js +0 -201
  518. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.js +0 -22
  519. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.js +0 -49
  520. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.js +0 -17
  521. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.js +0 -28
  522. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.js +0 -27
  523. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.js +0 -28
  524. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.js +0 -69
  525. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.js +0 -71
  526. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.js +0 -25
  527. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.js +0 -31
  528. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.js +0 -27
  529. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.js +0 -31
  530. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.js +0 -66
  531. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.js +0 -47
  532. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.js +0 -66
  533. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.js +0 -30
  534. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.js +0 -20
  535. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.js +0 -23
  536. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.js +0 -25
  537. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.js +0 -17
  538. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.js +0 -23
  539. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.js +0 -16
  540. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.js +0 -19
  541. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.js +0 -218
  542. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.js +0 -16
  543. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.js +0 -26
  544. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.js +0 -16
  545. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.js +0 -40
  546. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.js +0 -94
  547. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.js +0 -24
  548. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.js +0 -20
  549. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.js +0 -22
  550. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.js +0 -17
  551. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.js +0 -19
  552. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.js +0 -23
  553. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.js +0 -56
  554. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.js +0 -31
  555. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.js +0 -20
  556. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.js +0 -16
  557. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.js +0 -20
  558. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.js +0 -20
  559. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.js +0 -26
  560. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.js +0 -29
  561. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.js +0 -23
  562. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.js +0 -23
  563. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.js +0 -23
  564. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.js +0 -52
  565. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.js +0 -5
  566. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.js +0 -69
  567. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.js +0 -99
  568. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.js +0 -20
  569. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.js +0 -29
  570. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.js +0 -26
  571. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.js +0 -14
  572. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.js +0 -19
  573. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.js +0 -64
  574. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.js +0 -23
  575. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.js +0 -14
  576. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.js +0 -21
  577. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.js +0 -19
  578. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.js +0 -19
  579. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.js +0 -14
  580. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.js +0 -19
  581. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.js +0 -20
  582. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.js +0 -16
  583. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.js +0 -19
  584. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.js +0 -26
  585. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.js +0 -20
  586. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.js +0 -39
  587. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.js +0 -36
  588. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.js +0 -23
  589. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.js +0 -26
  590. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.js +0 -14
  591. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.js +0 -38
  592. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.js +0 -47
  593. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.js +0 -41
  594. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.js +0 -4
  595. package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.js +0 -33
  596. package/esm/federation/builder.js +0 -652
  597. package/esm/federation/callback.js +0 -1
  598. package/esm/federation/collection.js +0 -43
  599. package/esm/federation/context.js +0 -1
  600. package/esm/federation/federation.js +0 -1
  601. package/esm/federation/handler.js +0 -574
  602. package/esm/federation/inbox.js +0 -146
  603. package/esm/federation/keycache.js +0 -42
  604. package/esm/federation/kv.js +0 -52
  605. package/esm/federation/middleware.js +0 -2071
  606. package/esm/federation/mod.js +0 -17
  607. package/esm/federation/mq.js +0 -161
  608. package/esm/federation/negotiation.js +0 -92
  609. package/esm/federation/queue.js +0 -1
  610. package/esm/federation/retry.js +0 -34
  611. package/esm/federation/router.js +0 -97
  612. package/esm/federation/send.js +0 -129
  613. package/esm/mod.js +0 -52
  614. package/esm/nodeinfo/client.js +0 -372
  615. package/esm/nodeinfo/handler.js +0 -49
  616. package/esm/nodeinfo/mod.js +0 -11
  617. package/esm/nodeinfo/semver.js +0 -150
  618. package/esm/nodeinfo/types.js +0 -60
  619. package/esm/package.json +0 -3
  620. package/esm/runtime/contexts.js +0 -4191
  621. package/esm/runtime/docloader.js +0 -351
  622. package/esm/runtime/key.js +0 -153
  623. package/esm/runtime/langstr.js +0 -25
  624. package/esm/runtime/mod.js +0 -10
  625. package/esm/runtime/multibase/base.js +0 -30
  626. package/esm/runtime/multibase/constants.js +0 -78
  627. package/esm/runtime/multibase/index.js +0 -59
  628. package/esm/runtime/multibase/rfc4648.js +0 -79
  629. package/esm/runtime/multibase/util.js +0 -13
  630. package/esm/runtime/url.js +0 -96
  631. package/esm/sig/http.js +0 -845
  632. package/esm/sig/key.js +0 -253
  633. package/esm/sig/ld.js +0 -288
  634. package/esm/sig/mod.js +0 -11
  635. package/esm/sig/owner.js +0 -103
  636. package/esm/sig/proof.js +0 -269
  637. package/esm/vocab/actor.js +0 -168
  638. package/esm/vocab/constants.js +0 -9
  639. package/esm/vocab/lookup.js +0 -174
  640. package/esm/vocab/mod.js +0 -57
  641. package/esm/vocab/type.js +0 -6
  642. package/esm/vocab/vocab.js +0 -51266
  643. package/esm/webfinger/handler.js +0 -173
  644. package/esm/webfinger/jrd.js +0 -1
  645. package/esm/webfinger/lookup.js +0 -136
  646. package/esm/webfinger/mod.js +0 -8
  647. package/esm/x/hono.js +0 -65
  648. package/esm/x/sveltekit.js +0 -65
  649. package/logo.svg +0 -185
  650. package/types/_dnt.polyfills.d.ts +0 -18
  651. package/types/_dnt.polyfills.d.ts.map +0 -1
  652. package/types/_dnt.shims.d.ts +0 -14
  653. package/types/_dnt.shims.d.ts.map +0 -1
  654. package/types/compat/mod.d.ts +0 -4
  655. package/types/compat/mod.d.ts.map +0 -1
  656. package/types/compat/transformers.d.ts +0 -77
  657. package/types/compat/transformers.d.ts.map +0 -1
  658. package/types/compat/types.d.ts +0 -8
  659. package/types/compat/types.d.ts.map +0 -1
  660. package/types/deno.d.ts +0 -84
  661. package/types/deno.d.ts.map +0 -1
  662. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.d.ts +0 -2
  663. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.d.ts.map +0 -1
  664. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.d.ts +0 -17
  665. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.d.ts.map +0 -1
  666. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.d.ts +0 -25
  667. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.d.ts.map +0 -1
  668. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.d.ts +0 -15
  669. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.d.ts.map +0 -1
  670. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.d.ts +0 -29
  671. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.d.ts.map +0 -1
  672. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.d.ts +0 -24
  673. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.d.ts.map +0 -1
  674. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.d.ts +0 -34
  675. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.d.ts.map +0 -1
  676. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.d.ts +0 -30
  677. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.d.ts.map +0 -1
  678. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.d.ts +0 -18
  679. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.d.ts.map +0 -1
  680. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.d.ts +0 -18
  681. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.d.ts.map +0 -1
  682. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.d.ts +0 -20
  683. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.d.ts.map +0 -1
  684. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.d.ts +0 -20
  685. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.d.ts.map +0 -1
  686. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.d.ts +0 -85
  687. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.d.ts.map +0 -1
  688. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.d.ts +0 -22
  689. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.d.ts.map +0 -1
  690. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.d.ts +0 -16
  691. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.d.ts.map +0 -1
  692. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.d.ts +0 -18
  693. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.d.ts.map +0 -1
  694. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.d.ts +0 -24
  695. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.d.ts.map +0 -1
  696. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.d.ts +0 -47
  697. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.d.ts.map +0 -1
  698. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.d.ts +0 -34
  699. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.d.ts.map +0 -1
  700. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.d.ts +0 -33
  701. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.d.ts.map +0 -1
  702. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.d.ts +0 -61
  703. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.d.ts.map +0 -1
  704. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.d.ts +0 -53
  705. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.d.ts.map +0 -1
  706. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.d.ts +0 -20
  707. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.d.ts.map +0 -1
  708. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.d.ts +0 -35
  709. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.d.ts.map +0 -1
  710. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.d.ts +0 -36
  711. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.d.ts.map +0 -1
  712. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.d.ts +0 -25
  713. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.d.ts.map +0 -1
  714. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.d.ts +0 -32
  715. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.d.ts.map +0 -1
  716. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.d.ts +0 -29
  717. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.d.ts.map +0 -1
  718. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.d.ts +0 -47
  719. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.d.ts.map +0 -1
  720. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.d.ts +0 -44
  721. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.d.ts.map +0 -1
  722. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.d.ts +0 -44
  723. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.d.ts.map +0 -1
  724. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.d.ts +0 -36
  725. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.d.ts.map +0 -1
  726. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.d.ts +0 -24
  727. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.d.ts.map +0 -1
  728. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.d.ts +0 -18
  729. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.d.ts.map +0 -1
  730. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.d.ts +0 -18
  731. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.d.ts.map +0 -1
  732. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.d.ts +0 -18
  733. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.d.ts.map +0 -1
  734. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.d.ts +0 -16
  735. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.d.ts.map +0 -1
  736. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.d.ts +0 -20
  737. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.d.ts.map +0 -1
  738. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.d.ts +0 -16
  739. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.d.ts.map +0 -1
  740. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.d.ts +0 -34
  741. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.d.ts.map +0 -1
  742. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.d.ts +0 -66
  743. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.d.ts.map +0 -1
  744. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.d.ts +0 -24
  745. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.d.ts.map +0 -1
  746. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.d.ts +0 -23
  747. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.d.ts.map +0 -1
  748. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.d.ts +0 -19
  749. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.d.ts.map +0 -1
  750. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.d.ts +0 -20
  751. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.d.ts.map +0 -1
  752. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.d.ts +0 -91
  753. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.d.ts.map +0 -1
  754. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.d.ts +0 -19
  755. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.d.ts.map +0 -1
  756. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.d.ts +0 -24
  757. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.d.ts.map +0 -1
  758. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.d.ts +0 -22
  759. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.d.ts.map +0 -1
  760. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.d.ts +0 -17
  761. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.d.ts.map +0 -1
  762. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.d.ts +0 -28
  763. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.d.ts.map +0 -1
  764. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.d.ts +0 -17
  765. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.d.ts.map +0 -1
  766. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.d.ts +0 -19
  767. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.d.ts.map +0 -1
  768. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.d.ts +0 -16
  769. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.d.ts.map +0 -1
  770. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.d.ts +0 -49
  771. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.d.ts.map +0 -1
  772. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.d.ts +0 -22
  773. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.d.ts.map +0 -1
  774. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.d.ts +0 -19
  775. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.d.ts.map +0 -1
  776. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.d.ts +0 -21
  777. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.d.ts.map +0 -1
  778. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.d.ts +0 -20
  779. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.d.ts.map +0 -1
  780. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.d.ts +0 -105
  781. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.d.ts.map +0 -1
  782. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.d.ts +0 -32
  783. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.d.ts.map +0 -1
  784. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.d.ts +0 -71
  785. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.d.ts.map +0 -1
  786. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.d.ts +0 -2
  787. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.d.ts.map +0 -1
  788. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.d.ts +0 -9
  789. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.d.ts.map +0 -1
  790. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.d.ts +0 -27
  791. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.d.ts.map +0 -1
  792. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.d.ts +0 -22
  793. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.d.ts.map +0 -1
  794. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.d.ts +0 -26
  795. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.d.ts.map +0 -1
  796. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.d.ts +0 -24
  797. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.d.ts.map +0 -1
  798. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.d.ts +0 -16
  799. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.d.ts.map +0 -1
  800. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.d.ts +0 -15
  801. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.d.ts.map +0 -1
  802. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.d.ts +0 -16
  803. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.d.ts.map +0 -1
  804. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.d.ts +0 -19
  805. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.d.ts.map +0 -1
  806. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.d.ts +0 -18
  807. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.d.ts.map +0 -1
  808. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.d.ts +0 -8
  809. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.d.ts.map +0 -1
  810. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.d.ts +0 -8
  811. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.d.ts.map +0 -1
  812. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.d.ts +0 -3
  813. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.d.ts.map +0 -1
  814. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.d.ts +0 -30
  815. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.d.ts.map +0 -1
  816. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.d.ts +0 -20
  817. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.d.ts.map +0 -1
  818. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.d.ts +0 -11
  819. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.d.ts.map +0 -1
  820. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.d.ts +0 -30
  821. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.d.ts.map +0 -1
  822. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.d.ts +0 -125
  823. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.d.ts.map +0 -1
  824. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.d.ts +0 -139
  825. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.d.ts.map +0 -1
  826. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.d.ts +0 -74
  827. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.d.ts.map +0 -1
  828. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.d.ts +0 -131
  829. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.d.ts.map +0 -1
  830. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.d.ts +0 -143
  831. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.d.ts.map +0 -1
  832. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.d.ts +0 -21
  833. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.d.ts.map +0 -1
  834. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.d.ts +0 -22
  835. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.d.ts.map +0 -1
  836. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.d.ts +0 -123
  837. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.d.ts.map +0 -1
  838. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.d.ts +0 -15
  839. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.d.ts.map +0 -1
  840. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.d.ts +0 -11
  841. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.d.ts.map +0 -1
  842. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.d.ts +0 -34
  843. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.d.ts.map +0 -1
  844. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.d.ts +0 -552
  845. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.d.ts.map +0 -1
  846. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.d.ts +0 -629
  847. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.d.ts.map +0 -1
  848. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.d.ts +0 -32
  849. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.d.ts.map +0 -1
  850. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.d.ts +0 -77
  851. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.d.ts.map +0 -1
  852. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.d.ts +0 -18
  853. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.d.ts.map +0 -1
  854. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.d.ts +0 -48
  855. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.d.ts.map +0 -1
  856. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.d.ts +0 -16
  857. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.d.ts.map +0 -1
  858. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.d.ts +0 -66
  859. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.d.ts.map +0 -1
  860. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.d.ts +0 -31
  861. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.d.ts.map +0 -1
  862. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.d.ts +0 -26
  863. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.d.ts.map +0 -1
  864. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.d.ts +0 -14
  865. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.d.ts.map +0 -1
  866. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.d.ts +0 -15
  867. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.d.ts.map +0 -1
  868. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.d.ts +0 -17
  869. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.d.ts.map +0 -1
  870. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.d.ts +0 -24
  871. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.d.ts.map +0 -1
  872. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.d.ts +0 -22
  873. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.d.ts.map +0 -1
  874. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.d.ts +0 -29
  875. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.d.ts.map +0 -1
  876. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.d.ts +0 -25
  877. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.d.ts.map +0 -1
  878. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.d.ts +0 -37
  879. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.d.ts.map +0 -1
  880. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.d.ts +0 -37
  881. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.d.ts.map +0 -1
  882. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.d.ts +0 -19
  883. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.d.ts.map +0 -1
  884. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.d.ts +0 -15
  885. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.d.ts.map +0 -1
  886. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.d.ts +0 -17
  887. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.d.ts.map +0 -1
  888. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.d.ts +0 -30
  889. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.d.ts.map +0 -1
  890. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.d.ts +0 -48
  891. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.d.ts.map +0 -1
  892. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.d.ts +0 -44
  893. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.d.ts.map +0 -1
  894. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.d.ts +0 -20
  895. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.d.ts.map +0 -1
  896. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.d.ts +0 -36
  897. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.d.ts.map +0 -1
  898. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.d.ts +0 -18
  899. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.d.ts.map +0 -1
  900. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.d.ts +0 -20
  901. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.d.ts.map +0 -1
  902. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.d.ts +0 -19
  903. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.d.ts.map +0 -1
  904. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.d.ts +0 -20
  905. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.d.ts.map +0 -1
  906. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.d.ts +0 -42
  907. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.d.ts.map +0 -1
  908. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.d.ts +0 -50
  909. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.d.ts.map +0 -1
  910. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.d.ts +0 -19
  911. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.d.ts.map +0 -1
  912. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.d.ts +0 -21
  913. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.d.ts.map +0 -1
  914. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.d.ts +0 -19
  915. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.d.ts.map +0 -1
  916. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.d.ts +0 -21
  917. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.d.ts.map +0 -1
  918. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.d.ts +0 -53
  919. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.d.ts.map +0 -1
  920. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.d.ts +0 -44
  921. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.d.ts.map +0 -1
  922. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.d.ts +0 -53
  923. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.d.ts.map +0 -1
  924. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.d.ts +0 -31
  925. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.d.ts.map +0 -1
  926. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.d.ts +0 -19
  927. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.d.ts.map +0 -1
  928. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.d.ts +0 -18
  929. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.d.ts.map +0 -1
  930. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.d.ts +0 -24
  931. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.d.ts.map +0 -1
  932. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.d.ts +0 -16
  933. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.d.ts.map +0 -1
  934. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.d.ts +0 -20
  935. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.d.ts.map +0 -1
  936. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.d.ts +0 -15
  937. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.d.ts.map +0 -1
  938. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.d.ts +0 -16
  939. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.d.ts.map +0 -1
  940. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.d.ts +0 -37
  941. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.d.ts.map +0 -1
  942. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.d.ts +0 -15
  943. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.d.ts.map +0 -1
  944. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.d.ts +0 -20
  945. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.d.ts.map +0 -1
  946. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.d.ts +0 -15
  947. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.d.ts.map +0 -1
  948. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.d.ts +0 -30
  949. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.d.ts.map +0 -1
  950. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.d.ts +0 -55
  951. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.d.ts.map +0 -1
  952. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.d.ts +0 -23
  953. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.d.ts.map +0 -1
  954. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.d.ts +0 -19
  955. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.d.ts.map +0 -1
  956. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.d.ts +0 -21
  957. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.d.ts.map +0 -1
  958. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.d.ts +0 -16
  959. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.d.ts.map +0 -1
  960. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.d.ts +0 -18
  961. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.d.ts.map +0 -1
  962. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.d.ts +0 -22
  963. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.d.ts.map +0 -1
  964. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.d.ts +0 -44
  965. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.d.ts.map +0 -1
  966. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.d.ts +0 -30
  967. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.d.ts.map +0 -1
  968. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.d.ts +0 -19
  969. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.d.ts.map +0 -1
  970. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.d.ts +0 -15
  971. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.d.ts.map +0 -1
  972. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.d.ts +0 -19
  973. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.d.ts.map +0 -1
  974. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.d.ts +0 -19
  975. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.d.ts.map +0 -1
  976. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.d.ts +0 -25
  977. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.d.ts.map +0 -1
  978. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.d.ts +0 -28
  979. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.d.ts.map +0 -1
  980. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.d.ts +0 -22
  981. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.d.ts.map +0 -1
  982. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.d.ts +0 -22
  983. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.d.ts.map +0 -1
  984. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.d.ts +0 -22
  985. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.d.ts.map +0 -1
  986. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.d.ts +0 -38
  987. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.d.ts.map +0 -1
  988. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.d.ts +0 -6
  989. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.d.ts.map +0 -1
  990. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.d.ts +0 -63
  991. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.d.ts.map +0 -1
  992. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.d.ts +0 -80
  993. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.d.ts.map +0 -1
  994. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.d.ts +0 -16
  995. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.d.ts.map +0 -1
  996. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.d.ts +0 -27
  997. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.d.ts.map +0 -1
  998. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.d.ts +0 -18
  999. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.d.ts.map +0 -1
  1000. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.d.ts +0 -15
  1001. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.d.ts.map +0 -1
  1002. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.d.ts +0 -16
  1003. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.d.ts.map +0 -1
  1004. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.d.ts +0 -21
  1005. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.d.ts.map +0 -1
  1006. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.d.ts +0 -15
  1007. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.d.ts.map +0 -1
  1008. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.d.ts +0 -13
  1009. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.d.ts.map +0 -1
  1010. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.d.ts +0 -22
  1011. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.d.ts.map +0 -1
  1012. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.d.ts +0 -16
  1013. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.d.ts.map +0 -1
  1014. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.d.ts +0 -16
  1015. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.d.ts.map +0 -1
  1016. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.d.ts +0 -13
  1017. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.d.ts.map +0 -1
  1018. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.d.ts +0 -18
  1019. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.d.ts.map +0 -1
  1020. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.d.ts +0 -16
  1021. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.d.ts.map +0 -1
  1022. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.d.ts +0 -15
  1023. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.d.ts.map +0 -1
  1024. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.d.ts +0 -16
  1025. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.d.ts.map +0 -1
  1026. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.d.ts +0 -15
  1027. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.d.ts.map +0 -1
  1028. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.d.ts +0 -14
  1029. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.d.ts.map +0 -1
  1030. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.d.ts +0 -18
  1031. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.d.ts.map +0 -1
  1032. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.d.ts +0 -18
  1033. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.d.ts.map +0 -1
  1034. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.d.ts +0 -15
  1035. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.d.ts.map +0 -1
  1036. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.d.ts +0 -16
  1037. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.d.ts.map +0 -1
  1038. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.d.ts +0 -13
  1039. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.d.ts.map +0 -1
  1040. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.d.ts +0 -37
  1041. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.d.ts.map +0 -1
  1042. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.d.ts +0 -41
  1043. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.d.ts.map +0 -1
  1044. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.d.ts +0 -34
  1045. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.d.ts.map +0 -1
  1046. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.d.ts +0 -5
  1047. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.d.ts.map +0 -1
  1048. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.d.ts +0 -39
  1049. package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.d.ts.map +0 -1
  1050. package/types/federation/builder.d.ts +0 -79
  1051. package/types/federation/builder.d.ts.map +0 -1
  1052. package/types/federation/callback.d.ts +0 -202
  1053. package/types/federation/callback.d.ts.map +0 -1
  1054. package/types/federation/collection.d.ts +0 -27
  1055. package/types/federation/collection.d.ts.map +0 -1
  1056. package/types/federation/context.d.ts +0 -727
  1057. package/types/federation/context.d.ts.map +0 -1
  1058. package/types/federation/federation.d.ts +0 -682
  1059. package/types/federation/federation.d.ts.map +0 -1
  1060. package/types/federation/handler.d.ts +0 -120
  1061. package/types/federation/handler.d.ts.map +0 -1
  1062. package/types/federation/inbox.d.ts +0 -35
  1063. package/types/federation/inbox.d.ts.map +0 -1
  1064. package/types/federation/keycache.d.ts +0 -18
  1065. package/types/federation/keycache.d.ts.map +0 -1
  1066. package/types/federation/kv.d.ts +0 -66
  1067. package/types/federation/kv.d.ts.map +0 -1
  1068. package/types/federation/middleware.d.ts +0 -262
  1069. package/types/federation/middleware.d.ts.map +0 -1
  1070. package/types/federation/mod.d.ts +0 -19
  1071. package/types/federation/mod.d.ts.map +0 -1
  1072. package/types/federation/mq.d.ts +0 -119
  1073. package/types/federation/mq.d.ts.map +0 -1
  1074. package/types/federation/negotiation.d.ts +0 -37
  1075. package/types/federation/negotiation.d.ts.map +0 -1
  1076. package/types/federation/queue.d.ts +0 -47
  1077. package/types/federation/queue.d.ts.map +0 -1
  1078. package/types/federation/retry.d.ts +0 -64
  1079. package/types/federation/retry.d.ts.map +0 -1
  1080. package/types/federation/router.d.ts +0 -83
  1081. package/types/federation/router.d.ts.map +0 -1
  1082. package/types/federation/send.d.ts +0 -108
  1083. package/types/federation/send.d.ts.map +0 -1
  1084. package/types/mod.d.ts +0 -53
  1085. package/types/mod.d.ts.map +0 -1
  1086. package/types/nodeinfo/client.d.ts +0 -94
  1087. package/types/nodeinfo/client.d.ts.map +0 -1
  1088. package/types/nodeinfo/handler.d.ts +0 -32
  1089. package/types/nodeinfo/handler.d.ts.map +0 -1
  1090. package/types/nodeinfo/mod.d.ts +0 -12
  1091. package/types/nodeinfo/mod.d.ts.map +0 -1
  1092. package/types/nodeinfo/semver.d.ts +0 -71
  1093. package/types/nodeinfo/semver.d.ts.map +0 -1
  1094. package/types/nodeinfo/types.d.ts +0 -133
  1095. package/types/nodeinfo/types.d.ts.map +0 -1
  1096. package/types/runtime/contexts.d.ts +0 -3
  1097. package/types/runtime/contexts.d.ts.map +0 -1
  1098. package/types/runtime/docloader.d.ts +0 -225
  1099. package/types/runtime/docloader.d.ts.map +0 -1
  1100. package/types/runtime/key.d.ts +0 -54
  1101. package/types/runtime/key.d.ts.map +0 -1
  1102. package/types/runtime/langstr.d.ts +0 -15
  1103. package/types/runtime/langstr.d.ts.map +0 -1
  1104. package/types/runtime/mod.d.ts +0 -11
  1105. package/types/runtime/mod.d.ts.map +0 -1
  1106. package/types/runtime/multibase/base.d.ts +0 -15
  1107. package/types/runtime/multibase/base.d.ts.map +0 -1
  1108. package/types/runtime/multibase/constants.d.ts +0 -5
  1109. package/types/runtime/multibase/constants.d.ts.map +0 -1
  1110. package/types/runtime/multibase/index.d.ts +0 -24
  1111. package/types/runtime/multibase/index.d.ts.map +0 -1
  1112. package/types/runtime/multibase/rfc4648.d.ts +0 -6
  1113. package/types/runtime/multibase/rfc4648.d.ts.map +0 -1
  1114. package/types/runtime/multibase/util.d.ts +0 -4
  1115. package/types/runtime/multibase/util.d.ts.map +0 -1
  1116. package/types/runtime/url.d.ts +0 -11
  1117. package/types/runtime/url.d.ts.map +0 -1
  1118. package/types/shim/event.d.ts.map +0 -1
  1119. package/types/sig/http.d.ts +0 -221
  1120. package/types/sig/http.d.ts.map +0 -1
  1121. package/types/sig/key.d.ts +0 -123
  1122. package/types/sig/key.d.ts.map +0 -1
  1123. package/types/sig/ld.d.ts +0 -152
  1124. package/types/sig/ld.d.ts.map +0 -1
  1125. package/types/sig/mod.d.ts +0 -12
  1126. package/types/sig/mod.d.ts.map +0 -1
  1127. package/types/sig/owner.d.ts +0 -65
  1128. package/types/sig/owner.d.ts.map +0 -1
  1129. package/types/sig/proof.d.ts +0 -122
  1130. package/types/sig/proof.d.ts.map +0 -1
  1131. package/types/vocab/actor.d.ts +0 -125
  1132. package/types/vocab/actor.d.ts.map +0 -1
  1133. package/types/vocab/constants.d.ts +0 -10
  1134. package/types/vocab/constants.d.ts.map +0 -1
  1135. package/types/vocab/lookup.d.ts +0 -115
  1136. package/types/vocab/lookup.d.ts.map +0 -1
  1137. package/types/vocab/mod.d.ts +0 -58
  1138. package/types/vocab/mod.d.ts.map +0 -1
  1139. package/types/vocab/type.d.ts +0 -82
  1140. package/types/vocab/type.d.ts.map +0 -1
  1141. package/types/vocab/vocab.d.ts +0 -14437
  1142. package/types/vocab/vocab.d.ts.map +0 -1
  1143. package/types/webfinger/handler.d.ts +0 -56
  1144. package/types/webfinger/handler.d.ts.map +0 -1
  1145. package/types/webfinger/jrd.d.ts +0 -52
  1146. package/types/webfinger/jrd.d.ts.map +0 -1
  1147. package/types/webfinger/lookup.d.ts +0 -39
  1148. package/types/webfinger/lookup.d.ts.map +0 -1
  1149. package/types/webfinger/mod.d.ts +0 -9
  1150. package/types/webfinger/mod.d.ts.map +0 -1
  1151. package/types/x/hono.d.ts +0 -46
  1152. package/types/x/hono.d.ts.map +0 -1
  1153. package/types/x/sveltekit.d.ts +0 -42
  1154. package/types/x/sveltekit.d.ts.map +0 -1
  1155. /package/{esm → dist}/codegen/schema.yaml +0 -0
  1156. /package/{esm → dist}/testing/fixtures/activitypub.academy/users/brauca_darradiul +0 -0
  1157. /package/{esm → dist}/testing/fixtures/example.com/announce +0 -0
  1158. /package/{esm → dist}/testing/fixtures/example.com/collection +0 -0
  1159. /package/{esm → dist}/testing/fixtures/example.com/create +0 -0
  1160. /package/{esm → dist}/testing/fixtures/example.com/cross-origin-actor +0 -0
  1161. /package/{esm → dist}/testing/fixtures/example.com/hong-gildong +0 -0
  1162. /package/{esm → dist}/testing/fixtures/example.com/invite +0 -0
  1163. /package/{esm → dist}/testing/fixtures/example.com/key +0 -0
  1164. /package/{esm → dist}/testing/fixtures/example.com/key2 +0 -0
  1165. /package/{esm → dist}/testing/fixtures/example.com/object +0 -0
  1166. /package/{esm → dist}/testing/fixtures/example.com/orderedcollectionpage +0 -0
  1167. /package/{esm → dist}/testing/fixtures/example.com/paged/a +0 -0
  1168. /package/{esm → dist}/testing/fixtures/example.com/paged/b +0 -0
  1169. /package/{esm → dist}/testing/fixtures/example.com/paged-collection +0 -0
  1170. /package/{esm → dist}/testing/fixtures/example.com/person +0 -0
  1171. /package/{esm → dist}/testing/fixtures/example.com/person2 +0 -0
  1172. /package/{esm → dist}/testing/fixtures/example.com/test +0 -0
  1173. /package/{esm → dist}/testing/fixtures/example.com/users/handle +0 -0
  1174. /package/{esm → dist}/testing/fixtures/example.com/wrong-type +0 -0
  1175. /package/{esm → dist}/testing/fixtures/remote.domain/users/bob +0 -0
  1176. /package/{esm → dist}/testing/fixtures/server.example/users/alice +0 -0
  1177. /package/{esm → dist}/testing/fixtures/w3id.org/identity/v1 +0 -0
  1178. /package/{esm → dist}/testing/fixtures/w3id.org/security/data-integrity/v1 +0 -0
  1179. /package/{esm → dist}/testing/fixtures/w3id.org/security/multikey/v1 +0 -0
  1180. /package/{esm → dist}/testing/fixtures/w3id.org/security/v1 +0 -0
  1181. /package/{esm → dist}/testing/fixtures/wizard.casa/users/hongminhee +0 -0
  1182. /package/{esm → dist}/testing/fixtures/www.w3.org/ns/activitystreams +0 -0
  1183. /package/{esm → dist}/testing/fixtures/www.w3.org/ns/did/v1 +0 -0
  1184. /package/{esm → dist}/vocab/accept.yaml +0 -0
  1185. /package/{esm → dist}/vocab/activity.yaml +0 -0
  1186. /package/{esm → dist}/vocab/add.yaml +0 -0
  1187. /package/{esm → dist}/vocab/announce.yaml +0 -0
  1188. /package/{esm → dist}/vocab/application.yaml +0 -0
  1189. /package/{esm → dist}/vocab/arrive.yaml +0 -0
  1190. /package/{esm → dist}/vocab/article.yaml +0 -0
  1191. /package/{esm → dist}/vocab/audio.yaml +0 -0
  1192. /package/{esm → dist}/vocab/block.yaml +0 -0
  1193. /package/{esm → dist}/vocab/chatmessage.yaml +0 -0
  1194. /package/{esm → dist}/vocab/collection.yaml +0 -0
  1195. /package/{esm → dist}/vocab/collectionpage.yaml +0 -0
  1196. /package/{esm → dist}/vocab/create.yaml +0 -0
  1197. /package/{esm → dist}/vocab/dataintegrityproof.yaml +0 -0
  1198. /package/{esm → dist}/vocab/delete.yaml +0 -0
  1199. /package/{esm → dist}/vocab/didservice.yaml +0 -0
  1200. /package/{esm → dist}/vocab/dislike.yaml +0 -0
  1201. /package/{esm → dist}/vocab/document.yaml +0 -0
  1202. /package/{esm → dist}/vocab/emoji.yaml +0 -0
  1203. /package/{esm → dist}/vocab/emojireact.yaml +0 -0
  1204. /package/{esm → dist}/vocab/endpoints.yaml +0 -0
  1205. /package/{esm → dist}/vocab/event.yaml +0 -0
  1206. /package/{esm → dist}/vocab/export.yaml +0 -0
  1207. /package/{esm → dist}/vocab/flag.yaml +0 -0
  1208. /package/{esm → dist}/vocab/follow.yaml +0 -0
  1209. /package/{esm → dist}/vocab/group.yaml +0 -0
  1210. /package/{esm → dist}/vocab/hashtag.yaml +0 -0
  1211. /package/{esm → dist}/vocab/ignore.yaml +0 -0
  1212. /package/{esm → dist}/vocab/image.yaml +0 -0
  1213. /package/{esm → dist}/vocab/intransitiveactivity.yaml +0 -0
  1214. /package/{esm → dist}/vocab/invite.yaml +0 -0
  1215. /package/{esm → dist}/vocab/join.yaml +0 -0
  1216. /package/{esm → dist}/vocab/key.yaml +0 -0
  1217. /package/{esm → dist}/vocab/leave.yaml +0 -0
  1218. /package/{esm → dist}/vocab/like.yaml +0 -0
  1219. /package/{esm → dist}/vocab/link.yaml +0 -0
  1220. /package/{esm → dist}/vocab/listen.yaml +0 -0
  1221. /package/{esm → dist}/vocab/mention.yaml +0 -0
  1222. /package/{esm → dist}/vocab/move.yaml +0 -0
  1223. /package/{esm → dist}/vocab/multikey.yaml +0 -0
  1224. /package/{esm → dist}/vocab/note.yaml +0 -0
  1225. /package/{esm → dist}/vocab/object.yaml +0 -0
  1226. /package/{esm → dist}/vocab/offer.yaml +0 -0
  1227. /package/{esm → dist}/vocab/orderedcollection.yaml +0 -0
  1228. /package/{esm → dist}/vocab/orderedcollectionpage.yaml +0 -0
  1229. /package/{esm → dist}/vocab/organization.yaml +0 -0
  1230. /package/{esm → dist}/vocab/page.yaml +0 -0
  1231. /package/{esm → dist}/vocab/person.yaml +0 -0
  1232. /package/{esm → dist}/vocab/place.yaml +0 -0
  1233. /package/{esm → dist}/vocab/profile.yaml +0 -0
  1234. /package/{esm → dist}/vocab/propertyvalue.yaml +0 -0
  1235. /package/{esm → dist}/vocab/question.yaml +0 -0
  1236. /package/{esm → dist}/vocab/read.yaml +0 -0
  1237. /package/{esm → dist}/vocab/reject.yaml +0 -0
  1238. /package/{esm → dist}/vocab/relationship.yaml +0 -0
  1239. /package/{esm → dist}/vocab/remove.yaml +0 -0
  1240. /package/{esm → dist}/vocab/service.yaml +0 -0
  1241. /package/{esm → dist}/vocab/source.yaml +0 -0
  1242. /package/{esm → dist}/vocab/tentativeaccept.yaml +0 -0
  1243. /package/{esm → dist}/vocab/tentativereject.yaml +0 -0
  1244. /package/{esm → dist}/vocab/tombstone.yaml +0 -0
  1245. /package/{esm → dist}/vocab/travel.yaml +0 -0
  1246. /package/{esm → dist}/vocab/undo.yaml +0 -0
  1247. /package/{esm → dist}/vocab/update.yaml +0 -0
  1248. /package/{esm → dist}/vocab/video.yaml +0 -0
  1249. /package/{esm → dist}/vocab/view.yaml +0 -0
@@ -1,552 +0,0 @@
1
- /**
2
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
3
- *
4
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
5
- *
6
- * Note: This method doesn't set the `length` property of partially applied functions.
7
- *
8
- * @template T1 The type of the first argument.
9
- * @template R The return type of the function.
10
- * @param {function(arg1: T1): R} func The function to partially apply.
11
- * @param {T1} arg1 The first argument to apply.
12
- * @returns {function(): R} A new function that takes no arguments and returns the result of the original function.
13
- *
14
- * @example
15
- * const addOne = (x: number) => x + 1;
16
- * const addOneToFive = partial(addOne, 5);
17
- * console.log(addOneToFive()); // => 6
18
- */
19
- export declare function partial<T1, R>(func: (arg1: T1) => R, arg1: T1): () => R;
20
- /**
21
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
22
- *
23
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
24
- *
25
- * Note: This method doesn't set the `length` property of partially applied functions.
26
- *
27
- * @template T1 The type of the first argument.
28
- * @template T2 The type of the second argument.
29
- * @template R The return type of the function.
30
- * @param {function(arg1: T1, arg2: T2): R} func The function to partially apply.
31
- * @param {T1} arg1 The first argument to apply.
32
- * @returns {function(arg2: T2): R} A new function that takes the second argument and returns the result of the original function.
33
- *
34
- * @example
35
- * const multiply = (x: number, y: number) => x * y;
36
- * const double = partial(multiply, 2);
37
- * console.log(double(5)); // => 10
38
- */
39
- export declare function partial<T1, T2, R>(func: (arg1: T1, arg2: T2) => R, arg1: T1): (arg2: T2) => R;
40
- /**
41
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
42
- *
43
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
44
- *
45
- * Note: This method doesn't set the `length` property of partially applied functions.
46
- *
47
- * @template T1 The type of the first argument.
48
- * @template T2 The type of the second argument.
49
- * @template R The return type of the function.
50
- * @param {function(arg1: T1, arg2: T2): R} func The function to partially apply.
51
- * @param {Placeholder} placeholder The placeholder for the first argument.
52
- * @param {T2} arg2 The second argument to apply.
53
- * @returns {function(arg1: T1): R} A new function that takes the first argument and returns the result of the original function.
54
- *
55
- * @example
56
- * const greet = (greeting: string, name: string) => `${greeting}, ${name}!`;
57
- * const greetWithHello = partial(greet, partial.placeholder, 'John');
58
- * console.log(greetWithHello('Hello')); // => 'Hello, John!'
59
- */
60
- export declare function partial<T1, T2, R>(func: (arg1: T1, arg2: T2) => R, placeholder: Placeholder, arg2: T2): (arg1: T1) => R;
61
- /**
62
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
63
- *
64
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
65
- *
66
- * Note: This method doesn't set the `length` property of partially applied functions.
67
- *
68
- * @template T1 The type of the first argument.
69
- * @template T2 The type of the second argument.
70
- * @template T3 The type of the third argument.
71
- * @template R The return type of the function.
72
- * @param {function(arg1: T1, arg2: T2, arg3: T3): R} func The function to partially apply.
73
- * @param {T1} arg1 The first argument to apply.
74
- * @returns {function(arg2: T2, arg3: T3): R} A new function that takes the second and third arguments and returns the result of the original function.
75
- *
76
- * @example
77
- * const sumThree = (a: number, b: number, c: number) => a + b + c;
78
- * const addFive = partial(sumThree, 5);
79
- * console.log(addFive(3, 2)); // => 10
80
- */
81
- export declare function partial<T1, T2, T3, R>(func: (arg1: T1, arg2: T2, arg3: T3) => R, arg1: T1): (arg2: T2, arg3: T3) => R;
82
- /**
83
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
84
- *
85
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
86
- *
87
- * Note: This method doesn't set the `length` property of partially applied functions.
88
- *
89
- * @template T1 The type of the first argument.
90
- * @template T2 The type of the second argument.
91
- * @template T3 The type of the third argument.
92
- * @template R The return type of the function.
93
- * @param {function(arg1: T1, arg2: T2, arg3: T3): R} func The function to partially apply.
94
- * @param {Placeholder} arg1 The placeholder for the first argument.
95
- * @param {T2} arg2 The second argument to apply.
96
- * @returns {function(arg1: T1, arg3: T3): R} A new function that takes the first and third arguments and returns the result of the original function.
97
- *
98
- * @example
99
- * const greet = (greeting: string, name: string) => `${greeting}, ${name}!`;
100
- * const greetWithPlaceholder = partial(greet, partial.placeholder, 'John');
101
- * console.log(greetWithPlaceholder('Hello')); // => 'Hello, John!'
102
- */
103
- export declare function partial<T1, T2, T3, R>(func: (arg1: T1, arg2: T2, arg3: T3) => R, arg1: Placeholder, arg2: T2): (arg1: T1, arg3: T3) => R;
104
- /**
105
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
106
- *
107
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
108
- *
109
- * Note: This method doesn't set the `length` property of partially applied functions.
110
- *
111
- * @template T1 The type of the first argument.
112
- * @template T2 The type of the second argument.
113
- * @template T3 The type of the third argument.
114
- * @template R The return type of the function.
115
- * @param {function(arg1: T1, arg2: T2, arg3: T3): R} func The function to partially apply.
116
- * @param {Placeholder} arg1 The placeholder for the first argument.
117
- * @param {Placeholder} arg2 The placeholder for the second argument.
118
- * @param {T3} arg3 The third argument to apply.
119
- * @returns {function(arg1: T1, arg2: T2): R} A new function that takes the first and second arguments and returns the result of the original function.
120
- *
121
- * @example
122
- * const multiply = (x: number, y: number, z: number) => x * y * z;
123
- * const multiplyWithPlaceholders = partial(multiply, partial.placeholder, partial.placeholder, 2);
124
- * console.log(multiplyWithPlaceholders(3, 4)); // => 24
125
- */
126
- export declare function partial<T1, T2, T3, R>(func: (arg1: T1, arg2: T2, arg3: T3) => R, arg1: Placeholder, arg2: Placeholder, arg3: T3): (arg1: T1, arg2: T2) => R;
127
- /**
128
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
129
- *
130
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
131
- *
132
- * Note: This method doesn't set the `length` property of partially applied functions.
133
- *
134
- * @template T1 The type of the first argument.
135
- * @template T2 The type of the second argument.
136
- * @template T3 The type of the third argument.
137
- * @template R The return type of the function.
138
- * @param {function(arg1: T1, arg2: T2, arg3: T3): R} func The function to partially apply.
139
- * @param {T1} arg1 The first argument to apply.
140
- * @param {Placeholder} arg2 The placeholder for the second argument.
141
- * @param {T3} arg3 The third argument to apply.
142
- * @returns {function(arg2: T2): R} A new function that takes the second argument and returns the result of the original function.
143
- *
144
- * @example
145
- * const greet = (greeting: string, name: string) => `${greeting}, ${name}!`;
146
- * const greetWithPlaceholder = partial(greet, 'Hello', partial.placeholder);
147
- * console.log(greetWithPlaceholder('John')); // => 'Hello, John!'
148
- */
149
- export declare function partial<T1, T2, T3, R>(func: (arg1: T1, arg2: T2, arg3: T3) => R, arg1: T1, arg2: Placeholder, arg3: T3): (arg2: T2) => R;
150
- /**
151
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
152
- *
153
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
154
- *
155
- * Note: This method doesn't set the `length` property of partially applied functions.
156
- *
157
- * @template T1 The type of the first argument.
158
- * @template T2 The type of the second argument.
159
- * @template T3 The type of the third argument.
160
- * @template R The return type of the function.
161
- * @param {function(arg1: T1, arg2: T2, arg3: T3): R} func The function to partially apply.
162
- * @param {Placeholder} arg1 The first argument to apply.
163
- * @param {T2} arg2 The placeholder for the second argument.
164
- * @param {T3} arg3 The third argument to apply.
165
- * @returns {function(arg2: T2): R} A new function that takes the second argument and returns the result of the original function.
166
- *
167
- * @example
168
- * const greet = (greeting: string, name: string) => `${greeting}, ${name}!`;
169
- * const greetWithPlaceholder = partial(greet, 'Hello', partial.placeholder);
170
- * console.log(greetWithPlaceholder('John')); // => 'Hello, John!'
171
- */
172
- export declare function partial<T1, T2, T3, R>(func: (arg1: T1, arg2: T2, arg3: T3) => R, plc1: Placeholder, arg2: T2, arg3: T3): (arg1: T1) => R;
173
- /**
174
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
175
- *
176
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
177
- *
178
- * Note: This method doesn't set the `length` property of partially applied functions.
179
- *
180
- * @template T1 The type of the first argument.
181
- * @template T2 The type of the second argument.
182
- * @template T3 The type of the third argument.
183
- * @template T4 The type of the fourth argument.
184
- * @template R The return type of the function.
185
- * @param {function(arg1: T1, arg2: T2, arg3: T3, arg4: T4): R} func The function to partially apply.
186
- * @param {T1} arg1 The first argument to apply.
187
- * @returns {function(arg2: T2): R} A new function that takes the second argument and returns the result of the original function.
188
- *
189
- * @example
190
- * const multiply = (x: number, y: number, z: number, w: number) => x * y * z * w;
191
- * const double = partial(multiply, 2);
192
- * console.log(double(5, 4, 3)); // => 120
193
- */
194
- export declare function partial<T1, T2, T3, T4, R>(func: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => R, arg1: T1): (arg2: T2, arg3: T3, arg4: T4) => R;
195
- /**
196
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
197
- *
198
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
199
- *
200
- * Note: This method doesn't set the `length` property of partially applied functions.
201
- *
202
- * @template T1 The type of the first argument.
203
- * @template T2 The type of the second argument.
204
- * @template T3 The type of the third argument.
205
- * @template T4 The type of the fourth argument.
206
- * @template R The return type of the function.
207
- * @param {function(arg1: T1, arg2: T2, arg3: T3, arg4: T4): R} func The function to partially apply.
208
- * @param {Placeholder} arg1 The placeholder for the first argument.
209
- * @param {Placeholder} arg2 The placeholder for the second argument.
210
- * @param {T3} arg3 The third argument to apply.
211
- * @param {T4} arg4 The fourth argument to apply.
212
- * @returns {function(arg1: T1, arg2: T2): R} A new function that takes the first and second arguments and returns the result of the original function.
213
- *
214
- * @example
215
- * const multiply = (x: number, y: number, z: number, w: number) => x * y * z * w;
216
- * const multiplyWithPlaceholders = partial(multiply, partial.placeholder, partial.placeholder, 2, 3);
217
- * console.log(multiplyWithPlaceholders(4, 5)); // => 120
218
- */
219
- export declare function partial<T1, T2, T3, T4, R>(func: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => R, arg1: Placeholder, arg2: Placeholder, arg3: T3, arg4: T4): (arg1: T1, arg2: T2) => R;
220
- /**
221
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
222
- *
223
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
224
- *
225
- * Note: This method doesn't set the `length` property of partially applied functions.
226
- *
227
- * @template T1 The type of the first argument.
228
- * @template T2 The type of the second argument.
229
- * @template T3 The type of the third argument.
230
- * @template T4 The type of the fourth argument.
231
- * @template R The return type of the function.
232
- * @param {function(arg1: T1, arg2: T2, arg3: T3, arg4: T4): R} func The function to partially apply.
233
- * @param {T1} arg1 The first argument to apply.
234
- * @param {T2} arg2 The second argument to apply.
235
- * @returns {function(arg3: T3, arg4: T4): R} A new function that takes the third and fourth arguments and returns the result of the original function.
236
- *
237
- * @example
238
- * const sumFour = (a: number, b: number, c: number, d: number) => a + b + c + d;
239
- * const addOneAndTwo = partial(sumFour, 1, 2);
240
- * console.log(addOneAndTwo(3, 4)); // => 10
241
- */
242
- export declare function partial<T1, T2, T3, T4, R>(func: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => R, arg1: T1, arg2: T2): (arg3: T3, arg4: T4) => R;
243
- /**
244
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
245
- *
246
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
247
- *
248
- * Note: This method doesn't set the `length` property of partially applied functions.
249
- *
250
- * @template T1 The type of the first argument.
251
- * @template T2 The type of the second argument.
252
- * @template T3 The type of the third argument.
253
- * @template T4 The type of the fourth argument.
254
- * @template R The return type of the function.
255
- * @param {function(arg1: T1, arg2: T2, arg3: T3, arg4: T4): R} func The function to partially apply.
256
- * @param {T1} arg1 The first argument to apply.
257
- * @param {Placeholder} arg2 The placeholder for the second argument.
258
- * @param {T3} arg3 The third argument to apply.
259
- * @param {T4} arg4 The fourth argument to apply.
260
- * @returns {function(arg2: T2, arg4: T4): R} A new function that takes the second and fourth arguments and returns the result of the original function.
261
- *
262
- * @example
263
- * const greet = (greeting: string, name: string, punctuation: string) => `${greeting}, ${name}${punctuation}`;
264
- * const greetWithPlaceholder = partial(greet, 'Hello', partial.placeholder, '!');
265
- * console.log(greetWithPlaceholder('John')); // => 'Hello, John!'
266
- */
267
- export declare function partial<T1, T2, T3, T4, R>(func: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => R, arg1: T1, arg2: Placeholder, arg3: T3): (arg2: T2, arg4: T4) => R;
268
- /**
269
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
270
- *
271
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
272
- *
273
- * Note: This method doesn't set the `length` property of partially applied functions.
274
- *
275
- * @template T1 The type of the first argument.
276
- * @template T2 The type of the second argument.
277
- * @template T3 The type of the third argument.
278
- * @template T4 The type of the fourth argument.
279
- * @template R The return type of the function.
280
- * @param {function(arg1: T1, arg2: T2, arg3: T3, arg4: T4): R} func The function to partially apply.
281
- * @param {Placeholder} arg1 The placeholder for the first argument.
282
- * @param {T2} arg2 The second argument to apply.
283
- * @param {T3} arg3 The third argument to apply.
284
- * @param {T4} arg4 The fourth argument to apply.
285
- * @returns {function(arg1: T1, arg3: T3): R} A new function that takes the first and third arguments and returns the result of the original function.
286
- *
287
- * @example
288
- * const multiply = (x: number, y: number, z: number, w: number) => x * y * z * w;
289
- * const multiplyWithPlaceholder = partial(multiply, partial.placeholder, 2, 3);
290
- * console.log(multiplyWithPlaceholder(4)); // => 24
291
- */
292
- export declare function partial<T1, T2, T3, T4, R>(func: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => R, arg1: Placeholder, arg2: T2, arg3: T3): (arg1: T1, arg4: T4) => R;
293
- /**
294
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
295
- *
296
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
297
- *
298
- * Note: This method doesn't set the `length` property of partially applied functions.
299
- *
300
- * @template T1 The type of the first argument.
301
- * @template T2 The type of the second argument.
302
- * @template T3 The type of the third argument.
303
- * @template T4 The type of the fourth argument.
304
- * @template R The return type of the function.
305
- * @param {function(arg1: T1, arg2: T2, arg3: T3, arg4: T4): R} func The function to partially apply.
306
- * @param {Placeholder} arg1 The placeholder for the first argument.
307
- * @param {T2} arg2 The second argument to apply.
308
- * @param {Placeholder} arg3 The placeholder for the third argument.
309
- * @param {T4} arg4 The fourth argument to apply.
310
- * @returns {function(arg1: T1, arg3: T3): R} A new function that takes the first and third arguments and returns the result of the original function.
311
- */
312
- export declare function partial<T1, T2, T3, T4, R>(func: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => R, arg1: Placeholder, arg2: T2, arg3: Placeholder, arg4: T4): (arg1: T1, arg3: T3) => R;
313
- /**
314
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
315
- *
316
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
317
- *
318
- * Note: This method doesn't set the `length` property of partially applied functions.
319
- *
320
- * @template T1 The type of the first argument.
321
- * @template T2 The type of the second argument.
322
- * @template T3 The type of the third argument.
323
- * @template T4 The type of the fourth argument.
324
- * @template R The return type of the function.
325
- * @param {function(arg1: T1, arg2: T2, arg3: T3, arg4: T4): R} func The function to partially apply.
326
- * @param {Placeholder} arg1 The placeholder for the first argument.
327
- * @param {Placeholder} arg2 The placeholder for the second argument.
328
- * @param {T3} arg3 The third argument to apply.
329
- * @param {T4} arg4 The fourth argument to apply.
330
- * @returns {function(arg1: T1, arg2: T2): R} A new function that takes the first and second arguments and returns the result of the original function.
331
- *
332
- * @example
333
- * const multiply = (x: number, y: number, z: number, w: number) => x * y * z * w;
334
- * const multiplyWithPlaceholders = partial(multiply, partial.placeholder, partial.placeholder, 2, 3);
335
- * console.log(multiplyWithPlaceholders(4, 5)); // => 120
336
- */
337
- export declare function partial<T1, T2, T3, T4, R>(func: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => R, arg1: Placeholder, arg2: Placeholder, arg3: T3, arg4: T4): (arg1: T1, arg2: T2) => R;
338
- /**
339
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
340
- *
341
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
342
- *
343
- * Note: This method doesn't set the `length` property of partially applied functions.
344
- *
345
- * @template T1 The type of the first argument.
346
- * @template T2 The type of the second argument.
347
- * @template T3 The type of the third argument.
348
- * @template T4 The type of the fourth argument.
349
- * @template R The return type of the function.
350
- * @param {function(arg1: T1, arg2: T2, arg3: T3, arg4: T4): R} func The function to partially apply.
351
- * @param {T1} arg1 The first argument to apply.
352
- * @param {T2} arg2 The second argument to apply.
353
- * @param {T3} arg3 The third argument to apply.
354
- * @returns {function(arg4: T4): R} A new function that takes the fourth argument and returns the result of the original function.
355
- */
356
- export declare function partial<T1, T2, T3, T4, R>(func: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => R, arg1: T1, arg2: T2, arg3: T3): (arg4: T4) => R;
357
- /**
358
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
359
- *
360
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
361
- *
362
- * Note: This method doesn't set the `length` property of partially applied functions.
363
- *
364
- * @template T1 The type of the first argument.
365
- * @template T2 The type of the second argument.
366
- * @template T3 The type of the third argument.
367
- * @template T4 The type of the fourth argument.
368
- * @template R The return type of the function.
369
- * @param {function(arg1: T1, arg2: T2, arg3: T3, arg4: T4): R} func The function to partially apply.
370
- * @param {T1} arg1 The first argument to apply.
371
- * @param {T2} arg2 The second argument to apply.
372
- * @param {Placeholder} arg3 The placeholder for the third argument.
373
- * @param {T4} arg4 The fourth argument to apply.
374
- * @returns {function(arg3: T3): R} A new function that takes the third argument and returns the result of the original function.
375
- */
376
- export declare function partial<T1, T2, T3, T4, R>(func: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => R, arg1: T1, arg2: T2, arg3: Placeholder, arg4: T4): (arg3: T3) => R;
377
- /**
378
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
379
- *
380
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
381
- *
382
- * Note: This method doesn't set the `length` property of partially applied functions.
383
- *
384
- * @template T1 The type of the first argument.
385
- * @template T2 The type of the second argument.
386
- * @template T3 The type of the third argument.
387
- * @template T4 The type of the fourth argument.
388
- * @template R The return type of the function.
389
- * @param {function(arg1: T1, arg2: T2, arg3: T3, arg4: T4): R} func The function to partially apply.
390
- * @param {T1} arg1 The first argument to apply.
391
- * @param {Placeholder} arg2 The placeholder for the second argument.
392
- * @param {T3} arg3 The third argument to apply.
393
- * @param {T4} arg4 The fourth argument to apply.
394
- * @returns {function(arg2: T2): R} A new function that takes the second argument and returns the result of the original function.
395
- */
396
- export declare function partial<T1, T2, T3, T4, R>(func: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => R, arg1: T1, arg2: Placeholder, arg3: T3, arg4: T4): (arg2: T2) => R;
397
- /**
398
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
399
- *
400
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
401
- *
402
- * Note: This method doesn't set the `length` property of partially applied functions.
403
- *
404
- * @template T1 The type of the first argument.
405
- * @template T2 The type of the second argument.
406
- * @template T3 The type of the third argument.
407
- * @template T4 The type of the fourth argument.
408
- * @template R The return type of the function.
409
- * @param {function(arg1: T1, arg2: T2, arg3: T3, arg4: T4): R} func The function to partially apply.
410
- * @param {Placeholder} arg1 The placeholder for the first argument.
411
- * @param {T2} arg2 The second argument to apply.
412
- * @param {T3} arg3 The third argument to apply.
413
- * @param {T4} arg4 The fourth argument to apply.
414
- * @returns {function(arg1: T1): R} A new function that takes the first argument and returns the result of the original function.
415
- */
416
- export declare function partial<T1, T2, T3, T4, R>(func: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => R, arg1: Placeholder, arg2: T2, arg3: T3, arg4: T4): (arg1: T1) => R;
417
- /**
418
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
419
- *
420
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
421
- *
422
- * Note: This method doesn't set the `length` property of partially applied functions.
423
- *
424
- * @template TS The types of the arguments.
425
- * @template R The return type of the function.
426
- * @param {function(...args: TS): R} func The function to partially apply.
427
- * @returns {function(...args: TS): R} A new function that takes the same arguments as the original function.
428
- *
429
- * @example
430
- * const add = (...numbers: number[]) => numbers.reduce((sum, n) => sum + n, 0);
431
- * const addFive = partial(add, 5);
432
- * console.log(addFive(1, 2, 3)); // => 11
433
- */
434
- export declare function partial<TS extends any[], R>(func: (...args: TS) => R): (...args: TS) => R;
435
- /**
436
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
437
- *
438
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
439
- *
440
- * Note: This method doesn't set the `length` property of partially applied functions.
441
- *
442
- * @template TS The types of the arguments.
443
- * @template T1 The type of the first argument.
444
- * @template R The return type of the function.
445
- * @param {function(arg1: T1, ...args: TS): R} func The function to partially apply.
446
- * @param {T1} arg1 The first argument to apply.
447
- * @returns {function(...args: TS): R} A new function that takes the remaining arguments and returns the result of the original function.
448
- *
449
- * @example
450
- * const greet = (greeting: string, ...names: string[]) => `${greeting}, ${names.join(', ')}!`;
451
- * const greetHello = partial(greet, 'Hello');
452
- * console.log(greetHello('Alice', 'Bob')); // => 'Hello, Alice, Bob!'
453
- */
454
- export declare function partial<TS extends any[], T1, R>(func: (arg1: T1, ...args: TS) => R, arg1: T1): (...args: TS) => R;
455
- /**
456
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
457
- *
458
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
459
- *
460
- * Note: This method doesn't set the `length` property of partially applied functions.
461
- *
462
- * @template TS The types of the arguments.
463
- * @template T1 The type of the first argument.
464
- * @template T2 The type of the second argument.
465
- * @template R The return type of the function.
466
- * @param {function(arg1: T1, arg2: T2, ...args: TS): R} func The function to partially apply.
467
- * @param {T1} arg1 The first argument to apply.
468
- * @param {T2} arg2 The second argument to apply.
469
- * @returns {function(...args: TS): R} A new function that takes the remaining arguments and returns the result of the original function.
470
- *
471
- * @example
472
- * const greet = (greeting: string, name: string, punctuation: string) => `${greeting}, ${name}${punctuation}`;
473
- * const greetWithHello = partial(greet, 'Hello', '!');
474
- * console.log(greetWithHello('John')); // => 'Hello, John!'
475
- */
476
- export declare function partial<TS extends any[], T1, T2, R>(func: (arg1: T1, arg2: T2, ...args: TS) => R, t1: T1, arg2: T2): (...args: TS) => R;
477
- /**
478
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
479
- *
480
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
481
- *
482
- * Note: This method doesn't set the `length` property of partially applied functions.
483
- *
484
- * @template TS The types of the arguments.
485
- * @template T1 The type of the first argument.
486
- * @template T2 The type of the second argument.
487
- * @template T3 The type of the third argument.
488
- * @template R The return type of the function.
489
- * @param {function(t1: T1, arg2: T2, arg3: T3, ...args: TS): R} func The function to partially apply.
490
- * @param {T1} t1 The first argument to apply.
491
- * @param {T2} arg2 The second argument to apply.
492
- * @param {T3} arg3 The third argument to apply.
493
- * @returns {function(...args: TS): R} A new function that takes the remaining arguments and returns the result of the original function.
494
- *
495
- * @example
496
- * const greet = (greeting: string, name: string, punctuation: string) => `${greeting}, ${name}${punctuation}`;
497
- * const greetWithHello = partial(greet, 'Hello', 'John', '!');
498
- * console.log(greetWithHello()); // => 'Hello, John!'
499
- */
500
- export declare function partial<TS extends any[], T1, T2, T3, R>(func: (t1: T1, arg2: T2, arg3: T3, ...args: TS) => R, t1: T1, arg2: T2, arg3: T3): (...args: TS) => R;
501
- /**
502
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
503
- *
504
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
505
- *
506
- * Note: This method doesn't set the `length` property of partially applied functions.
507
- *
508
- * @template TS The types of the arguments.
509
- * @template T1 The type of the first argument.
510
- * @template T2 The type of the second argument.
511
- * @template T3 The type of the third argument.
512
- * @template T4 The type of the fourth argument.
513
- * @template R The return type of the function.
514
- * @param {function(t1: T1, arg2: T2, arg3: T3, arg4: T4, ...args: TS): R} func The function to partially apply.
515
- * @param {T1} t1 The first argument to apply.
516
- * @param {T2} arg2 The second argument to apply.
517
- * @param {T3} arg3 The third argument to apply.
518
- * @param {T4} arg4 The fourth argument to apply.
519
- * @returns {function(...args: TS): R} A new function that takes the remaining arguments and returns the result of the original function.
520
- *
521
- * @example
522
- * const greet = (greeting: string, name: string, punctuation: string) => `${greeting}, ${name}${punctuation}`;
523
- * const greetWithHello = partial(greet, 'Hello', 'John', '!');
524
- * console.log(greetWithHello()); // => 'Hello, John!'
525
- */
526
- export declare function partial<TS extends any[], T1, T2, T3, T4, R>(func: (t1: T1, arg2: T2, arg3: T3, arg4: T4, ...args: TS) => R, t1: T1, arg2: T2, arg3: T3, arg4: T4): (...args: TS) => R;
527
- /**
528
- * Creates a function that invokes `func` with `partialArgs` prepended to the arguments it receives. This method is like `bind` except it does not alter the `this` binding.
529
- *
530
- * The partial.placeholder value, which defaults to a `symbol`, may be used as a placeholder for partially applied arguments.
531
- *
532
- * Note: This method doesn't set the `length` property of partially applied functions.
533
- *
534
- * @template F The type of the function to partially apply.
535
- * @param {F} func The function to partially apply.
536
- * @param {...any[]} partialArgs The arguments to be partially applied.
537
- * @returns {function(...args: any[]): ReturnType<F>} A new function that takes the remaining arguments and returns the result of the original function.
538
- *
539
- * @example
540
- * const add = (...numbers: number[]) => numbers.reduce((sum, n) => sum + n, 0);
541
- * const addFive = partial(add, 5);
542
- * console.log(addFive(1, 2, 3)); // => 11
543
- */
544
- export declare function partial<F extends (...args: any[]) => any>(func: F, ...partialArgs: any[]): (...args: any[]) => ReturnType<F>;
545
- export declare namespace partial {
546
- var placeholder: typeof placeholderSymbol;
547
- }
548
- export declare function partialImpl<F extends (...args: any[]) => any, P>(func: F, placeholder: P, ...partialArgs: any[]): (...args: any[]) => ReturnType<F>;
549
- declare const placeholderSymbol: unique symbol;
550
- type Placeholder = typeof placeholderSymbol;
551
- export {};
552
- //# sourceMappingURL=partial.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"partial.d.ts","sourceRoot":"","sources":["../../../../../../../../src/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.ts"],"names":[],"mappings":"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"}