@relative-ci/core 5.3.0-beta.0 → 5.3.0-rc.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 (705) hide show
  1. package/README.md +10 -0
  2. package/lib/cjs/__/@actions/http-client/__/undici/index.js +226 -0
  3. package/lib/cjs/__/@actions/http-client/__/undici/index.js.map +1 -0
  4. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/abort-signal.js +73 -0
  5. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/abort-signal.js.map +1 -0
  6. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-connect.js +131 -0
  7. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-connect.js.map +1 -0
  8. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-pipeline.js +276 -0
  9. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-pipeline.js.map +1 -0
  10. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-request.js +238 -0
  11. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-request.js.map +1 -0
  12. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-stream.js +246 -0
  13. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-stream.js.map +1 -0
  14. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-upgrade.js +131 -0
  15. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-upgrade.js.map +1 -0
  16. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/index.js +25 -0
  17. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/index.js.map +1 -0
  18. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/readable.js +405 -0
  19. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/readable.js.map +1 -0
  20. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/util.js +114 -0
  21. package/lib/cjs/__/@actions/http-client/__/undici/lib/api/util.js.map +1 -0
  22. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/connect.js +266 -0
  23. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/connect.js.map +1 -0
  24. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/constants.js +130 -0
  25. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/constants.js.map +1 -0
  26. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/diagnostics.js +222 -0
  27. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/diagnostics.js.map +1 -0
  28. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/errors.js +418 -0
  29. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/errors.js.map +1 -0
  30. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/request.js +417 -0
  31. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/request.js.map +1 -0
  32. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/symbols.js +80 -0
  33. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/symbols.js.map +1 -0
  34. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/tree.js +166 -0
  35. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/tree.js.map +1 -0
  36. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/util.js +755 -0
  37. package/lib/cjs/__/@actions/http-client/__/undici/lib/core/util.js.map +1 -0
  38. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/agent.js +149 -0
  39. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/agent.js.map +1 -0
  40. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/balanced-pool.js +227 -0
  41. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/balanced-pool.js.map +1 -0
  42. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client-h1.js +1397 -0
  43. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client-h1.js.map +1 -0
  44. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client-h2.js +768 -0
  45. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client-h2.js.map +1 -0
  46. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client.js +650 -0
  47. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client.js.map +1 -0
  48. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher-base.js +206 -0
  49. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher-base.js.map +1 -0
  50. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher.js +83 -0
  51. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher.js.map +1 -0
  52. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/env-http-proxy-agent.js +177 -0
  53. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/env-http-proxy-agent.js.map +1 -0
  54. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/fixed-queue.js +129 -0
  55. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/fixed-queue.js.map +1 -0
  56. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool-base.js +211 -0
  57. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool-base.js.map +1 -0
  58. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool-stats.js +49 -0
  59. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool-stats.js.map +1 -0
  60. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool.js +126 -0
  61. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool.js.map +1 -0
  62. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/proxy-agent.js +299 -0
  63. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/proxy-agent.js.map +1 -0
  64. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/retry-agent.js +50 -0
  65. package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/retry-agent.js.map +1 -0
  66. package/lib/cjs/__/@actions/http-client/__/undici/lib/global.js +47 -0
  67. package/lib/cjs/__/@actions/http-client/__/undici/lib/global.js.map +1 -0
  68. package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/decorator-handler.js +56 -0
  69. package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/decorator-handler.js.map +1 -0
  70. package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/redirect-handler.js +237 -0
  71. package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/redirect-handler.js.map +1 -0
  72. package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/retry-handler.js +395 -0
  73. package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/retry-handler.js.map +1 -0
  74. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/dns.js +397 -0
  75. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/dns.js.map +1 -0
  76. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/dump.js +139 -0
  77. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/dump.js.map +1 -0
  78. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/redirect-interceptor.js +35 -0
  79. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/redirect-interceptor.js.map +1 -0
  80. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/redirect.js +38 -0
  81. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/redirect.js.map +1 -0
  82. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/retry.js +33 -0
  83. package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/retry.js.map +1 -0
  84. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/constants.js +288 -0
  85. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/constants.js.map +1 -0
  86. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/llhttp-wasm.js +23 -0
  87. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/llhttp-wasm.js.map +1 -0
  88. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/llhttp_simd-wasm.js +23 -0
  89. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/llhttp_simd-wasm.js.map +1 -0
  90. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/utils.js +28 -0
  91. package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/utils.js.map +1 -0
  92. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-agent.js +183 -0
  93. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-agent.js.map +1 -0
  94. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-client.js +83 -0
  95. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-client.js.map +1 -0
  96. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-errors.js +42 -0
  97. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-errors.js.map +1 -0
  98. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-interceptor.js +224 -0
  99. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-interceptor.js.map +1 -0
  100. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-pool.js +83 -0
  101. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-pool.js.map +1 -0
  102. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-symbols.js +35 -0
  103. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-symbols.js.map +1 -0
  104. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-utils.js +390 -0
  105. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-utils.js.map +1 -0
  106. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/pending-interceptors-formatter.js +63 -0
  107. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/pending-interceptors-formatter.js.map +1 -0
  108. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/pluralizer.js +41 -0
  109. package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/pluralizer.js.map +1 -0
  110. package/lib/cjs/__/@actions/http-client/__/undici/lib/util/timers.js +435 -0
  111. package/lib/cjs/__/@actions/http-client/__/undici/lib/util/timers.js.map +1 -0
  112. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/cache.js +886 -0
  113. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/cache.js.map +1 -0
  114. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/cachestorage.js +169 -0
  115. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/cachestorage.js.map +1 -0
  116. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/symbols.js +19 -0
  117. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/symbols.js.map +1 -0
  118. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/util.js +65 -0
  119. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/util.js.map +1 -0
  120. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/constants.js +24 -0
  121. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/constants.js.map +1 -0
  122. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/index.js +201 -0
  123. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/index.js.map +1 -0
  124. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/parse.js +338 -0
  125. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/parse.js.map +1 -0
  126. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/util.js +294 -0
  127. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/util.js.map +1 -0
  128. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource-stream.js +417 -0
  129. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource-stream.js.map +1 -0
  130. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource.js +508 -0
  131. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource.js.map +1 -0
  132. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/util.js +49 -0
  133. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/util.js.map +1 -0
  134. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/body.js +560 -0
  135. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/body.js.map +1 -0
  136. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/constants.js +136 -0
  137. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/constants.js.map +1 -0
  138. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/data-url.js +762 -0
  139. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/data-url.js.map +1 -0
  140. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/dispatcher-weakref.js +60 -0
  141. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/dispatcher-weakref.js.map +1 -0
  142. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/file.js +146 -0
  143. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/file.js.map +1 -0
  144. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/formdata-parser.js +499 -0
  145. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/formdata-parser.js.map +1 -0
  146. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/formdata.js +275 -0
  147. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/formdata.js.map +1 -0
  148. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/global.js +52 -0
  149. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/global.js.map +1 -0
  150. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/headers.js +709 -0
  151. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/headers.js.map +1 -0
  152. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/index.js +2235 -0
  153. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/index.js.map +1 -0
  154. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/request.js +1069 -0
  155. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/request.js.map +1 -0
  156. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/response.js +640 -0
  157. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/response.js.map +1 -0
  158. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/symbols.js +21 -0
  159. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/symbols.js.map +1 -0
  160. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/util.js +1662 -0
  161. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/util.js.map +1 -0
  162. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/webidl.js +716 -0
  163. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/webidl.js.map +1 -0
  164. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/encoding.js +302 -0
  165. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/encoding.js.map +1 -0
  166. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/filereader.js +361 -0
  167. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/filereader.js.map +1 -0
  168. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/progressevent.js +92 -0
  169. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/progressevent.js.map +1 -0
  170. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/symbols.js +22 -0
  171. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/symbols.js.map +1 -0
  172. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/util.js +417 -0
  173. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/util.js.map +1 -0
  174. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/connection.js +391 -0
  175. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/connection.js.map +1 -0
  176. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/constants.js +78 -0
  177. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/constants.js.map +1 -0
  178. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/events.js +350 -0
  179. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/events.js.map +1 -0
  180. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/frame.js +110 -0
  181. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/frame.js.map +1 -0
  182. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/permessage-deflate.js +89 -0
  183. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/permessage-deflate.js.map +1 -0
  184. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/receiver.js +451 -0
  185. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/receiver.js.map +1 -0
  186. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/sender.js +120 -0
  187. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/sender.js.map +1 -0
  188. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/symbols.js +24 -0
  189. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/symbols.js.map +1 -0
  190. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/util.js +336 -0
  191. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/util.js.map +1 -0
  192. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/websocket.js +618 -0
  193. package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/websocket.js.map +1 -0
  194. package/lib/cjs/__/@actions/http-client/lib/index.js +2 -2
  195. package/lib/cjs/__/@octokit/auth-token/dist-bundle/index.js.map +1 -0
  196. package/lib/cjs/__/@octokit/core/dist-src/index.js.map +1 -0
  197. package/lib/cjs/__/@octokit/core/dist-src/version.js.map +1 -0
  198. package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/endpoint/dist-bundle/index.js +1 -1
  199. package/lib/cjs/__/@octokit/endpoint/dist-bundle/index.js.map +1 -0
  200. package/lib/cjs/__/@octokit/graphql/dist-bundle/index.js.map +1 -0
  201. package/lib/cjs/__/@octokit/plugin-paginate-rest/dist-bundle/index.js.map +1 -0
  202. package/lib/cjs/__/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js.map +1 -0
  203. package/lib/cjs/__/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js.map +1 -0
  204. package/lib/cjs/__/@octokit/plugin-rest-endpoint-methods/dist-src/index.js.map +1 -0
  205. package/lib/cjs/__/@octokit/plugin-rest-endpoint-methods/dist-src/version.js.map +1 -0
  206. package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/request/dist-bundle/index.js +5 -4
  207. package/lib/cjs/__/@octokit/request/dist-bundle/index.js.map +1 -0
  208. package/lib/cjs/__/@octokit/request-error/dist-src/index.js.map +1 -0
  209. package/lib/cjs/__/before-after-hook/index.js.map +1 -0
  210. package/lib/cjs/__/before-after-hook/lib/add.js.map +1 -0
  211. package/lib/cjs/__/before-after-hook/lib/register.js.map +1 -0
  212. package/lib/cjs/__/before-after-hook/lib/remove.js.map +1 -0
  213. package/lib/cjs/__/cross-spawn/index.js +1 -1
  214. package/lib/cjs/__/env-ci/lib/git.js +1 -1
  215. package/lib/cjs/__/{env-ci/__/execa → execa}/index.js +3 -3
  216. package/lib/cjs/__/execa/index.js.map +1 -0
  217. package/lib/cjs/__/execa/lib/command.js.map +1 -0
  218. package/lib/cjs/__/execa/lib/error.js.map +1 -0
  219. package/lib/cjs/__/execa/lib/promise.js.map +1 -0
  220. package/lib/cjs/__/execa/lib/stdio.js.map +1 -0
  221. package/lib/cjs/__/{env-ci/__/execa → execa}/lib/stream.js +1 -1
  222. package/lib/cjs/__/execa/lib/stream.js.map +1 -0
  223. package/lib/cjs/__/execa/lib/verbose.js.map +1 -0
  224. package/lib/cjs/__/get-stream/source/array-buffer.js.map +1 -0
  225. package/lib/cjs/__/human-signals/build/src/core.js.map +1 -0
  226. package/lib/cjs/__/human-signals/build/src/main.js.map +1 -0
  227. package/lib/cjs/__/human-signals/build/src/realtime.js.map +1 -0
  228. package/lib/cjs/__/human-signals/build/src/signals.js.map +1 -0
  229. package/lib/cjs/__/is-stream/index.js.map +1 -0
  230. package/lib/cjs/__/json-with-bigint/json-with-bigint.js +151 -0
  231. package/lib/cjs/__/json-with-bigint/json-with-bigint.js.map +1 -0
  232. package/lib/cjs/__/npm-run-path/__/path-key/index.js.map +1 -0
  233. package/lib/cjs/__/{env-ci/__/npm-run-path → npm-run-path}/index.js +1 -1
  234. package/lib/cjs/__/npm-run-path/index.js.map +1 -0
  235. package/lib/cjs/__/path-key/index.js +1 -1
  236. package/lib/cjs/__/signal-exit/dist/mjs/index.js.map +1 -0
  237. package/lib/cjs/__/signal-exit/dist/mjs/signals.js.map +1 -0
  238. package/lib/cjs/__/strip-final-newline/index.js.map +1 -0
  239. package/lib/cjs/__/undici/index.js +1 -1
  240. package/lib/cjs/__/undici/lib/api/api-connect.js +3 -3
  241. package/lib/cjs/__/undici/lib/api/api-pipeline.js +3 -3
  242. package/lib/cjs/__/undici/lib/api/api-request.js +3 -3
  243. package/lib/cjs/__/undici/lib/api/api-stream.js +3 -3
  244. package/lib/cjs/__/undici/lib/api/api-upgrade.js +3 -3
  245. package/lib/cjs/__/undici/lib/core/util.js +14 -14
  246. package/lib/cjs/__/undici/lib/fetch/body.js +8 -8
  247. package/lib/cjs/__/undici/lib/fetch/constants.js +3 -3
  248. package/lib/cjs/__/undici/lib/fetch/dataURL.js +5 -5
  249. package/lib/cjs/__/undici/lib/fetch/file.js +3 -3
  250. package/lib/cjs/__/undici/lib/fetch/formdata.js +3 -3
  251. package/lib/cjs/__/undici/lib/fetch/index.js +3 -3
  252. package/lib/cjs/__/undici/lib/fetch/index.js.map +1 -1
  253. package/lib/cjs/__/undici/lib/fetch/util.js +6 -6
  254. package/lib/cjs/__/undici/lib/fileapi/util.js +6 -6
  255. package/lib/cjs/__/undici/lib/websocket/events.js +3 -3
  256. package/lib/cjs/__/universal-user-agent/index.js.map +1 -0
  257. package/lib/cjs/_virtual/api-request2.js +6 -0
  258. package/lib/cjs/_virtual/api-request2.js.map +1 -0
  259. package/lib/cjs/_virtual/constants2.js +6 -0
  260. package/lib/cjs/_virtual/constants2.js.map +1 -0
  261. package/lib/cjs/_virtual/index10.js +2 -2
  262. package/lib/cjs/_virtual/index11.js +2 -2
  263. package/lib/cjs/_virtual/index14.js +2 -2
  264. package/lib/cjs/_virtual/index15.js +6 -0
  265. package/lib/cjs/_virtual/index15.js.map +1 -0
  266. package/lib/cjs/_virtual/index16.js +6 -0
  267. package/lib/cjs/_virtual/index16.js.map +1 -0
  268. package/lib/cjs/_virtual/index2.js +1 -1
  269. package/lib/cjs/_virtual/index3.js +1 -1
  270. package/lib/cjs/_virtual/index4.js +1 -1
  271. package/lib/cjs/_virtual/index8.js +2 -2
  272. package/lib/cjs/_virtual/mock-interceptor2.js +6 -0
  273. package/lib/cjs/_virtual/mock-interceptor2.js.map +1 -0
  274. package/lib/cjs/_virtual/utils4.js +6 -0
  275. package/lib/cjs/_virtual/utils4.js.map +1 -0
  276. package/lib/cjs/env/load.js +1 -1
  277. package/lib/cjs/env/load.js.map +1 -1
  278. package/lib/esm/__/@actions/http-client/__/undici/index.js +220 -0
  279. package/lib/esm/__/@actions/http-client/__/undici/index.js.map +1 -0
  280. package/lib/esm/__/@actions/http-client/__/undici/lib/api/abort-signal.js +71 -0
  281. package/lib/esm/__/@actions/http-client/__/undici/lib/api/abort-signal.js.map +1 -0
  282. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-connect.js +124 -0
  283. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-connect.js.map +1 -0
  284. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-pipeline.js +268 -0
  285. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-pipeline.js.map +1 -0
  286. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-request.js +231 -0
  287. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-request.js.map +1 -0
  288. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-stream.js +238 -0
  289. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-stream.js.map +1 -0
  290. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-upgrade.js +124 -0
  291. package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-upgrade.js.map +1 -0
  292. package/lib/esm/__/@actions/http-client/__/undici/lib/api/index.js +23 -0
  293. package/lib/esm/__/@actions/http-client/__/undici/lib/api/index.js.map +1 -0
  294. package/lib/esm/__/@actions/http-client/__/undici/lib/api/readable.js +398 -0
  295. package/lib/esm/__/@actions/http-client/__/undici/lib/api/readable.js.map +1 -0
  296. package/lib/esm/__/@actions/http-client/__/undici/lib/api/util.js +108 -0
  297. package/lib/esm/__/@actions/http-client/__/undici/lib/api/util.js.map +1 -0
  298. package/lib/esm/__/@actions/http-client/__/undici/lib/core/connect.js +258 -0
  299. package/lib/esm/__/@actions/http-client/__/undici/lib/core/connect.js.map +1 -0
  300. package/lib/esm/__/@actions/http-client/__/undici/lib/core/constants.js +128 -0
  301. package/lib/esm/__/@actions/http-client/__/undici/lib/core/constants.js.map +1 -0
  302. package/lib/esm/__/@actions/http-client/__/undici/lib/core/diagnostics.js +215 -0
  303. package/lib/esm/__/@actions/http-client/__/undici/lib/core/diagnostics.js.map +1 -0
  304. package/lib/esm/__/@actions/http-client/__/undici/lib/core/errors.js +416 -0
  305. package/lib/esm/__/@actions/http-client/__/undici/lib/core/errors.js.map +1 -0
  306. package/lib/esm/__/@actions/http-client/__/undici/lib/core/request.js +411 -0
  307. package/lib/esm/__/@actions/http-client/__/undici/lib/core/request.js.map +1 -0
  308. package/lib/esm/__/@actions/http-client/__/undici/lib/core/symbols.js +78 -0
  309. package/lib/esm/__/@actions/http-client/__/undici/lib/core/symbols.js.map +1 -0
  310. package/lib/esm/__/@actions/http-client/__/undici/lib/core/tree.js +164 -0
  311. package/lib/esm/__/@actions/http-client/__/undici/lib/core/tree.js.map +1 -0
  312. package/lib/esm/__/@actions/http-client/__/undici/lib/core/util.js +742 -0
  313. package/lib/esm/__/@actions/http-client/__/undici/lib/core/util.js.map +1 -0
  314. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/agent.js +147 -0
  315. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/agent.js.map +1 -0
  316. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/balanced-pool.js +225 -0
  317. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/balanced-pool.js.map +1 -0
  318. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client-h1.js +1391 -0
  319. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client-h1.js.map +1 -0
  320. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client-h2.js +761 -0
  321. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client-h2.js.map +1 -0
  322. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client.js +642 -0
  323. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client.js.map +1 -0
  324. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher-base.js +204 -0
  325. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher-base.js.map +1 -0
  326. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher.js +77 -0
  327. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher.js.map +1 -0
  328. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/env-http-proxy-agent.js +175 -0
  329. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/env-http-proxy-agent.js.map +1 -0
  330. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/fixed-queue.js +127 -0
  331. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/fixed-queue.js.map +1 -0
  332. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool-base.js +209 -0
  333. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool-base.js.map +1 -0
  334. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool-stats.js +47 -0
  335. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool-stats.js.map +1 -0
  336. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool.js +124 -0
  337. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool.js.map +1 -0
  338. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/proxy-agent.js +293 -0
  339. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/proxy-agent.js.map +1 -0
  340. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/retry-agent.js +48 -0
  341. package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/retry-agent.js.map +1 -0
  342. package/lib/esm/__/@actions/http-client/__/undici/lib/global.js +45 -0
  343. package/lib/esm/__/@actions/http-client/__/undici/lib/global.js.map +1 -0
  344. package/lib/esm/__/@actions/http-client/__/undici/lib/handler/decorator-handler.js +54 -0
  345. package/lib/esm/__/@actions/http-client/__/undici/lib/handler/decorator-handler.js.map +1 -0
  346. package/lib/esm/__/@actions/http-client/__/undici/lib/handler/redirect-handler.js +230 -0
  347. package/lib/esm/__/@actions/http-client/__/undici/lib/handler/redirect-handler.js.map +1 -0
  348. package/lib/esm/__/@actions/http-client/__/undici/lib/handler/retry-handler.js +389 -0
  349. package/lib/esm/__/@actions/http-client/__/undici/lib/handler/retry-handler.js.map +1 -0
  350. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/dns.js +390 -0
  351. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/dns.js.map +1 -0
  352. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/dump.js +137 -0
  353. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/dump.js.map +1 -0
  354. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/redirect-interceptor.js +33 -0
  355. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/redirect-interceptor.js.map +1 -0
  356. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/redirect.js +36 -0
  357. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/redirect.js.map +1 -0
  358. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/retry.js +31 -0
  359. package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/retry.js.map +1 -0
  360. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/constants.js +286 -0
  361. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/constants.js.map +1 -0
  362. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/llhttp-wasm.js +17 -0
  363. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/llhttp-wasm.js.map +1 -0
  364. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/llhttp_simd-wasm.js +17 -0
  365. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/llhttp_simd-wasm.js.map +1 -0
  366. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/utils.js +26 -0
  367. package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/utils.js.map +1 -0
  368. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-agent.js +181 -0
  369. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-agent.js.map +1 -0
  370. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-client.js +77 -0
  371. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-client.js.map +1 -0
  372. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-errors.js +40 -0
  373. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-errors.js.map +1 -0
  374. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-interceptor.js +222 -0
  375. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-interceptor.js.map +1 -0
  376. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-pool.js +77 -0
  377. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-pool.js.map +1 -0
  378. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-symbols.js +33 -0
  379. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-symbols.js.map +1 -0
  380. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-utils.js +383 -0
  381. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-utils.js.map +1 -0
  382. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/pending-interceptors-formatter.js +56 -0
  383. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/pending-interceptors-formatter.js.map +1 -0
  384. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/pluralizer.js +39 -0
  385. package/lib/esm/__/@actions/http-client/__/undici/lib/mock/pluralizer.js.map +1 -0
  386. package/lib/esm/__/@actions/http-client/__/undici/lib/util/timers.js +433 -0
  387. package/lib/esm/__/@actions/http-client/__/undici/lib/util/timers.js.map +1 -0
  388. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/cache.js +880 -0
  389. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/cache.js.map +1 -0
  390. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/cachestorage.js +167 -0
  391. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/cachestorage.js.map +1 -0
  392. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/symbols.js +17 -0
  393. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/symbols.js.map +1 -0
  394. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/util.js +59 -0
  395. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/util.js.map +1 -0
  396. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/constants.js +22 -0
  397. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/constants.js.map +1 -0
  398. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/index.js +199 -0
  399. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/index.js.map +1 -0
  400. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/parse.js +332 -0
  401. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/parse.js.map +1 -0
  402. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/util.js +292 -0
  403. package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/util.js.map +1 -0
  404. package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource-stream.js +411 -0
  405. package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource-stream.js.map +1 -0
  406. package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource.js +502 -0
  407. package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource.js.map +1 -0
  408. package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/util.js +47 -0
  409. package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/util.js.map +1 -0
  410. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/body.js +551 -0
  411. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/body.js.map +1 -0
  412. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/constants.js +134 -0
  413. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/constants.js.map +1 -0
  414. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/data-url.js +756 -0
  415. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/data-url.js.map +1 -0
  416. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/dispatcher-weakref.js +58 -0
  417. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/dispatcher-weakref.js.map +1 -0
  418. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/file.js +140 -0
  419. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/file.js.map +1 -0
  420. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/formdata-parser.js +492 -0
  421. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/formdata-parser.js.map +1 -0
  422. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/formdata.js +268 -0
  423. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/formdata.js.map +1 -0
  424. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/global.js +50 -0
  425. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/global.js.map +1 -0
  426. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/headers.js +702 -0
  427. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/headers.js.map +1 -0
  428. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/index.js +2224 -0
  429. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/index.js.map +1 -0
  430. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/request.js +1061 -0
  431. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/request.js.map +1 -0
  432. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/response.js +633 -0
  433. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/response.js.map +1 -0
  434. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/symbols.js +19 -0
  435. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/symbols.js.map +1 -0
  436. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/util.js +1652 -0
  437. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/util.js.map +1 -0
  438. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/webidl.js +709 -0
  439. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/webidl.js.map +1 -0
  440. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/encoding.js +300 -0
  441. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/encoding.js.map +1 -0
  442. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/filereader.js +359 -0
  443. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/filereader.js.map +1 -0
  444. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/progressevent.js +90 -0
  445. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/progressevent.js.map +1 -0
  446. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/symbols.js +20 -0
  447. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/symbols.js.map +1 -0
  448. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/util.js +409 -0
  449. package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/util.js.map +1 -0
  450. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/connection.js +389 -0
  451. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/connection.js.map +1 -0
  452. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/constants.js +76 -0
  453. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/constants.js.map +1 -0
  454. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/events.js +344 -0
  455. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/events.js.map +1 -0
  456. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/frame.js +108 -0
  457. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/frame.js.map +1 -0
  458. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/permessage-deflate.js +83 -0
  459. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/permessage-deflate.js.map +1 -0
  460. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/receiver.js +444 -0
  461. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/receiver.js.map +1 -0
  462. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/sender.js +118 -0
  463. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/sender.js.map +1 -0
  464. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/symbols.js +22 -0
  465. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/symbols.js.map +1 -0
  466. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/util.js +330 -0
  467. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/util.js.map +1 -0
  468. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/websocket.js +612 -0
  469. package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/websocket.js.map +1 -0
  470. package/lib/esm/__/@actions/http-client/lib/index.js +2 -2
  471. package/lib/esm/__/@octokit/auth-token/dist-bundle/index.js.map +1 -0
  472. package/lib/esm/__/@octokit/core/dist-src/index.js.map +1 -0
  473. package/lib/esm/__/@octokit/core/dist-src/version.js.map +1 -0
  474. package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/endpoint/dist-bundle/index.js +1 -1
  475. package/lib/esm/__/@octokit/endpoint/dist-bundle/index.js.map +1 -0
  476. package/lib/esm/__/@octokit/graphql/dist-bundle/index.js.map +1 -0
  477. package/lib/esm/__/@octokit/plugin-paginate-rest/dist-bundle/index.js.map +1 -0
  478. package/lib/esm/__/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js.map +1 -0
  479. package/lib/esm/__/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js.map +1 -0
  480. package/lib/esm/__/@octokit/plugin-rest-endpoint-methods/dist-src/index.js.map +1 -0
  481. package/lib/esm/__/@octokit/plugin-rest-endpoint-methods/dist-src/version.js.map +1 -0
  482. package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/request/dist-bundle/index.js +5 -4
  483. package/lib/esm/__/@octokit/request/dist-bundle/index.js.map +1 -0
  484. package/lib/esm/__/@octokit/request-error/dist-src/index.js.map +1 -0
  485. package/lib/esm/__/before-after-hook/index.js.map +1 -0
  486. package/lib/esm/__/before-after-hook/lib/add.js.map +1 -0
  487. package/lib/esm/__/before-after-hook/lib/register.js.map +1 -0
  488. package/lib/esm/__/before-after-hook/lib/remove.js.map +1 -0
  489. package/lib/esm/__/cross-spawn/index.js +1 -1
  490. package/lib/esm/__/env-ci/lib/git.js +1 -1
  491. package/lib/esm/__/{env-ci/__/execa → execa}/index.js +1 -1
  492. package/lib/esm/__/execa/index.js.map +1 -0
  493. package/lib/esm/__/execa/lib/command.js.map +1 -0
  494. package/lib/esm/__/execa/lib/error.js.map +1 -0
  495. package/lib/esm/__/execa/lib/promise.js.map +1 -0
  496. package/lib/esm/__/execa/lib/stdio.js.map +1 -0
  497. package/lib/esm/__/{env-ci/__/execa → execa}/lib/stream.js +1 -1
  498. package/lib/esm/__/execa/lib/stream.js.map +1 -0
  499. package/lib/esm/__/execa/lib/verbose.js.map +1 -0
  500. package/lib/esm/__/get-stream/source/array-buffer.js.map +1 -0
  501. package/lib/esm/__/human-signals/build/src/core.js.map +1 -0
  502. package/lib/esm/__/human-signals/build/src/main.js.map +1 -0
  503. package/lib/esm/__/human-signals/build/src/realtime.js.map +1 -0
  504. package/lib/esm/__/human-signals/build/src/signals.js.map +1 -0
  505. package/lib/esm/__/is-stream/index.js.map +1 -0
  506. package/lib/esm/__/java-properties/dist-node/index.js +1 -1
  507. package/lib/esm/__/json-with-bigint/json-with-bigint.js +148 -0
  508. package/lib/esm/__/json-with-bigint/json-with-bigint.js.map +1 -0
  509. package/lib/esm/__/npm-run-path/__/path-key/index.js.map +1 -0
  510. package/lib/esm/__/{env-ci/__/npm-run-path → npm-run-path}/index.js +1 -1
  511. package/lib/esm/__/npm-run-path/index.js.map +1 -0
  512. package/lib/esm/__/path-key/index.js +1 -1
  513. package/lib/esm/__/signal-exit/dist/mjs/index.js.map +1 -0
  514. package/lib/esm/__/signal-exit/dist/mjs/signals.js.map +1 -0
  515. package/lib/esm/__/strip-final-newline/index.js.map +1 -0
  516. package/lib/esm/__/undici/index.js +1 -1
  517. package/lib/esm/__/undici/lib/api/api-connect.js +2 -2
  518. package/lib/esm/__/undici/lib/api/api-pipeline.js +2 -2
  519. package/lib/esm/__/undici/lib/api/api-request.js +2 -2
  520. package/lib/esm/__/undici/lib/api/api-request.js.map +1 -1
  521. package/lib/esm/__/undici/lib/api/api-stream.js +2 -2
  522. package/lib/esm/__/undici/lib/api/api-stream.js.map +1 -1
  523. package/lib/esm/__/undici/lib/api/api-upgrade.js +2 -2
  524. package/lib/esm/__/undici/lib/api/api-upgrade.js.map +1 -1
  525. package/lib/esm/__/undici/lib/core/util.js +10 -10
  526. package/lib/esm/__/undici/lib/core/util.js.map +1 -1
  527. package/lib/esm/__/undici/lib/fetch/body.js +6 -6
  528. package/lib/esm/__/undici/lib/fetch/body.js.map +1 -1
  529. package/lib/esm/__/undici/lib/fetch/constants.js +2 -2
  530. package/lib/esm/__/undici/lib/fetch/constants.js.map +1 -1
  531. package/lib/esm/__/undici/lib/fetch/dataURL.js +4 -4
  532. package/lib/esm/__/undici/lib/fetch/dataURL.js.map +1 -1
  533. package/lib/esm/__/undici/lib/fetch/file.js +2 -2
  534. package/lib/esm/__/undici/lib/fetch/file.js.map +1 -1
  535. package/lib/esm/__/undici/lib/fetch/formdata.js +2 -2
  536. package/lib/esm/__/undici/lib/fetch/index.js +2 -2
  537. package/lib/esm/__/undici/lib/fetch/index.js.map +1 -1
  538. package/lib/esm/__/undici/lib/fetch/util.js +4 -4
  539. package/lib/esm/__/undici/lib/fetch/util.js.map +1 -1
  540. package/lib/esm/__/undici/lib/fileapi/util.js +4 -4
  541. package/lib/esm/__/undici/lib/fileapi/util.js.map +1 -1
  542. package/lib/esm/__/undici/lib/websocket/events.js +2 -2
  543. package/lib/esm/__/universal-user-agent/index.js.map +1 -0
  544. package/lib/esm/_virtual/api-request2.js +4 -0
  545. package/lib/esm/_virtual/api-request2.js.map +1 -0
  546. package/lib/esm/_virtual/constants2.js +4 -0
  547. package/lib/esm/_virtual/constants2.js.map +1 -0
  548. package/lib/esm/_virtual/index10.js +4 -2
  549. package/lib/esm/_virtual/index10.js.map +1 -1
  550. package/lib/esm/_virtual/index11.js +2 -2
  551. package/lib/esm/_virtual/index14.js +2 -2
  552. package/lib/esm/_virtual/index15.js +4 -0
  553. package/lib/esm/_virtual/index15.js.map +1 -0
  554. package/lib/esm/_virtual/index16.js +4 -0
  555. package/lib/esm/_virtual/index16.js.map +1 -0
  556. package/lib/esm/_virtual/index2.js +1 -1
  557. package/lib/esm/_virtual/index3.js +1 -1
  558. package/lib/esm/_virtual/index4.js +1 -1
  559. package/lib/esm/_virtual/index5.js +2 -6
  560. package/lib/esm/_virtual/index5.js.map +1 -1
  561. package/lib/esm/_virtual/index6.js +6 -2
  562. package/lib/esm/_virtual/index6.js.map +1 -1
  563. package/lib/esm/_virtual/index8.js +2 -4
  564. package/lib/esm/_virtual/index8.js.map +1 -1
  565. package/lib/esm/_virtual/index9.js +2 -2
  566. package/lib/esm/_virtual/mock-interceptor2.js +4 -0
  567. package/lib/esm/_virtual/mock-interceptor2.js.map +1 -0
  568. package/lib/esm/_virtual/utils4.js +4 -0
  569. package/lib/esm/_virtual/utils4.js.map +1 -0
  570. package/lib/esm/env/load.js +1 -1
  571. package/lib/esm/env/load.js.map +1 -1
  572. package/lib/types/env/load.d.ts +5 -5
  573. package/lib/types/utils/log-response.d.ts +5 -5
  574. package/lib/types/utils/logger.d.ts +5 -5
  575. package/package.json +9 -9
  576. package/lib/cjs/__/@actions/github/__/@octokit/auth-token/dist-bundle/index.js.map +0 -1
  577. package/lib/cjs/__/@actions/github/__/@octokit/core/dist-src/index.js.map +0 -1
  578. package/lib/cjs/__/@actions/github/__/@octokit/core/dist-src/version.js.map +0 -1
  579. package/lib/cjs/__/@actions/github/__/@octokit/endpoint/dist-bundle/index.js.map +0 -1
  580. package/lib/cjs/__/@actions/github/__/@octokit/graphql/dist-bundle/index.js.map +0 -1
  581. package/lib/cjs/__/@actions/github/__/@octokit/plugin-paginate-rest/dist-bundle/index.js.map +0 -1
  582. package/lib/cjs/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js.map +0 -1
  583. package/lib/cjs/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js.map +0 -1
  584. package/lib/cjs/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/index.js.map +0 -1
  585. package/lib/cjs/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/version.js.map +0 -1
  586. package/lib/cjs/__/@actions/github/__/@octokit/request/dist-bundle/index.js.map +0 -1
  587. package/lib/cjs/__/@actions/github/__/@octokit/request-error/dist-src/index.js.map +0 -1
  588. package/lib/cjs/__/@actions/github/__/before-after-hook/index.js.map +0 -1
  589. package/lib/cjs/__/@actions/github/__/before-after-hook/lib/add.js.map +0 -1
  590. package/lib/cjs/__/@actions/github/__/before-after-hook/lib/register.js.map +0 -1
  591. package/lib/cjs/__/@actions/github/__/before-after-hook/lib/remove.js.map +0 -1
  592. package/lib/cjs/__/@actions/github/__/universal-user-agent/index.js.map +0 -1
  593. package/lib/cjs/__/env-ci/__/execa/index.js.map +0 -1
  594. package/lib/cjs/__/env-ci/__/execa/lib/command.js.map +0 -1
  595. package/lib/cjs/__/env-ci/__/execa/lib/error.js.map +0 -1
  596. package/lib/cjs/__/env-ci/__/execa/lib/promise.js.map +0 -1
  597. package/lib/cjs/__/env-ci/__/execa/lib/stdio.js.map +0 -1
  598. package/lib/cjs/__/env-ci/__/execa/lib/stream.js.map +0 -1
  599. package/lib/cjs/__/env-ci/__/execa/lib/verbose.js.map +0 -1
  600. package/lib/cjs/__/env-ci/__/get-stream/source/array-buffer.js.map +0 -1
  601. package/lib/cjs/__/env-ci/__/human-signals/build/src/core.js.map +0 -1
  602. package/lib/cjs/__/env-ci/__/human-signals/build/src/main.js.map +0 -1
  603. package/lib/cjs/__/env-ci/__/human-signals/build/src/realtime.js.map +0 -1
  604. package/lib/cjs/__/env-ci/__/human-signals/build/src/signals.js.map +0 -1
  605. package/lib/cjs/__/env-ci/__/is-stream/index.js.map +0 -1
  606. package/lib/cjs/__/env-ci/__/npm-run-path/index.js.map +0 -1
  607. package/lib/cjs/__/env-ci/__/path-key/index.js.map +0 -1
  608. package/lib/cjs/__/env-ci/__/signal-exit/dist/mjs/index.js.map +0 -1
  609. package/lib/cjs/__/env-ci/__/signal-exit/dist/mjs/signals.js.map +0 -1
  610. package/lib/cjs/__/env-ci/__/strip-final-newline/index.js.map +0 -1
  611. package/lib/esm/__/@actions/github/__/@octokit/auth-token/dist-bundle/index.js.map +0 -1
  612. package/lib/esm/__/@actions/github/__/@octokit/core/dist-src/index.js.map +0 -1
  613. package/lib/esm/__/@actions/github/__/@octokit/core/dist-src/version.js.map +0 -1
  614. package/lib/esm/__/@actions/github/__/@octokit/endpoint/dist-bundle/index.js.map +0 -1
  615. package/lib/esm/__/@actions/github/__/@octokit/graphql/dist-bundle/index.js.map +0 -1
  616. package/lib/esm/__/@actions/github/__/@octokit/plugin-paginate-rest/dist-bundle/index.js.map +0 -1
  617. package/lib/esm/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js.map +0 -1
  618. package/lib/esm/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js.map +0 -1
  619. package/lib/esm/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/index.js.map +0 -1
  620. package/lib/esm/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/version.js.map +0 -1
  621. package/lib/esm/__/@actions/github/__/@octokit/request/dist-bundle/index.js.map +0 -1
  622. package/lib/esm/__/@actions/github/__/@octokit/request-error/dist-src/index.js.map +0 -1
  623. package/lib/esm/__/@actions/github/__/before-after-hook/index.js.map +0 -1
  624. package/lib/esm/__/@actions/github/__/before-after-hook/lib/add.js.map +0 -1
  625. package/lib/esm/__/@actions/github/__/before-after-hook/lib/register.js.map +0 -1
  626. package/lib/esm/__/@actions/github/__/before-after-hook/lib/remove.js.map +0 -1
  627. package/lib/esm/__/@actions/github/__/universal-user-agent/index.js.map +0 -1
  628. package/lib/esm/__/env-ci/__/execa/index.js.map +0 -1
  629. package/lib/esm/__/env-ci/__/execa/lib/command.js.map +0 -1
  630. package/lib/esm/__/env-ci/__/execa/lib/error.js.map +0 -1
  631. package/lib/esm/__/env-ci/__/execa/lib/promise.js.map +0 -1
  632. package/lib/esm/__/env-ci/__/execa/lib/stdio.js.map +0 -1
  633. package/lib/esm/__/env-ci/__/execa/lib/stream.js.map +0 -1
  634. package/lib/esm/__/env-ci/__/execa/lib/verbose.js.map +0 -1
  635. package/lib/esm/__/env-ci/__/get-stream/source/array-buffer.js.map +0 -1
  636. package/lib/esm/__/env-ci/__/human-signals/build/src/core.js.map +0 -1
  637. package/lib/esm/__/env-ci/__/human-signals/build/src/main.js.map +0 -1
  638. package/lib/esm/__/env-ci/__/human-signals/build/src/realtime.js.map +0 -1
  639. package/lib/esm/__/env-ci/__/human-signals/build/src/signals.js.map +0 -1
  640. package/lib/esm/__/env-ci/__/is-stream/index.js.map +0 -1
  641. package/lib/esm/__/env-ci/__/npm-run-path/index.js.map +0 -1
  642. package/lib/esm/__/env-ci/__/path-key/index.js.map +0 -1
  643. package/lib/esm/__/env-ci/__/signal-exit/dist/mjs/index.js.map +0 -1
  644. package/lib/esm/__/env-ci/__/signal-exit/dist/mjs/signals.js.map +0 -1
  645. package/lib/esm/__/env-ci/__/strip-final-newline/index.js.map +0 -1
  646. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/auth-token/dist-bundle/index.js +0 -0
  647. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/core/dist-src/index.js +0 -0
  648. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/core/dist-src/version.js +0 -0
  649. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/graphql/dist-bundle/index.js +0 -0
  650. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-paginate-rest/dist-bundle/index.js +0 -0
  651. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js +0 -0
  652. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js +0 -0
  653. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/index.js +0 -0
  654. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/version.js +0 -0
  655. /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/request-error/dist-src/index.js +0 -0
  656. /package/lib/cjs/__/{@actions/github/__/before-after-hook → before-after-hook}/index.js +0 -0
  657. /package/lib/cjs/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/add.js +0 -0
  658. /package/lib/cjs/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/register.js +0 -0
  659. /package/lib/cjs/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/remove.js +0 -0
  660. /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/command.js +0 -0
  661. /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/error.js +0 -0
  662. /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/promise.js +0 -0
  663. /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/stdio.js +0 -0
  664. /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/verbose.js +0 -0
  665. /package/lib/cjs/__/{env-ci/__/get-stream → get-stream}/source/array-buffer.js +0 -0
  666. /package/lib/cjs/__/{env-ci/__/human-signals → human-signals}/build/src/core.js +0 -0
  667. /package/lib/cjs/__/{env-ci/__/human-signals → human-signals}/build/src/main.js +0 -0
  668. /package/lib/cjs/__/{env-ci/__/human-signals → human-signals}/build/src/realtime.js +0 -0
  669. /package/lib/cjs/__/{env-ci/__/human-signals → human-signals}/build/src/signals.js +0 -0
  670. /package/lib/cjs/__/{env-ci/__/is-stream → is-stream}/index.js +0 -0
  671. /package/lib/cjs/__/{env-ci → npm-run-path}/__/path-key/index.js +0 -0
  672. /package/lib/cjs/__/{env-ci/__/signal-exit → signal-exit}/dist/mjs/index.js +0 -0
  673. /package/lib/cjs/__/{env-ci/__/signal-exit → signal-exit}/dist/mjs/signals.js +0 -0
  674. /package/lib/cjs/__/{env-ci/__/strip-final-newline → strip-final-newline}/index.js +0 -0
  675. /package/lib/cjs/__/{@actions/github/__/universal-user-agent → universal-user-agent}/index.js +0 -0
  676. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/auth-token/dist-bundle/index.js +0 -0
  677. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/core/dist-src/index.js +0 -0
  678. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/core/dist-src/version.js +0 -0
  679. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/graphql/dist-bundle/index.js +0 -0
  680. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-paginate-rest/dist-bundle/index.js +0 -0
  681. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js +0 -0
  682. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js +0 -0
  683. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/index.js +0 -0
  684. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/version.js +0 -0
  685. /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/request-error/dist-src/index.js +0 -0
  686. /package/lib/esm/__/{@actions/github/__/before-after-hook → before-after-hook}/index.js +0 -0
  687. /package/lib/esm/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/add.js +0 -0
  688. /package/lib/esm/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/register.js +0 -0
  689. /package/lib/esm/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/remove.js +0 -0
  690. /package/lib/esm/__/{env-ci/__/execa → execa}/lib/command.js +0 -0
  691. /package/lib/esm/__/{env-ci/__/execa → execa}/lib/error.js +0 -0
  692. /package/lib/esm/__/{env-ci/__/execa → execa}/lib/promise.js +0 -0
  693. /package/lib/esm/__/{env-ci/__/execa → execa}/lib/stdio.js +0 -0
  694. /package/lib/esm/__/{env-ci/__/execa → execa}/lib/verbose.js +0 -0
  695. /package/lib/esm/__/{env-ci/__/get-stream → get-stream}/source/array-buffer.js +0 -0
  696. /package/lib/esm/__/{env-ci/__/human-signals → human-signals}/build/src/core.js +0 -0
  697. /package/lib/esm/__/{env-ci/__/human-signals → human-signals}/build/src/main.js +0 -0
  698. /package/lib/esm/__/{env-ci/__/human-signals → human-signals}/build/src/realtime.js +0 -0
  699. /package/lib/esm/__/{env-ci/__/human-signals → human-signals}/build/src/signals.js +0 -0
  700. /package/lib/esm/__/{env-ci/__/is-stream → is-stream}/index.js +0 -0
  701. /package/lib/esm/__/{env-ci → npm-run-path}/__/path-key/index.js +0 -0
  702. /package/lib/esm/__/{env-ci/__/signal-exit → signal-exit}/dist/mjs/index.js +0 -0
  703. /package/lib/esm/__/{env-ci/__/signal-exit → signal-exit}/dist/mjs/signals.js +0 -0
  704. /package/lib/esm/__/{env-ci/__/strip-final-newline → strip-final-newline}/index.js +0 -0
  705. /package/lib/esm/__/{@actions/github/__/universal-user-agent → universal-user-agent}/index.js +0 -0
