cdk-ecr-deployment 0.0.76 → 0.0.79

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 (356) hide show
  1. package/.jsii +28 -25
  2. package/lambda/Dockerfile +25 -0
  3. package/lambda/install.js +64 -0
  4. package/lib/index.js +40 -23
  5. package/node_modules/@sindresorhus/is/dist/index.d.ts +225 -0
  6. package/node_modules/@sindresorhus/is/dist/index.js +427 -0
  7. package/node_modules/@sindresorhus/is/dist/types.d.ts +24 -0
  8. package/node_modules/@sindresorhus/is/dist/types.js +3 -0
  9. package/node_modules/@sindresorhus/is/license +9 -0
  10. package/node_modules/@sindresorhus/is/package.json +96 -0
  11. package/node_modules/@sindresorhus/is/readme.md +628 -0
  12. package/node_modules/@szmarczak/http-timer/LICENSE +21 -0
  13. package/node_modules/@szmarczak/http-timer/README.md +93 -0
  14. package/node_modules/@szmarczak/http-timer/dist/source/index.d.ts +32 -0
  15. package/node_modules/@szmarczak/http-timer/dist/source/index.js +126 -0
  16. package/node_modules/@szmarczak/http-timer/package.json +72 -0
  17. package/node_modules/@types/cacheable-request/LICENSE +21 -0
  18. package/node_modules/@types/cacheable-request/README.md +16 -0
  19. package/node_modules/@types/cacheable-request/index.d.ts +137 -0
  20. package/node_modules/@types/cacheable-request/node_modules/@types/node/LICENSE +21 -0
  21. package/node_modules/@types/cacheable-request/node_modules/@types/node/README.md +16 -0
  22. package/node_modules/@types/cacheable-request/node_modules/@types/node/assert/strict.d.ts +8 -0
  23. package/node_modules/@types/cacheable-request/node_modules/@types/node/assert.d.ts +912 -0
  24. package/node_modules/@types/cacheable-request/node_modules/@types/node/async_hooks.d.ts +497 -0
  25. package/node_modules/@types/cacheable-request/node_modules/@types/node/buffer.d.ts +2142 -0
  26. package/node_modules/@types/cacheable-request/node_modules/@types/node/child_process.d.ts +1365 -0
  27. package/node_modules/@types/cacheable-request/node_modules/@types/node/cluster.d.ts +414 -0
  28. package/node_modules/@types/cacheable-request/node_modules/@types/node/console.d.ts +412 -0
  29. package/node_modules/@types/cacheable-request/node_modules/@types/node/constants.d.ts +18 -0
  30. package/node_modules/@types/cacheable-request/node_modules/@types/node/crypto.d.ts +3307 -0
  31. package/node_modules/@types/cacheable-request/node_modules/@types/node/dgram.d.ts +545 -0
  32. package/node_modules/@types/cacheable-request/node_modules/@types/node/diagnostics_channel.d.ts +128 -0
  33. package/node_modules/@types/cacheable-request/node_modules/@types/node/dns/promises.d.ts +357 -0
  34. package/node_modules/@types/cacheable-request/node_modules/@types/node/dns.d.ts +643 -0
  35. package/node_modules/@types/cacheable-request/node_modules/@types/node/domain.d.ts +169 -0
  36. package/node_modules/@types/cacheable-request/node_modules/@types/node/events.d.ts +623 -0
  37. package/node_modules/@types/cacheable-request/node_modules/@types/node/fs/promises.d.ts +1004 -0
  38. package/node_modules/@types/cacheable-request/node_modules/@types/node/fs.d.ts +3748 -0
  39. package/node_modules/@types/cacheable-request/node_modules/@types/node/globals.d.ts +284 -0
  40. package/node_modules/@types/cacheable-request/node_modules/@types/node/globals.global.d.ts +1 -0
  41. package/node_modules/@types/cacheable-request/node_modules/@types/node/http.d.ts +1368 -0
  42. package/node_modules/@types/cacheable-request/node_modules/@types/node/http2.d.ts +2100 -0
  43. package/node_modules/@types/cacheable-request/node_modules/@types/node/https.d.ts +391 -0
  44. package/node_modules/@types/cacheable-request/node_modules/@types/node/index.d.ts +131 -0
  45. package/node_modules/@types/cacheable-request/node_modules/@types/node/inspector.d.ts +2738 -0
  46. package/node_modules/@types/cacheable-request/node_modules/@types/node/module.d.ts +114 -0
  47. package/node_modules/@types/cacheable-request/node_modules/@types/node/net.d.ts +783 -0
  48. package/node_modules/@types/cacheable-request/node_modules/@types/node/os.d.ts +455 -0
  49. package/node_modules/@types/cacheable-request/node_modules/@types/node/package.json +230 -0
  50. package/node_modules/@types/cacheable-request/node_modules/@types/node/path.d.ts +172 -0
  51. package/node_modules/@types/cacheable-request/node_modules/@types/node/perf_hooks.d.ts +555 -0
  52. package/node_modules/@types/cacheable-request/node_modules/@types/node/process.d.ts +1477 -0
  53. package/node_modules/@types/cacheable-request/node_modules/@types/node/punycode.d.ts +117 -0
  54. package/node_modules/@types/cacheable-request/node_modules/@types/node/querystring.d.ts +131 -0
  55. package/node_modules/@types/cacheable-request/node_modules/@types/node/readline.d.ts +542 -0
  56. package/node_modules/@types/cacheable-request/node_modules/@types/node/repl.d.ts +424 -0
  57. package/node_modules/@types/cacheable-request/node_modules/@types/node/stream/consumers.d.ts +24 -0
  58. package/node_modules/@types/cacheable-request/node_modules/@types/node/stream/promises.d.ts +42 -0
  59. package/node_modules/@types/cacheable-request/node_modules/@types/node/stream/web.d.ts +6 -0
  60. package/node_modules/@types/cacheable-request/node_modules/@types/node/stream.d.ts +1249 -0
  61. package/node_modules/@types/cacheable-request/node_modules/@types/node/string_decoder.d.ts +67 -0
  62. package/node_modules/@types/cacheable-request/node_modules/@types/node/timers/promises.d.ts +68 -0
  63. package/node_modules/@types/cacheable-request/node_modules/@types/node/timers.d.ts +94 -0
  64. package/node_modules/@types/cacheable-request/node_modules/@types/node/tls.d.ts +1019 -0
  65. package/node_modules/@types/cacheable-request/node_modules/@types/node/trace_events.d.ts +161 -0
  66. package/node_modules/@types/cacheable-request/node_modules/@types/node/tty.d.ts +204 -0
  67. package/node_modules/@types/cacheable-request/node_modules/@types/node/url.d.ts +798 -0
  68. package/node_modules/@types/cacheable-request/node_modules/@types/node/util.d.ts +1563 -0
  69. package/node_modules/@types/cacheable-request/node_modules/@types/node/v8.d.ts +378 -0
  70. package/node_modules/@types/cacheable-request/node_modules/@types/node/vm.d.ts +507 -0
  71. package/node_modules/@types/cacheable-request/node_modules/@types/node/wasi.d.ts +158 -0
  72. package/node_modules/@types/cacheable-request/node_modules/@types/node/worker_threads.d.ts +649 -0
  73. package/node_modules/@types/cacheable-request/node_modules/@types/node/zlib.d.ts +517 -0
  74. package/node_modules/@types/cacheable-request/package.json +35 -0
  75. package/node_modules/@types/http-cache-semantics/LICENSE +21 -0
  76. package/node_modules/@types/http-cache-semantics/README.md +16 -0
  77. package/node_modules/@types/http-cache-semantics/index.d.ts +170 -0
  78. package/node_modules/@types/http-cache-semantics/package.json +25 -0
  79. package/node_modules/@types/keyv/LICENSE +21 -0
  80. package/node_modules/@types/keyv/README.md +16 -0
  81. package/node_modules/@types/keyv/index.d.ts +77 -0
  82. package/node_modules/@types/keyv/node_modules/@types/node/LICENSE +21 -0
  83. package/node_modules/@types/keyv/node_modules/@types/node/README.md +16 -0
  84. package/node_modules/@types/keyv/node_modules/@types/node/assert/strict.d.ts +8 -0
  85. package/node_modules/@types/keyv/node_modules/@types/node/assert.d.ts +912 -0
  86. package/node_modules/@types/keyv/node_modules/@types/node/async_hooks.d.ts +497 -0
  87. package/node_modules/@types/keyv/node_modules/@types/node/buffer.d.ts +2142 -0
  88. package/node_modules/@types/keyv/node_modules/@types/node/child_process.d.ts +1365 -0
  89. package/node_modules/@types/keyv/node_modules/@types/node/cluster.d.ts +414 -0
  90. package/node_modules/@types/keyv/node_modules/@types/node/console.d.ts +412 -0
  91. package/node_modules/@types/keyv/node_modules/@types/node/constants.d.ts +18 -0
  92. package/node_modules/@types/keyv/node_modules/@types/node/crypto.d.ts +3307 -0
  93. package/node_modules/@types/keyv/node_modules/@types/node/dgram.d.ts +545 -0
  94. package/node_modules/@types/keyv/node_modules/@types/node/diagnostics_channel.d.ts +128 -0
  95. package/node_modules/@types/keyv/node_modules/@types/node/dns/promises.d.ts +357 -0
  96. package/node_modules/@types/keyv/node_modules/@types/node/dns.d.ts +643 -0
  97. package/node_modules/@types/keyv/node_modules/@types/node/domain.d.ts +169 -0
  98. package/node_modules/@types/keyv/node_modules/@types/node/events.d.ts +623 -0
  99. package/node_modules/@types/keyv/node_modules/@types/node/fs/promises.d.ts +1004 -0
  100. package/node_modules/@types/keyv/node_modules/@types/node/fs.d.ts +3748 -0
  101. package/node_modules/@types/keyv/node_modules/@types/node/globals.d.ts +284 -0
  102. package/node_modules/@types/keyv/node_modules/@types/node/globals.global.d.ts +1 -0
  103. package/node_modules/@types/keyv/node_modules/@types/node/http.d.ts +1368 -0
  104. package/node_modules/@types/keyv/node_modules/@types/node/http2.d.ts +2100 -0
  105. package/node_modules/@types/keyv/node_modules/@types/node/https.d.ts +391 -0
  106. package/node_modules/@types/keyv/node_modules/@types/node/index.d.ts +131 -0
  107. package/node_modules/@types/keyv/node_modules/@types/node/inspector.d.ts +2738 -0
  108. package/node_modules/@types/keyv/node_modules/@types/node/module.d.ts +114 -0
  109. package/node_modules/@types/keyv/node_modules/@types/node/net.d.ts +783 -0
  110. package/node_modules/@types/keyv/node_modules/@types/node/os.d.ts +455 -0
  111. package/node_modules/@types/keyv/node_modules/@types/node/package.json +230 -0
  112. package/node_modules/@types/keyv/node_modules/@types/node/path.d.ts +172 -0
  113. package/node_modules/@types/keyv/node_modules/@types/node/perf_hooks.d.ts +555 -0
  114. package/node_modules/@types/keyv/node_modules/@types/node/process.d.ts +1477 -0
  115. package/node_modules/@types/keyv/node_modules/@types/node/punycode.d.ts +117 -0
  116. package/node_modules/@types/keyv/node_modules/@types/node/querystring.d.ts +131 -0
  117. package/node_modules/@types/keyv/node_modules/@types/node/readline.d.ts +542 -0
  118. package/node_modules/@types/keyv/node_modules/@types/node/repl.d.ts +424 -0
  119. package/node_modules/@types/keyv/node_modules/@types/node/stream/consumers.d.ts +24 -0
  120. package/node_modules/@types/keyv/node_modules/@types/node/stream/promises.d.ts +42 -0
  121. package/node_modules/@types/keyv/node_modules/@types/node/stream/web.d.ts +6 -0
  122. package/node_modules/@types/keyv/node_modules/@types/node/stream.d.ts +1249 -0
  123. package/node_modules/@types/keyv/node_modules/@types/node/string_decoder.d.ts +67 -0
  124. package/node_modules/@types/keyv/node_modules/@types/node/timers/promises.d.ts +68 -0
  125. package/node_modules/@types/keyv/node_modules/@types/node/timers.d.ts +94 -0
  126. package/node_modules/@types/keyv/node_modules/@types/node/tls.d.ts +1019 -0
  127. package/node_modules/@types/keyv/node_modules/@types/node/trace_events.d.ts +161 -0
  128. package/node_modules/@types/keyv/node_modules/@types/node/tty.d.ts +204 -0
  129. package/node_modules/@types/keyv/node_modules/@types/node/url.d.ts +798 -0
  130. package/node_modules/@types/keyv/node_modules/@types/node/util.d.ts +1563 -0
  131. package/node_modules/@types/keyv/node_modules/@types/node/v8.d.ts +378 -0
  132. package/node_modules/@types/keyv/node_modules/@types/node/vm.d.ts +507 -0
  133. package/node_modules/@types/keyv/node_modules/@types/node/wasi.d.ts +158 -0
  134. package/node_modules/@types/keyv/node_modules/@types/node/worker_threads.d.ts +649 -0
  135. package/node_modules/@types/keyv/node_modules/@types/node/zlib.d.ts +517 -0
  136. package/node_modules/@types/keyv/package.json +32 -0
  137. package/node_modules/@types/responselike/LICENSE +21 -0
  138. package/node_modules/@types/responselike/README.md +16 -0
  139. package/node_modules/@types/responselike/index.d.ts +34 -0
  140. package/node_modules/@types/responselike/node_modules/@types/node/LICENSE +21 -0
  141. package/node_modules/@types/responselike/node_modules/@types/node/README.md +16 -0
  142. package/node_modules/@types/responselike/node_modules/@types/node/assert/strict.d.ts +8 -0
  143. package/node_modules/@types/responselike/node_modules/@types/node/assert.d.ts +912 -0
  144. package/node_modules/@types/responselike/node_modules/@types/node/async_hooks.d.ts +497 -0
  145. package/node_modules/@types/responselike/node_modules/@types/node/buffer.d.ts +2142 -0
  146. package/node_modules/@types/responselike/node_modules/@types/node/child_process.d.ts +1365 -0
  147. package/node_modules/@types/responselike/node_modules/@types/node/cluster.d.ts +414 -0
  148. package/node_modules/@types/responselike/node_modules/@types/node/console.d.ts +412 -0
  149. package/node_modules/@types/responselike/node_modules/@types/node/constants.d.ts +18 -0
  150. package/node_modules/@types/responselike/node_modules/@types/node/crypto.d.ts +3307 -0
  151. package/node_modules/@types/responselike/node_modules/@types/node/dgram.d.ts +545 -0
  152. package/node_modules/@types/responselike/node_modules/@types/node/diagnostics_channel.d.ts +128 -0
  153. package/node_modules/@types/responselike/node_modules/@types/node/dns/promises.d.ts +357 -0
  154. package/node_modules/@types/responselike/node_modules/@types/node/dns.d.ts +643 -0
  155. package/node_modules/@types/responselike/node_modules/@types/node/domain.d.ts +169 -0
  156. package/node_modules/@types/responselike/node_modules/@types/node/events.d.ts +623 -0
  157. package/node_modules/@types/responselike/node_modules/@types/node/fs/promises.d.ts +1004 -0
  158. package/node_modules/@types/responselike/node_modules/@types/node/fs.d.ts +3748 -0
  159. package/node_modules/@types/responselike/node_modules/@types/node/globals.d.ts +284 -0
  160. package/node_modules/@types/responselike/node_modules/@types/node/globals.global.d.ts +1 -0
  161. package/node_modules/@types/responselike/node_modules/@types/node/http.d.ts +1368 -0
  162. package/node_modules/@types/responselike/node_modules/@types/node/http2.d.ts +2100 -0
  163. package/node_modules/@types/responselike/node_modules/@types/node/https.d.ts +391 -0
  164. package/node_modules/@types/responselike/node_modules/@types/node/index.d.ts +131 -0
  165. package/node_modules/@types/responselike/node_modules/@types/node/inspector.d.ts +2738 -0
  166. package/node_modules/@types/responselike/node_modules/@types/node/module.d.ts +114 -0
  167. package/node_modules/@types/responselike/node_modules/@types/node/net.d.ts +783 -0
  168. package/node_modules/@types/responselike/node_modules/@types/node/os.d.ts +455 -0
  169. package/node_modules/@types/responselike/node_modules/@types/node/package.json +230 -0
  170. package/node_modules/@types/responselike/node_modules/@types/node/path.d.ts +172 -0
  171. package/node_modules/@types/responselike/node_modules/@types/node/perf_hooks.d.ts +555 -0
  172. package/node_modules/@types/responselike/node_modules/@types/node/process.d.ts +1477 -0
  173. package/node_modules/@types/responselike/node_modules/@types/node/punycode.d.ts +117 -0
  174. package/node_modules/@types/responselike/node_modules/@types/node/querystring.d.ts +131 -0
  175. package/node_modules/@types/responselike/node_modules/@types/node/readline.d.ts +542 -0
  176. package/node_modules/@types/responselike/node_modules/@types/node/repl.d.ts +424 -0
  177. package/node_modules/@types/responselike/node_modules/@types/node/stream/consumers.d.ts +24 -0
  178. package/node_modules/@types/responselike/node_modules/@types/node/stream/promises.d.ts +42 -0
  179. package/node_modules/@types/responselike/node_modules/@types/node/stream/web.d.ts +6 -0
  180. package/node_modules/@types/responselike/node_modules/@types/node/stream.d.ts +1249 -0
  181. package/node_modules/@types/responselike/node_modules/@types/node/string_decoder.d.ts +67 -0
  182. package/node_modules/@types/responselike/node_modules/@types/node/timers/promises.d.ts +68 -0
  183. package/node_modules/@types/responselike/node_modules/@types/node/timers.d.ts +94 -0
  184. package/node_modules/@types/responselike/node_modules/@types/node/tls.d.ts +1019 -0
  185. package/node_modules/@types/responselike/node_modules/@types/node/trace_events.d.ts +161 -0
  186. package/node_modules/@types/responselike/node_modules/@types/node/tty.d.ts +204 -0
  187. package/node_modules/@types/responselike/node_modules/@types/node/url.d.ts +798 -0
  188. package/node_modules/@types/responselike/node_modules/@types/node/util.d.ts +1563 -0
  189. package/node_modules/@types/responselike/node_modules/@types/node/v8.d.ts +378 -0
  190. package/node_modules/@types/responselike/node_modules/@types/node/vm.d.ts +507 -0
  191. package/node_modules/@types/responselike/node_modules/@types/node/wasi.d.ts +158 -0
  192. package/node_modules/@types/responselike/node_modules/@types/node/worker_threads.d.ts +649 -0
  193. package/node_modules/@types/responselike/node_modules/@types/node/zlib.d.ts +517 -0
  194. package/node_modules/@types/responselike/package.json +25 -0
  195. package/node_modules/cacheable-lookup/LICENSE +21 -0
  196. package/node_modules/cacheable-lookup/README.md +240 -0
  197. package/node_modules/cacheable-lookup/index.d.ts +139 -0
  198. package/node_modules/cacheable-lookup/package.json +45 -0
  199. package/node_modules/cacheable-lookup/source/index.js +436 -0
  200. package/node_modules/cacheable-request/LICENSE +21 -0
  201. package/node_modules/cacheable-request/README.md +206 -0
  202. package/node_modules/cacheable-request/package.json +56 -0
  203. package/node_modules/cacheable-request/src/index.js +251 -0
  204. package/node_modules/clone-response/LICENSE +21 -0
  205. package/node_modules/clone-response/README.md +62 -0
  206. package/node_modules/clone-response/package.json +44 -0
  207. package/node_modules/clone-response/src/index.js +17 -0
  208. package/node_modules/decompress-response/index.d.ts +22 -0
  209. package/node_modules/decompress-response/index.js +58 -0
  210. package/node_modules/decompress-response/license +9 -0
  211. package/node_modules/decompress-response/node_modules/mimic-response/index.d.ts +17 -0
  212. package/node_modules/decompress-response/node_modules/mimic-response/index.js +77 -0
  213. package/node_modules/decompress-response/node_modules/mimic-response/license +9 -0
  214. package/node_modules/decompress-response/node_modules/mimic-response/package.json +42 -0
  215. package/node_modules/decompress-response/node_modules/mimic-response/readme.md +78 -0
  216. package/node_modules/decompress-response/package.json +56 -0
  217. package/node_modules/decompress-response/readme.md +48 -0
  218. package/node_modules/defer-to-connect/LICENSE +21 -0
  219. package/node_modules/defer-to-connect/README.md +38 -0
  220. package/node_modules/defer-to-connect/dist/source/index.d.ts +10 -0
  221. package/node_modules/defer-to-connect/dist/source/index.js +47 -0
  222. package/node_modules/defer-to-connect/package.json +71 -0
  223. package/node_modules/end-of-stream/LICENSE +21 -0
  224. package/node_modules/end-of-stream/README.md +54 -0
  225. package/node_modules/end-of-stream/index.js +94 -0
  226. package/node_modules/end-of-stream/package.json +37 -0
  227. package/node_modules/get-stream/buffer-stream.js +52 -0
  228. package/node_modules/get-stream/index.d.ts +108 -0
  229. package/node_modules/get-stream/index.js +60 -0
  230. package/node_modules/get-stream/license +9 -0
  231. package/node_modules/get-stream/package.json +50 -0
  232. package/node_modules/get-stream/readme.md +124 -0
  233. package/node_modules/got/dist/source/as-promise/create-rejection.d.ts +2 -0
  234. package/node_modules/got/dist/source/as-promise/create-rejection.js +30 -0
  235. package/node_modules/got/dist/source/as-promise/index.d.ts +3 -0
  236. package/node_modules/got/dist/source/as-promise/index.js +175 -0
  237. package/node_modules/got/dist/source/as-promise/normalize-arguments.d.ts +3 -0
  238. package/node_modules/got/dist/source/as-promise/normalize-arguments.js +78 -0
  239. package/node_modules/got/dist/source/as-promise/parse-body.d.ts +3 -0
  240. package/node_modules/got/dist/source/as-promise/parse-body.js +25 -0
  241. package/node_modules/got/dist/source/as-promise/types.d.ts +256 -0
  242. package/node_modules/got/dist/source/as-promise/types.js +40 -0
  243. package/node_modules/got/dist/source/core/calculate-retry-delay.d.ts +5 -0
  244. package/node_modules/got/dist/source/core/calculate-retry-delay.js +29 -0
  245. package/node_modules/got/dist/source/core/index.d.ts +1124 -0
  246. package/node_modules/got/dist/source/core/index.js +1491 -0
  247. package/node_modules/got/dist/source/core/utils/dns-ip-version.d.ts +5 -0
  248. package/node_modules/got/dist/source/core/utils/dns-ip-version.js +17 -0
  249. package/node_modules/got/dist/source/core/utils/get-body-size.d.ts +3 -0
  250. package/node_modules/got/dist/source/core/utils/get-body-size.js +32 -0
  251. package/node_modules/got/dist/source/core/utils/get-buffer.d.ts +4 -0
  252. package/node_modules/got/dist/source/core/utils/get-buffer.js +16 -0
  253. package/node_modules/got/dist/source/core/utils/is-form-data.d.ts +8 -0
  254. package/node_modules/got/dist/source/core/utils/is-form-data.js +4 -0
  255. package/node_modules/got/dist/source/core/utils/is-response-ok.d.ts +2 -0
  256. package/node_modules/got/dist/source/core/utils/is-response-ok.js +8 -0
  257. package/node_modules/got/dist/source/core/utils/options-to-url.d.ts +14 -0
  258. package/node_modules/got/dist/source/core/utils/options-to-url.js +53 -0
  259. package/node_modules/got/dist/source/core/utils/proxy-events.d.ts +3 -0
  260. package/node_modules/got/dist/source/core/utils/proxy-events.js +17 -0
  261. package/node_modules/got/dist/source/core/utils/timed-out.d.ts +29 -0
  262. package/node_modules/got/dist/source/core/utils/timed-out.js +121 -0
  263. package/node_modules/got/dist/source/core/utils/unhandle.d.ts +11 -0
  264. package/node_modules/got/dist/source/core/utils/unhandle.js +22 -0
  265. package/node_modules/got/dist/source/core/utils/url-to-options.d.ts +15 -0
  266. package/node_modules/got/dist/source/core/utils/url-to-options.js +24 -0
  267. package/node_modules/got/dist/source/core/utils/weakable-map.d.ts +8 -0
  268. package/node_modules/got/dist/source/core/utils/weakable-map.js +29 -0
  269. package/node_modules/got/dist/source/create.d.ts +5 -0
  270. package/node_modules/got/dist/source/create.js +240 -0
  271. package/node_modules/got/dist/source/index.d.ts +4 -0
  272. package/node_modules/got/dist/source/index.js +132 -0
  273. package/node_modules/got/dist/source/types.d.ts +342 -0
  274. package/node_modules/got/dist/source/types.js +2 -0
  275. package/node_modules/got/dist/source/utils/deep-freeze.d.ts +1 -0
  276. package/node_modules/got/dist/source/utils/deep-freeze.js +12 -0
  277. package/node_modules/got/dist/source/utils/deprecation-warning.d.ts +2 -0
  278. package/node_modules/got/dist/source/utils/deprecation-warning.js +13 -0
  279. package/node_modules/got/license +9 -0
  280. package/node_modules/got/package.json +130 -0
  281. package/node_modules/got/readme.md +2476 -0
  282. package/node_modules/http-cache-semantics/LICENSE +9 -0
  283. package/node_modules/http-cache-semantics/README.md +203 -0
  284. package/node_modules/http-cache-semantics/index.js +673 -0
  285. package/node_modules/http-cache-semantics/package.json +24 -0
  286. package/node_modules/http2-wrapper/LICENSE +21 -0
  287. package/node_modules/http2-wrapper/README.md +470 -0
  288. package/node_modules/http2-wrapper/package.json +54 -0
  289. package/node_modules/http2-wrapper/source/agent.js +670 -0
  290. package/node_modules/http2-wrapper/source/auto.js +149 -0
  291. package/node_modules/http2-wrapper/source/client-request.js +445 -0
  292. package/node_modules/http2-wrapper/source/incoming-message.js +58 -0
  293. package/node_modules/http2-wrapper/source/index.js +28 -0
  294. package/node_modules/http2-wrapper/source/utils/calculate-server-name.js +27 -0
  295. package/node_modules/http2-wrapper/source/utils/errors.js +45 -0
  296. package/node_modules/http2-wrapper/source/utils/is-request-pseudo-header.js +13 -0
  297. package/node_modules/http2-wrapper/source/utils/proxy-events.js +7 -0
  298. package/node_modules/http2-wrapper/source/utils/url-to-options.js +25 -0
  299. package/node_modules/json-buffer/.travis.yml +3 -0
  300. package/node_modules/json-buffer/LICENSE +22 -0
  301. package/node_modules/json-buffer/README.md +24 -0
  302. package/node_modules/json-buffer/index.js +58 -0
  303. package/node_modules/json-buffer/package.json +34 -0
  304. package/node_modules/json-buffer/test/index.js +63 -0
  305. package/node_modules/keyv/LICENSE +21 -0
  306. package/node_modules/keyv/README.md +288 -0
  307. package/node_modules/keyv/package.json +49 -0
  308. package/node_modules/keyv/src/index.js +111 -0
  309. package/node_modules/lowercase-keys/index.d.ts +16 -0
  310. package/node_modules/lowercase-keys/index.js +10 -0
  311. package/node_modules/lowercase-keys/license +9 -0
  312. package/node_modules/lowercase-keys/package.json +38 -0
  313. package/node_modules/lowercase-keys/readme.md +32 -0
  314. package/node_modules/mimic-response/index.js +32 -0
  315. package/node_modules/mimic-response/license +9 -0
  316. package/node_modules/mimic-response/package.json +37 -0
  317. package/node_modules/mimic-response/readme.md +54 -0
  318. package/node_modules/normalize-url/index.d.ts +267 -0
  319. package/node_modules/normalize-url/index.js +216 -0
  320. package/node_modules/normalize-url/license +9 -0
  321. package/node_modules/normalize-url/package.json +50 -0
  322. package/node_modules/normalize-url/readme.md +286 -0
  323. package/node_modules/once/LICENSE +15 -0
  324. package/node_modules/once/README.md +79 -0
  325. package/node_modules/once/once.js +42 -0
  326. package/node_modules/once/package.json +33 -0
  327. package/node_modules/p-cancelable/index.d.ts +176 -0
  328. package/node_modules/p-cancelable/index.js +111 -0
  329. package/node_modules/p-cancelable/license +9 -0
  330. package/node_modules/p-cancelable/package.json +49 -0
  331. package/node_modules/p-cancelable/readme.md +153 -0
  332. package/node_modules/pump/.travis.yml +5 -0
  333. package/node_modules/pump/LICENSE +21 -0
  334. package/node_modules/pump/README.md +65 -0
  335. package/node_modules/pump/index.js +82 -0
  336. package/node_modules/pump/package.json +24 -0
  337. package/node_modules/pump/test-browser.js +66 -0
  338. package/node_modules/pump/test-node.js +53 -0
  339. package/node_modules/quick-lru/index.d.ts +97 -0
  340. package/node_modules/quick-lru/index.js +123 -0
  341. package/node_modules/quick-lru/license +9 -0
  342. package/node_modules/quick-lru/package.json +43 -0
  343. package/node_modules/quick-lru/readme.md +111 -0
  344. package/node_modules/resolve-alpn/LICENSE +22 -0
  345. package/node_modules/resolve-alpn/README.md +60 -0
  346. package/node_modules/resolve-alpn/index.js +43 -0
  347. package/node_modules/resolve-alpn/package.json +34 -0
  348. package/node_modules/responselike/LICENSE +19 -0
  349. package/node_modules/responselike/README.md +77 -0
  350. package/node_modules/responselike/package.json +38 -0
  351. package/node_modules/responselike/src/index.js +34 -0
  352. package/node_modules/wrappy/LICENSE +15 -0
  353. package/node_modules/wrappy/README.md +36 -0
  354. package/node_modules/wrappy/package.json +29 -0
  355. package/node_modules/wrappy/wrappy.js +33 -0
  356. package/package.json +7 -4
@@ -0,0 +1,82 @@
1
+ var once = require('once')
2
+ var eos = require('end-of-stream')
3
+ var fs = require('fs') // we only need fs to get the ReadStream and WriteStream prototypes
4
+
5
+ var noop = function () {}
6
+ var ancient = /^v?\.0/.test(process.version)
7
+
8
+ var isFn = function (fn) {
9
+ return typeof fn === 'function'
10
+ }
11
+
12
+ var isFS = function (stream) {
13
+ if (!ancient) return false // newer node version do not need to care about fs is a special way
14
+ if (!fs) return false // browser
15
+ return (stream instanceof (fs.ReadStream || noop) || stream instanceof (fs.WriteStream || noop)) && isFn(stream.close)
16
+ }
17
+
18
+ var isRequest = function (stream) {
19
+ return stream.setHeader && isFn(stream.abort)
20
+ }
21
+
22
+ var destroyer = function (stream, reading, writing, callback) {
23
+ callback = once(callback)
24
+
25
+ var closed = false
26
+ stream.on('close', function () {
27
+ closed = true
28
+ })
29
+
30
+ eos(stream, {readable: reading, writable: writing}, function (err) {
31
+ if (err) return callback(err)
32
+ closed = true
33
+ callback()
34
+ })
35
+
36
+ var destroyed = false
37
+ return function (err) {
38
+ if (closed) return
39
+ if (destroyed) return
40
+ destroyed = true
41
+
42
+ if (isFS(stream)) return stream.close(noop) // use close for fs streams to avoid fd leaks
43
+ if (isRequest(stream)) return stream.abort() // request.destroy just do .end - .abort is what we want
44
+
45
+ if (isFn(stream.destroy)) return stream.destroy()
46
+
47
+ callback(err || new Error('stream was destroyed'))
48
+ }
49
+ }
50
+
51
+ var call = function (fn) {
52
+ fn()
53
+ }
54
+
55
+ var pipe = function (from, to) {
56
+ return from.pipe(to)
57
+ }
58
+
59
+ var pump = function () {
60
+ var streams = Array.prototype.slice.call(arguments)
61
+ var callback = isFn(streams[streams.length - 1] || noop) && streams.pop() || noop
62
+
63
+ if (Array.isArray(streams[0])) streams = streams[0]
64
+ if (streams.length < 2) throw new Error('pump requires two streams per minimum')
65
+
66
+ var error
67
+ var destroys = streams.map(function (stream, i) {
68
+ var reading = i < streams.length - 1
69
+ var writing = i > 0
70
+ return destroyer(stream, reading, writing, function (err) {
71
+ if (!error) error = err
72
+ if (err) destroys.forEach(call)
73
+ if (reading) return
74
+ destroys.forEach(call)
75
+ callback(error)
76
+ })
77
+ })
78
+
79
+ return streams.reduce(pipe)
80
+ }
81
+
82
+ module.exports = pump
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "pump",
3
+ "version": "3.0.0",
4
+ "repository": "git://github.com/mafintosh/pump.git",
5
+ "license": "MIT",
6
+ "description": "pipe streams together and close all of them if one of them closes",
7
+ "browser": {
8
+ "fs": false
9
+ },
10
+ "keywords": [
11
+ "streams",
12
+ "pipe",
13
+ "destroy",
14
+ "callback"
15
+ ],
16
+ "author": "Mathias Buus Madsen <mathiasbuus@gmail.com>",
17
+ "dependencies": {
18
+ "end-of-stream": "^1.1.0",
19
+ "once": "^1.3.1"
20
+ },
21
+ "scripts": {
22
+ "test": "node test-browser.js && node test-node.js"
23
+ }
24
+ }
@@ -0,0 +1,66 @@
1
+ var stream = require('stream')
2
+ var pump = require('./index')
3
+
4
+ var rs = new stream.Readable()
5
+ var ws = new stream.Writable()
6
+
7
+ rs._read = function (size) {
8
+ this.push(Buffer(size).fill('abc'))
9
+ }
10
+
11
+ ws._write = function (chunk, encoding, cb) {
12
+ setTimeout(function () {
13
+ cb()
14
+ }, 100)
15
+ }
16
+
17
+ var toHex = function () {
18
+ var reverse = new (require('stream').Transform)()
19
+
20
+ reverse._transform = function (chunk, enc, callback) {
21
+ reverse.push(chunk.toString('hex'))
22
+ callback()
23
+ }
24
+
25
+ return reverse
26
+ }
27
+
28
+ var wsClosed = false
29
+ var rsClosed = false
30
+ var callbackCalled = false
31
+
32
+ var check = function () {
33
+ if (wsClosed && rsClosed && callbackCalled) {
34
+ console.log('test-browser.js passes')
35
+ clearTimeout(timeout)
36
+ }
37
+ }
38
+
39
+ ws.on('finish', function () {
40
+ wsClosed = true
41
+ check()
42
+ })
43
+
44
+ rs.on('end', function () {
45
+ rsClosed = true
46
+ check()
47
+ })
48
+
49
+ var res = pump(rs, toHex(), toHex(), toHex(), ws, function () {
50
+ callbackCalled = true
51
+ check()
52
+ })
53
+
54
+ if (res !== ws) {
55
+ throw new Error('should return last stream')
56
+ }
57
+
58
+ setTimeout(function () {
59
+ rs.push(null)
60
+ rs.emit('close')
61
+ }, 1000)
62
+
63
+ var timeout = setTimeout(function () {
64
+ check()
65
+ throw new Error('timeout')
66
+ }, 5000)
@@ -0,0 +1,53 @@
1
+ var pump = require('./index')
2
+
3
+ var rs = require('fs').createReadStream('/dev/random')
4
+ var ws = require('fs').createWriteStream('/dev/null')
5
+
6
+ var toHex = function () {
7
+ var reverse = new (require('stream').Transform)()
8
+
9
+ reverse._transform = function (chunk, enc, callback) {
10
+ reverse.push(chunk.toString('hex'))
11
+ callback()
12
+ }
13
+
14
+ return reverse
15
+ }
16
+
17
+ var wsClosed = false
18
+ var rsClosed = false
19
+ var callbackCalled = false
20
+
21
+ var check = function () {
22
+ if (wsClosed && rsClosed && callbackCalled) {
23
+ console.log('test-node.js passes')
24
+ clearTimeout(timeout)
25
+ }
26
+ }
27
+
28
+ ws.on('close', function () {
29
+ wsClosed = true
30
+ check()
31
+ })
32
+
33
+ rs.on('close', function () {
34
+ rsClosed = true
35
+ check()
36
+ })
37
+
38
+ var res = pump(rs, toHex(), toHex(), toHex(), ws, function () {
39
+ callbackCalled = true
40
+ check()
41
+ })
42
+
43
+ if (res !== ws) {
44
+ throw new Error('should return last stream')
45
+ }
46
+
47
+ setTimeout(function () {
48
+ rs.destroy()
49
+ }, 1000)
50
+
51
+ var timeout = setTimeout(function () {
52
+ throw new Error('timeout')
53
+ }, 5000)
@@ -0,0 +1,97 @@
1
+ declare namespace QuickLRU {
2
+ interface Options<KeyType, ValueType> {
3
+ /**
4
+ The maximum number of items before evicting the least recently used items.
5
+ */
6
+ readonly maxSize: number;
7
+
8
+ /**
9
+ Called right before an item is evicted from the cache.
10
+
11
+ Useful for side effects or for items like object URLs that need explicit cleanup (`revokeObjectURL`).
12
+ */
13
+ onEviction?: (key: KeyType, value: ValueType) => void;
14
+ }
15
+ }
16
+
17
+ declare class QuickLRU<KeyType, ValueType>
18
+ implements Iterable<[KeyType, ValueType]> {
19
+ /**
20
+ The stored item count.
21
+ */
22
+ readonly size: number;
23
+
24
+ /**
25
+ Simple ["Least Recently Used" (LRU) cache](https://en.m.wikipedia.org/wiki/Cache_replacement_policies#Least_Recently_Used_.28LRU.29).
26
+
27
+ The instance is [`iterable`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Iteration_protocols) so you can use it directly in a [`for…of`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Statements/for...of) loop.
28
+
29
+ @example
30
+ ```
31
+ import QuickLRU = require('quick-lru');
32
+
33
+ const lru = new QuickLRU({maxSize: 1000});
34
+
35
+ lru.set('🦄', '🌈');
36
+
37
+ lru.has('🦄');
38
+ //=> true
39
+
40
+ lru.get('🦄');
41
+ //=> '🌈'
42
+ ```
43
+ */
44
+ constructor(options: QuickLRU.Options<KeyType, ValueType>);
45
+
46
+ [Symbol.iterator](): IterableIterator<[KeyType, ValueType]>;
47
+
48
+ /**
49
+ Set an item.
50
+
51
+ @returns The list instance.
52
+ */
53
+ set(key: KeyType, value: ValueType): this;
54
+
55
+ /**
56
+ Get an item.
57
+
58
+ @returns The stored item or `undefined`.
59
+ */
60
+ get(key: KeyType): ValueType | undefined;
61
+
62
+ /**
63
+ Check if an item exists.
64
+ */
65
+ has(key: KeyType): boolean;
66
+
67
+ /**
68
+ Get an item without marking it as recently used.
69
+
70
+ @returns The stored item or `undefined`.
71
+ */
72
+ peek(key: KeyType): ValueType | undefined;
73
+
74
+ /**
75
+ Delete an item.
76
+
77
+ @returns `true` if the item is removed or `false` if the item doesn't exist.
78
+ */
79
+ delete(key: KeyType): boolean;
80
+
81
+ /**
82
+ Delete all items.
83
+ */
84
+ clear(): void;
85
+
86
+ /**
87
+ Iterable for all the keys.
88
+ */
89
+ keys(): IterableIterator<KeyType>;
90
+
91
+ /**
92
+ Iterable for all the values.
93
+ */
94
+ values(): IterableIterator<ValueType>;
95
+ }
96
+
97
+ export = QuickLRU;
@@ -0,0 +1,123 @@
1
+ 'use strict';
2
+
3
+ class QuickLRU {
4
+ constructor(options = {}) {
5
+ if (!(options.maxSize && options.maxSize > 0)) {
6
+ throw new TypeError('`maxSize` must be a number greater than 0');
7
+ }
8
+
9
+ this.maxSize = options.maxSize;
10
+ this.onEviction = options.onEviction;
11
+ this.cache = new Map();
12
+ this.oldCache = new Map();
13
+ this._size = 0;
14
+ }
15
+
16
+ _set(key, value) {
17
+ this.cache.set(key, value);
18
+ this._size++;
19
+
20
+ if (this._size >= this.maxSize) {
21
+ this._size = 0;
22
+
23
+ if (typeof this.onEviction === 'function') {
24
+ for (const [key, value] of this.oldCache.entries()) {
25
+ this.onEviction(key, value);
26
+ }
27
+ }
28
+
29
+ this.oldCache = this.cache;
30
+ this.cache = new Map();
31
+ }
32
+ }
33
+
34
+ get(key) {
35
+ if (this.cache.has(key)) {
36
+ return this.cache.get(key);
37
+ }
38
+
39
+ if (this.oldCache.has(key)) {
40
+ const value = this.oldCache.get(key);
41
+ this.oldCache.delete(key);
42
+ this._set(key, value);
43
+ return value;
44
+ }
45
+ }
46
+
47
+ set(key, value) {
48
+ if (this.cache.has(key)) {
49
+ this.cache.set(key, value);
50
+ } else {
51
+ this._set(key, value);
52
+ }
53
+
54
+ return this;
55
+ }
56
+
57
+ has(key) {
58
+ return this.cache.has(key) || this.oldCache.has(key);
59
+ }
60
+
61
+ peek(key) {
62
+ if (this.cache.has(key)) {
63
+ return this.cache.get(key);
64
+ }
65
+
66
+ if (this.oldCache.has(key)) {
67
+ return this.oldCache.get(key);
68
+ }
69
+ }
70
+
71
+ delete(key) {
72
+ const deleted = this.cache.delete(key);
73
+ if (deleted) {
74
+ this._size--;
75
+ }
76
+
77
+ return this.oldCache.delete(key) || deleted;
78
+ }
79
+
80
+ clear() {
81
+ this.cache.clear();
82
+ this.oldCache.clear();
83
+ this._size = 0;
84
+ }
85
+
86
+ * keys() {
87
+ for (const [key] of this) {
88
+ yield key;
89
+ }
90
+ }
91
+
92
+ * values() {
93
+ for (const [, value] of this) {
94
+ yield value;
95
+ }
96
+ }
97
+
98
+ * [Symbol.iterator]() {
99
+ for (const item of this.cache) {
100
+ yield item;
101
+ }
102
+
103
+ for (const item of this.oldCache) {
104
+ const [key] = item;
105
+ if (!this.cache.has(key)) {
106
+ yield item;
107
+ }
108
+ }
109
+ }
110
+
111
+ get size() {
112
+ let oldCacheSize = 0;
113
+ for (const key of this.oldCache.keys()) {
114
+ if (!this.cache.has(key)) {
115
+ oldCacheSize++;
116
+ }
117
+ }
118
+
119
+ return Math.min(this._size + oldCacheSize, this.maxSize);
120
+ }
121
+ }
122
+
123
+ module.exports = QuickLRU;
@@ -0,0 +1,9 @@
1
+ MIT License
2
+
3
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "quick-lru",
3
+ "version": "5.1.1",
4
+ "description": "Simple “Least Recently Used” (LRU) cache",
5
+ "license": "MIT",
6
+ "repository": "sindresorhus/quick-lru",
7
+ "funding": "https://github.com/sponsors/sindresorhus",
8
+ "author": {
9
+ "name": "Sindre Sorhus",
10
+ "email": "sindresorhus@gmail.com",
11
+ "url": "https://sindresorhus.com"
12
+ },
13
+ "engines": {
14
+ "node": ">=10"
15
+ },
16
+ "scripts": {
17
+ "test": "xo && nyc ava && tsd"
18
+ },
19
+ "files": [
20
+ "index.js",
21
+ "index.d.ts"
22
+ ],
23
+ "keywords": [
24
+ "lru",
25
+ "quick",
26
+ "cache",
27
+ "caching",
28
+ "least",
29
+ "recently",
30
+ "used",
31
+ "fast",
32
+ "map",
33
+ "hash",
34
+ "buffer"
35
+ ],
36
+ "devDependencies": {
37
+ "ava": "^2.0.0",
38
+ "coveralls": "^3.0.3",
39
+ "nyc": "^15.0.0",
40
+ "tsd": "^0.11.0",
41
+ "xo": "^0.26.0"
42
+ }
43
+ }
@@ -0,0 +1,111 @@
1
+ # quick-lru [![Build Status](https://travis-ci.org/sindresorhus/quick-lru.svg?branch=master)](https://travis-ci.org/sindresorhus/quick-lru) [![Coverage Status](https://coveralls.io/repos/github/sindresorhus/quick-lru/badge.svg?branch=master)](https://coveralls.io/github/sindresorhus/quick-lru?branch=master)
2
+
3
+ > Simple [“Least Recently Used” (LRU) cache](https://en.m.wikipedia.org/wiki/Cache_replacement_policies#Least_Recently_Used_.28LRU.29)
4
+
5
+ Useful when you need to cache something and limit memory usage.
6
+
7
+ Inspired by the [`hashlru` algorithm](https://github.com/dominictarr/hashlru#algorithm), but instead uses [`Map`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Map) to support keys of any type, not just strings, and values can be `undefined`.
8
+
9
+ ## Install
10
+
11
+ ```
12
+ $ npm install quick-lru
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ ```js
18
+ const QuickLRU = require('quick-lru');
19
+
20
+ const lru = new QuickLRU({maxSize: 1000});
21
+
22
+ lru.set('🦄', '🌈');
23
+
24
+ lru.has('🦄');
25
+ //=> true
26
+
27
+ lru.get('🦄');
28
+ //=> '🌈'
29
+ ```
30
+
31
+ ## API
32
+
33
+ ### new QuickLRU(options?)
34
+
35
+ Returns a new instance.
36
+
37
+ ### options
38
+
39
+ Type: `object`
40
+
41
+ #### maxSize
42
+
43
+ *Required*\
44
+ Type: `number`
45
+
46
+ The maximum number of items before evicting the least recently used items.
47
+
48
+ #### onEviction
49
+
50
+ *Optional*\
51
+ Type: `(key, value) => void`
52
+
53
+ Called right before an item is evicted from the cache.
54
+
55
+ Useful for side effects or for items like object URLs that need explicit cleanup (`revokeObjectURL`).
56
+
57
+ ### Instance
58
+
59
+ The instance is [`iterable`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Iteration_protocols) so you can use it directly in a [`for…of`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Statements/for...of) loop.
60
+
61
+ Both `key` and `value` can be of any type.
62
+
63
+ #### .set(key, value)
64
+
65
+ Set an item. Returns the instance.
66
+
67
+ #### .get(key)
68
+
69
+ Get an item.
70
+
71
+ #### .has(key)
72
+
73
+ Check if an item exists.
74
+
75
+ #### .peek(key)
76
+
77
+ Get an item without marking it as recently used.
78
+
79
+ #### .delete(key)
80
+
81
+ Delete an item.
82
+
83
+ Returns `true` if the item is removed or `false` if the item doesn't exist.
84
+
85
+ #### .clear()
86
+
87
+ Delete all items.
88
+
89
+ #### .keys()
90
+
91
+ Iterable for all the keys.
92
+
93
+ #### .values()
94
+
95
+ Iterable for all the values.
96
+
97
+ #### .size
98
+
99
+ The stored item count.
100
+
101
+ ---
102
+
103
+ <div align="center">
104
+ <b>
105
+ <a href="https://tidelift.com/subscription/pkg/npm-quick-lru?utm_source=npm-quick-lru&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
106
+ </b>
107
+ <br>
108
+ <sub>
109
+ Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
110
+ </sub>
111
+ </div>
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2018 Szymon Marczak
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
@@ -0,0 +1,60 @@
1
+ # `resolve-alpn`
2
+
3
+ [![Node CI](https://github.com/szmarczak/resolve-alpn/workflows/Node%20CI/badge.svg)](https://github.com/szmarczak/resolve-alpn/actions)
4
+ [![codecov](https://codecov.io/gh/szmarczak/resolve-alpn/branch/master/graph/badge.svg)](https://codecov.io/gh/szmarczak/resolve-alpn)
5
+
6
+ ## API
7
+
8
+ ### resolveALPN(options, connect = tls.connect)
9
+
10
+ Returns an object with an `alpnProtocol` property. The `socket` property may be also present.
11
+
12
+ ```js
13
+ const result = await resolveALPN({
14
+ host: 'nghttp2.org',
15
+ port: 443,
16
+ ALPNProtocols: ['h2', 'http/1.1'],
17
+ servername: 'nghttp2.org'
18
+ });
19
+
20
+ console.log(result); // {alpnProtocol: 'h2'}
21
+ ```
22
+
23
+ **Note:** While the `servername` option is not required in this case, many other servers do. It's best practice to set it anyway.
24
+
25
+ **Note:** If the socket times out, the promise will resolve and `result.timeout` will be set to `true`.
26
+
27
+ #### options
28
+
29
+ Same as [TLS options](https://nodejs.org/api/tls.html#tls_tls_connect_options_callback).
30
+
31
+ ##### options.resolveSocket
32
+
33
+ By default, the socket gets destroyed and the promise resolves.<br>
34
+ If you set this to true, it will return the socket in a `socket` property.
35
+
36
+ ```js
37
+ const result = await resolveALPN({
38
+ host: 'nghttp2.org',
39
+ port: 443,
40
+ ALPNProtocols: ['h2', 'http/1.1'],
41
+ servername: 'nghttp2.org',
42
+ resolveSocket: true
43
+ });
44
+
45
+ console.log(result); // {alpnProtocol: 'h2', socket: tls.TLSSocket}
46
+
47
+ // Remember to destroy the socket if you don't use it!
48
+ result.socket.destroy();
49
+ ```
50
+
51
+ #### connect
52
+
53
+ Type: `Function<TLSSocket> | AsyncFunction<TLSSocket>`\
54
+ Default: [`tls.connect`](https://nodejs.org/dist/latest-v16.x/docs/api/tls.html#tls_tls_connect_options_callback)
55
+
56
+ **Note:** No matter which function is used (synchronous or asynchronous), it **must** accept a `callback` function as a second argument. The `callback` function gets executed when the socket has successfully connected.
57
+
58
+ ## License
59
+
60
+ MIT