@@ -0,0 +1,756 @@
1
+ import require$$0 from 'node:assert';
2
+
3
+ var dataUrl;
4
+ var hasRequiredDataUrl;
5
+
6
+ function requireDataUrl () {
7
+ if (hasRequiredDataUrl) return dataUrl;
8
+ hasRequiredDataUrl = 1;
9
+
10
+ const assert = require$$0;
11
+
12
+ const encoder = new TextEncoder();
13
+
14
+ /**
15
+ * @see https://mimesniff.spec.whatwg.org/#http-token-code-point
16
+ */
17
+ const HTTP_TOKEN_CODEPOINTS = /^[!#$%&'*+\-.^_|~A-Za-z0-9]+$/;
18
+ const HTTP_WHITESPACE_REGEX = /[\u000A\u000D\u0009\u0020]/; // eslint-disable-line
19
+ const ASCII_WHITESPACE_REPLACE_REGEX = /[\u0009\u000A\u000C\u000D\u0020]/g; // eslint-disable-line
20
+ /**
21
+ * @see https://mimesniff.spec.whatwg.org/#http-quoted-string-token-code-point
22
+ */
23
+ const HTTP_QUOTED_STRING_TOKENS = /^[\u0009\u0020-\u007E\u0080-\u00FF]+$/; // eslint-disable-line
24
+
25
+ // https://fetch.spec.whatwg.org/#data-url-processor
26
+ /** @param {URL} dataURL */
27
+ function dataURLProcessor (dataURL) {
28
+ // 1. Assert: dataURL’s scheme is "data".
29
+ assert(dataURL.protocol === 'data:');
30
+
31
+ // 2. Let input be the result of running the URL
32
+ // serializer on dataURL with exclude fragment
33
+ // set to true.
34
+ let input = URLSerializer(dataURL, true);
35
+
36
+ // 3. Remove the leading "data:" string from input.
37
+ input = input.slice(5);
38
+
39
+ // 4. Let position point at the start of input.
40
+ const position = { position: 0 };
41
+
42
+ // 5. Let mimeType be the result of collecting a
43
+ // sequence of code points that are not equal
44
+ // to U+002C (,), given position.
45
+ let mimeType = collectASequenceOfCodePointsFast(
46
+ ',',
47
+ input,
48
+ position
49
+ );
50
+
51
+ // 6. Strip leading and trailing ASCII whitespace
52
+ // from mimeType.
53
+ // Undici implementation note: we need to store the
54
+ // length because if the mimetype has spaces removed,
55
+ // the wrong amount will be sliced from the input in
56
+ // step #9
57
+ const mimeTypeLength = mimeType.length;
58
+ mimeType = removeASCIIWhitespace(mimeType, true, true);
59
+
60
+ // 7. If position is past the end of input, then
61
+ // return failure
62
+ if (position.position >= input.length) {
63
+ return 'failure'
64
+ }
65
+
66
+ // 8. Advance position by 1.
67
+ position.position++;
68
+
69
+ // 9. Let encodedBody be the remainder of input.
70
+ const encodedBody = input.slice(mimeTypeLength + 1);
71
+
72
+ // 10. Let body be the percent-decoding of encodedBody.
73
+ let body = stringPercentDecode(encodedBody);
74
+
75
+ // 11. If mimeType ends with U+003B (;), followed by
76
+ // zero or more U+0020 SPACE, followed by an ASCII
77
+ // case-insensitive match for "base64", then:
78
+ if (/;(\u0020){0,}base64$/i.test(mimeType)) {
79
+ // 1. Let stringBody be the isomorphic decode of body.
80
+ const stringBody = isomorphicDecode(body);
81
+
82
+ // 2. Set body to the forgiving-base64 decode of
83
+ // stringBody.
84
+ body = forgivingBase64(stringBody);
85
+
86
+ // 3. If body is failure, then return failure.
87
+ if (body === 'failure') {
88
+ return 'failure'
89
+ }
90
+
91
+ // 4. Remove the last 6 code points from mimeType.
92
+ mimeType = mimeType.slice(0, -6);
93
+
94
+ // 5. Remove trailing U+0020 SPACE code points from mimeType,
95
+ // if any.
96
+ mimeType = mimeType.replace(/(\u0020)+$/, '');
97
+
98
+ // 6. Remove the last U+003B (;) code point from mimeType.
99
+ mimeType = mimeType.slice(0, -1);
100
+ }
101
+
102
+ // 12. If mimeType starts with U+003B (;), then prepend
103
+ // "text/plain" to mimeType.
104
+ if (mimeType.startsWith(';')) {
105
+ mimeType = 'text/plain' + mimeType;
106
+ }
107
+
108
+ // 13. Let mimeTypeRecord be the result of parsing
109
+ // mimeType.
110
+ let mimeTypeRecord = parseMIMEType(mimeType);
111
+
112
+ // 14. If mimeTypeRecord is failure, then set
113
+ // mimeTypeRecord to text/plain;charset=US-ASCII.
114
+ if (mimeTypeRecord === 'failure') {
115
+ mimeTypeRecord = parseMIMEType('text/plain;charset=US-ASCII');
116
+ }
117
+
118
+ // 15. Return a new data: URL struct whose MIME
119
+ // type is mimeTypeRecord and body is body.
120
+ // https://fetch.spec.whatwg.org/#data-url-struct
121
+ return { mimeType: mimeTypeRecord, body }
122
+ }
123
+
124
+ // https://url.spec.whatwg.org/#concept-url-serializer
125
+ /**
126
+ * @param {URL} url
127
+ * @param {boolean} excludeFragment
128
+ */
129
+ function URLSerializer (url, excludeFragment = false) {
130
+ if (!excludeFragment) {
131
+ return url.href
132
+ }
133
+
134
+ const href = url.href;
135
+ const hashLength = url.hash.length;
136
+
137
+ const serialized = hashLength === 0 ? href : href.substring(0, href.length - hashLength);
138
+
139
+ if (!hashLength && href.endsWith('#')) {
140
+ return serialized.slice(0, -1)
141
+ }
142
+
143
+ return serialized
144
+ }
145
+
146
+ // https://infra.spec.whatwg.org/#collect-a-sequence-of-code-points
147
+ /**
148
+ * @param {(char: string) => boolean} condition
149
+ * @param {string} input
150
+ * @param {{ position: number }} position
151
+ */
152
+ function collectASequenceOfCodePoints (condition, input, position) {
153
+ // 1. Let result be the empty string.
154
+ let result = '';
155
+
156
+ // 2. While position doesn’t point past the end of input and the
157
+ // code point at position within input meets the condition condition:
158
+ while (position.position < input.length && condition(input[position.position])) {
159
+ // 1. Append that code point to the end of result.
160
+ result += input[position.position];
161
+
162
+ // 2. Advance position by 1.
163
+ position.position++;
164
+ }
165
+
166
+ // 3. Return result.
167
+ return result
168
+ }
169
+
170
+ /**
171
+ * A faster collectASequenceOfCodePoints that only works when comparing a single character.
172
+ * @param {string} char
173
+ * @param {string} input
174
+ * @param {{ position: number }} position
175
+ */
176
+ function collectASequenceOfCodePointsFast (char, input, position) {
177
+ const idx = input.indexOf(char, position.position);
178
+ const start = position.position;
179
+
180
+ if (idx === -1) {
181
+ position.position = input.length;
182
+ return input.slice(start)
183
+ }
184
+
185
+ position.position = idx;
186
+ return input.slice(start, position.position)
187
+ }
188
+
189
+ // https://url.spec.whatwg.org/#string-percent-decode
190
+ /** @param {string} input */
191
+ function stringPercentDecode (input) {
192
+ // 1. Let bytes be the UTF-8 encoding of input.
193
+ const bytes = encoder.encode(input);
194
+
195
+ // 2. Return the percent-decoding of bytes.
196
+ return percentDecode(bytes)
197
+ }
198
+
199
+ /**
200
+ * @param {number} byte
201
+ */
202
+ function isHexCharByte (byte) {
203
+ // 0-9 A-F a-f
204
+ return (byte >= 0x30 && byte <= 0x39) || (byte >= 0x41 && byte <= 0x46) || (byte >= 0x61 && byte <= 0x66)
205
+ }
206
+
207
+ /**
208
+ * @param {number} byte
209
+ */
210
+ function hexByteToNumber (byte) {
211
+ return (
212
+ // 0-9
213
+ byte >= 0x30 && byte <= 0x39
214
+ ? (byte - 48)
215
+ // Convert to uppercase
216
+ // ((byte & 0xDF) - 65) + 10
217
+ : ((byte & 0xDF) - 55)
218
+ )
219
+ }
220
+
221
+ // https://url.spec.whatwg.org/#percent-decode
222
+ /** @param {Uint8Array} input */
223
+ function percentDecode (input) {
224
+ const length = input.length;
225
+ // 1. Let output be an empty byte sequence.
226
+ /** @type {Uint8Array} */
227
+ const output = new Uint8Array(length);
228
+ let j = 0;
229
+ // 2. For each byte byte in input:
230
+ for (let i = 0; i < length; ++i) {
231
+ const byte = input[i];
232
+
233
+ // 1. If byte is not 0x25 (%), then append byte to output.
234
+ if (byte !== 0x25) {
235
+ output[j++] = byte;
236
+
237
+ // 2. Otherwise, if byte is 0x25 (%) and the next two bytes
238
+ // after byte in input are not in the ranges
239
+ // 0x30 (0) to 0x39 (9), 0x41 (A) to 0x46 (F),
240
+ // and 0x61 (a) to 0x66 (f), all inclusive, append byte
241
+ // to output.
242
+ } else if (
243
+ byte === 0x25 &&
244
+ !(isHexCharByte(input[i + 1]) && isHexCharByte(input[i + 2]))
245
+ ) {
246
+ output[j++] = 0x25;
247
+
248
+ // 3. Otherwise:
249
+ } else {
250
+ // 1. Let bytePoint be the two bytes after byte in input,
251
+ // decoded, and then interpreted as hexadecimal number.
252
+ // 2. Append a byte whose value is bytePoint to output.
253
+ output[j++] = (hexByteToNumber(input[i + 1]) << 4) | hexByteToNumber(input[i + 2]);
254
+
255
+ // 3. Skip the next two bytes in input.
256
+ i += 2;
257
+ }
258
+ }
259
+
260
+ // 3. Return output.
261
+ return length === j ? output : output.subarray(0, j)
262
+ }
263
+
264
+ // https://mimesniff.spec.whatwg.org/#parse-a-mime-type
265
+ /** @param {string} input */
266
+ function parseMIMEType (input) {
267
+ // 1. Remove any leading and trailing HTTP whitespace
268
+ // from input.
269
+ input = removeHTTPWhitespace(input, true, true);
270
+
271
+ // 2. Let position be a position variable for input,
272
+ // initially pointing at the start of input.
273
+ const position = { position: 0 };
274
+
275
+ // 3. Let type be the result of collecting a sequence
276
+ // of code points that are not U+002F (/) from
277
+ // input, given position.
278
+ const type = collectASequenceOfCodePointsFast(
279
+ '/',
280
+ input,
281
+ position
282
+ );
283
+
284
+ // 4. If type is the empty string or does not solely
285
+ // contain HTTP token code points, then return failure.
286
+ // https://mimesniff.spec.whatwg.org/#http-token-code-point
287
+ if (type.length === 0 || !HTTP_TOKEN_CODEPOINTS.test(type)) {
288
+ return 'failure'
289
+ }
290
+
291
+ // 5. If position is past the end of input, then return
292
+ // failure
293
+ if (position.position > input.length) {
294
+ return 'failure'
295
+ }
296
+
297
+ // 6. Advance position by 1. (This skips past U+002F (/).)
298
+ position.position++;
299
+
300
+ // 7. Let subtype be the result of collecting a sequence of
301
+ // code points that are not U+003B (;) from input, given
302
+ // position.
303
+ let subtype = collectASequenceOfCodePointsFast(
304
+ ';',
305
+ input,
306
+ position
307
+ );
308
+
309
+ // 8. Remove any trailing HTTP whitespace from subtype.
310
+ subtype = removeHTTPWhitespace(subtype, false, true);
311
+
312
+ // 9. If subtype is the empty string or does not solely
313
+ // contain HTTP token code points, then return failure.
314
+ if (subtype.length === 0 || !HTTP_TOKEN_CODEPOINTS.test(subtype)) {
315
+ return 'failure'
316
+ }
317
+
318
+ const typeLowercase = type.toLowerCase();
319
+ const subtypeLowercase = subtype.toLowerCase();
320
+
321
+ // 10. Let mimeType be a new MIME type record whose type
322
+ // is type, in ASCII lowercase, and subtype is subtype,
323
+ // in ASCII lowercase.
324
+ // https://mimesniff.spec.whatwg.org/#mime-type
325
+ const mimeType = {
326
+ type: typeLowercase,
327
+ subtype: subtypeLowercase,
328
+ /** @type {Map<string, string>} */
329
+ parameters: new Map(),
330
+ // https://mimesniff.spec.whatwg.org/#mime-type-essence
331
+ essence: `${typeLowercase}/${subtypeLowercase}`
332
+ };
333
+
334
+ // 11. While position is not past the end of input:
335
+ while (position.position < input.length) {
336
+ // 1. Advance position by 1. (This skips past U+003B (;).)
337
+ position.position++;
338
+
339
+ // 2. Collect a sequence of code points that are HTTP
340
+ // whitespace from input given position.
341
+ collectASequenceOfCodePoints(
342
+ // https://fetch.spec.whatwg.org/#http-whitespace
343
+ char => HTTP_WHITESPACE_REGEX.test(char),
344
+ input,
345
+ position
346
+ );
347
+
348
+ // 3. Let parameterName be the result of collecting a
349
+ // sequence of code points that are not U+003B (;)
350
+ // or U+003D (=) from input, given position.
351
+ let parameterName = collectASequenceOfCodePoints(
352
+ (char) => char !== ';' && char !== '=',
353
+ input,
354
+ position
355
+ );
356
+
357
+ // 4. Set parameterName to parameterName, in ASCII
358
+ // lowercase.
359
+ parameterName = parameterName.toLowerCase();
360
+
361
+ // 5. If position is not past the end of input, then:
362
+ if (position.position < input.length) {
363
+ // 1. If the code point at position within input is
364
+ // U+003B (;), then continue.
365
+ if (input[position.position] === ';') {
366
+ continue
367
+ }
368
+
369
+ // 2. Advance position by 1. (This skips past U+003D (=).)
370
+ position.position++;
371
+ }
372
+
373
+ // 6. If position is past the end of input, then break.
374
+ if (position.position > input.length) {
375
+ break
376
+ }
377
+
378
+ // 7. Let parameterValue be null.
379
+ let parameterValue = null;
380
+
381
+ // 8. If the code point at position within input is
382
+ // U+0022 ("), then:
383
+ if (input[position.position] === '"') {
384
+ // 1. Set parameterValue to the result of collecting
385
+ // an HTTP quoted string from input, given position
386
+ // and the extract-value flag.
387
+ parameterValue = collectAnHTTPQuotedString(input, position, true);
388
+
389
+ // 2. Collect a sequence of code points that are not
390
+ // U+003B (;) from input, given position.
391
+ collectASequenceOfCodePointsFast(
392
+ ';',
393
+ input,
394
+ position
395
+ );
396
+
397
+ // 9. Otherwise:
398
+ } else {
399
+ // 1. Set parameterValue to the result of collecting
400
+ // a sequence of code points that are not U+003B (;)
401
+ // from input, given position.
402
+ parameterValue = collectASequenceOfCodePointsFast(
403
+ ';',
404
+ input,
405
+ position
406
+ );
407
+
408
+ // 2. Remove any trailing HTTP whitespace from parameterValue.
409
+ parameterValue = removeHTTPWhitespace(parameterValue, false, true);
410
+
411
+ // 3. If parameterValue is the empty string, then continue.
412
+ if (parameterValue.length === 0) {
413
+ continue
414
+ }
415
+ }
416
+
417
+ // 10. If all of the following are true
418
+ // - parameterName is not the empty string
419
+ // - parameterName solely contains HTTP token code points
420
+ // - parameterValue solely contains HTTP quoted-string token code points
421
+ // - mimeType’s parameters[parameterName] does not exist
422
+ // then set mimeType’s parameters[parameterName] to parameterValue.
423
+ if (
424
+ parameterName.length !== 0 &&
425
+ HTTP_TOKEN_CODEPOINTS.test(parameterName) &&
426
+ (parameterValue.length === 0 || HTTP_QUOTED_STRING_TOKENS.test(parameterValue)) &&
427
+ !mimeType.parameters.has(parameterName)
428
+ ) {
429
+ mimeType.parameters.set(parameterName, parameterValue);
430
+ }
431
+ }
432
+
433
+ // 12. Return mimeType.
434
+ return mimeType
435
+ }
436
+
437
+ // https://infra.spec.whatwg.org/#forgiving-base64-decode
438
+ /** @param {string} data */
439
+ function forgivingBase64 (data) {
440
+ // 1. Remove all ASCII whitespace from data.
441
+ data = data.replace(ASCII_WHITESPACE_REPLACE_REGEX, ''); // eslint-disable-line
442
+
443
+ let dataLength = data.length;
444
+ // 2. If data’s code point length divides by 4 leaving
445
+ // no remainder, then:
446
+ if (dataLength % 4 === 0) {
447
+ // 1. If data ends with one or two U+003D (=) code points,
448
+ // then remove them from data.
449
+ if (data.charCodeAt(dataLength - 1) === 0x003D) {
450
+ --dataLength;
451
+ if (data.charCodeAt(dataLength - 1) === 0x003D) {
452
+ --dataLength;
453
+ }
454
+ }
455
+ }
456
+
457
+ // 3. If data’s code point length divides by 4 leaving
458
+ // a remainder of 1, then return failure.
459
+ if (dataLength % 4 === 1) {
460
+ return 'failure'
461
+ }
462
+
463
+ // 4. If data contains a code point that is not one of
464
+ // U+002B (+)
465
+ // U+002F (/)
466
+ // ASCII alphanumeric
467
+ // then return failure.
468
+ if (/[^+/0-9A-Za-z]/.test(data.length === dataLength ? data : data.substring(0, dataLength))) {
469
+ return 'failure'
470
+ }
471
+
472
+ const buffer = Buffer.from(data, 'base64');
473
+ return new Uint8Array(buffer.buffer, buffer.byteOffset, buffer.byteLength)
474
+ }
475
+
476
+ // https://fetch.spec.whatwg.org/#collect-an-http-quoted-string
477
+ // tests: https://fetch.spec.whatwg.org/#example-http-quoted-string
478
+ /**
479
+ * @param {string} input
480
+ * @param {{ position: number }} position
481
+ * @param {boolean?} extractValue
482
+ */
483
+ function collectAnHTTPQuotedString (input, position, extractValue) {
484
+ // 1. Let positionStart be position.
485
+ const positionStart = position.position;
486
+
487
+ // 2. Let value be the empty string.
488
+ let value = '';
489
+
490
+ // 3. Assert: the code point at position within input
491
+ // is U+0022 (").
492
+ assert(input[position.position] === '"');
493
+
494
+ // 4. Advance position by 1.
495
+ position.position++;
496
+
497
+ // 5. While true:
498
+ while (true) {
499
+ // 1. Append the result of collecting a sequence of code points
500
+ // that are not U+0022 (") or U+005C (\) from input, given
501
+ // position, to value.
502
+ value += collectASequenceOfCodePoints(
503
+ (char) => char !== '"' && char !== '\\',
504
+ input,
505
+ position
506
+ );
507
+
508
+ // 2. If position is past the end of input, then break.
509
+ if (position.position >= input.length) {
510
+ break
511
+ }
512
+
513
+ // 3. Let quoteOrBackslash be the code point at position within
514
+ // input.
515
+ const quoteOrBackslash = input[position.position];
516
+
517
+ // 4. Advance position by 1.
518
+ position.position++;
519
+
520
+ // 5. If quoteOrBackslash is U+005C (\), then:
521
+ if (quoteOrBackslash === '\\') {
522
+ // 1. If position is past the end of input, then append
523
+ // U+005C (\) to value and break.
524
+ if (position.position >= input.length) {
525
+ value += '\\';
526
+ break
527
+ }
528
+
529
+ // 2. Append the code point at position within input to value.
530
+ value += input[position.position];
531
+
532
+ // 3. Advance position by 1.
533
+ position.position++;
534
+
535
+ // 6. Otherwise:
536
+ } else {
537
+ // 1. Assert: quoteOrBackslash is U+0022 (").
538
+ assert(quoteOrBackslash === '"');
539
+
540
+ // 2. Break.
541
+ break
542
+ }
543
+ }
544
+
545
+ // 6. If the extract-value flag is set, then return value.
546
+ if (extractValue) {
547
+ return value
548
+ }
549
+
550
+ // 7. Return the code points from positionStart to position,
551
+ // inclusive, within input.
552
+ return input.slice(positionStart, position.position)
553
+ }
554
+
555
+ /**
556
+ * @see https://mimesniff.spec.whatwg.org/#serialize-a-mime-type
557
+ */
558
+ function serializeAMimeType (mimeType) {
559
+ assert(mimeType !== 'failure');
560
+ const { parameters, essence } = mimeType;
561
+
562
+ // 1. Let serialization be the concatenation of mimeType’s
563
+ // type, U+002F (/), and mimeType’s subtype.
564
+ let serialization = essence;
565
+
566
+ // 2. For each name → value of mimeType’s parameters:
567
+ for (let [name, value] of parameters.entries()) {
568
+ // 1. Append U+003B (;) to serialization.
569
+ serialization += ';';
570
+
571
+ // 2. Append name to serialization.
572
+ serialization += name;
573
+
574
+ // 3. Append U+003D (=) to serialization.
575
+ serialization += '=';
576
+
577
+ // 4. If value does not solely contain HTTP token code
578
+ // points or value is the empty string, then:
579
+ if (!HTTP_TOKEN_CODEPOINTS.test(value)) {
580
+ // 1. Precede each occurrence of U+0022 (") or
581
+ // U+005C (\) in value with U+005C (\).
582
+ value = value.replace(/(\\|")/g, '\\$1');
583
+
584
+ // 2. Prepend U+0022 (") to value.
585
+ value = '"' + value;
586
+
587
+ // 3. Append U+0022 (") to value.
588
+ value += '"';
589
+ }
590
+
591
+ // 5. Append value to serialization.
592
+ serialization += value;
593
+ }
594
+
595
+ // 3. Return serialization.
596
+ return serialization
597
+ }
598
+
599
+ /**
600
+ * @see https://fetch.spec.whatwg.org/#http-whitespace
601
+ * @param {number} char
602
+ */
603
+ function isHTTPWhiteSpace (char) {
604
+ // "\r\n\t "
605
+ return char === 0x00d || char === 0x00a || char === 0x009 || char === 0x020
606
+ }
607
+
608
+ /**
609
+ * @see https://fetch.spec.whatwg.org/#http-whitespace
610
+ * @param {string} str
611
+ * @param {boolean} [leading=true]
612
+ * @param {boolean} [trailing=true]
613
+ */
614
+ function removeHTTPWhitespace (str, leading = true, trailing = true) {
615
+ return removeChars(str, leading, trailing, isHTTPWhiteSpace)
616
+ }
617
+
618
+ /**
619
+ * @see https://infra.spec.whatwg.org/#ascii-whitespace
620
+ * @param {number} char
621
+ */
622
+ function isASCIIWhitespace (char) {
623
+ // "\r\n\t\f "
624
+ return char === 0x00d || char === 0x00a || char === 0x009 || char === 0x00c || char === 0x020
625
+ }
626
+
627
+ /**
628
+ * @see https://infra.spec.whatwg.org/#strip-leading-and-trailing-ascii-whitespace
629
+ * @param {string} str
630
+ * @param {boolean} [leading=true]
631
+ * @param {boolean} [trailing=true]
632
+ */
633
+ function removeASCIIWhitespace (str, leading = true, trailing = true) {
634
+ return removeChars(str, leading, trailing, isASCIIWhitespace)
635
+ }
636
+
637
+ /**
638
+ * @param {string} str
639
+ * @param {boolean} leading
640
+ * @param {boolean} trailing
641
+ * @param {(charCode: number) => boolean} predicate
642
+ * @returns
643
+ */
644
+ function removeChars (str, leading, trailing, predicate) {
645
+ let lead = 0;
646
+ let trail = str.length - 1;
647
+
648
+ if (leading) {
649
+ while (lead < str.length && predicate(str.charCodeAt(lead))) lead++;
650
+ }
651
+
652
+ if (trailing) {
653
+ while (trail > 0 && predicate(str.charCodeAt(trail))) trail--;
654
+ }
655
+
656
+ return lead === 0 && trail === str.length - 1 ? str : str.slice(lead, trail + 1)
657
+ }
658
+
659
+ /**
660
+ * @see https://infra.spec.whatwg.org/#isomorphic-decode
661
+ * @param {Uint8Array} input
662
+ * @returns {string}
663
+ */
664
+ function isomorphicDecode (input) {
665
+ // 1. To isomorphic decode a byte sequence input, return a string whose code point
666
+ // length is equal to input’s length and whose code points have the same values
667
+ // as the values of input’s bytes, in the same order.
668
+ const length = input.length;
669
+ if ((2 << 15) - 1 > length) {
670
+ return String.fromCharCode.apply(null, input)
671
+ }
672
+ let result = ''; let i = 0;
673
+ let addition = (2 << 15) - 1;
674
+ while (i < length) {
675
+ if (i + addition > length) {
676
+ addition = length - i;
677
+ }
678
+ result += String.fromCharCode.apply(null, input.subarray(i, i += addition));
679
+ }
680
+ return result
681
+ }
682
+
683
+ /**
684
+ * @see https://mimesniff.spec.whatwg.org/#minimize-a-supported-mime-type
685
+ * @param {Exclude<ReturnType<typeof parseMIMEType>, 'failure'>} mimeType
686
+ */
687
+ function minimizeSupportedMimeType (mimeType) {
688
+ switch (mimeType.essence) {
689
+ case 'application/ecmascript':
690
+ case 'application/javascript':
691
+ case 'application/x-ecmascript':
692
+ case 'application/x-javascript':
693
+ case 'text/ecmascript':
694
+ case 'text/javascript':
695
+ case 'text/javascript1.0':
696
+ case 'text/javascript1.1':
697
+ case 'text/javascript1.2':
698
+ case 'text/javascript1.3':
699
+ case 'text/javascript1.4':
700
+ case 'text/javascript1.5':
701
+ case 'text/jscript':
702
+ case 'text/livescript':
703
+ case 'text/x-ecmascript':
704
+ case 'text/x-javascript':
705
+ // 1. If mimeType is a JavaScript MIME type, then return "text/javascript".
706
+ return 'text/javascript'
707
+ case 'application/json':
708
+ case 'text/json':
709
+ // 2. If mimeType is a JSON MIME type, then return "application/json".
710
+ return 'application/json'
711
+ case 'image/svg+xml':
712
+ // 3. If mimeType’s essence is "image/svg+xml", then return "image/svg+xml".
713
+ return 'image/svg+xml'
714
+ case 'text/xml':
715
+ case 'application/xml':
716
+ // 4. If mimeType is an XML MIME type, then return "application/xml".
717
+ return 'application/xml'
718
+ }
719
+
720
+ // 2. If mimeType is a JSON MIME type, then return "application/json".
721
+ if (mimeType.subtype.endsWith('+json')) {
722
+ return 'application/json'
723
+ }
724
+
725
+ // 4. If mimeType is an XML MIME type, then return "application/xml".
726
+ if (mimeType.subtype.endsWith('+xml')) {
727
+ return 'application/xml'
728
+ }
729
+
730
+ // 5. If mimeType is supported by the user agent, then return mimeType’s essence.
731
+ // Technically, node doesn't support any mimetypes.
732
+
733
+ // 6. Return the empty string.
734
+ return ''
735
+ }
736
+
737
+ dataUrl = {
738
+ dataURLProcessor,
739
+ URLSerializer,
740
+ collectASequenceOfCodePoints,
741
+ collectASequenceOfCodePointsFast,
742
+ stringPercentDecode,
743
+ parseMIMEType,
744
+ collectAnHTTPQuotedString,
745
+ serializeAMimeType,
746
+ removeChars,
747
+ removeHTTPWhitespace,
748
+ minimizeSupportedMimeType,
749
+ HTTP_TOKEN_CODEPOINTS,
750
+ isomorphicDecode
751
+ };
752
+ return dataUrl;
753
+ }
754
+
755
+ export { requireDataUrl as __require };
756
+ //# sourceMappingURL=data-url.js.map