dcs8 1.1.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 (597) hide show
  1. package/index.html +314 -0
  2. package/mod/douban-proxy.js +98 -0
  3. package/mod/node_modules/.package-lock.json +845 -0
  4. package/mod/node_modules/accepts/HISTORY.md +250 -0
  5. package/mod/node_modules/accepts/LICENSE +23 -0
  6. package/mod/node_modules/accepts/README.md +140 -0
  7. package/mod/node_modules/accepts/index.js +238 -0
  8. package/mod/node_modules/accepts/package.json +47 -0
  9. package/mod/node_modules/body-parser/LICENSE +23 -0
  10. package/mod/node_modules/body-parser/README.md +494 -0
  11. package/mod/node_modules/body-parser/index.js +71 -0
  12. package/mod/node_modules/body-parser/lib/read.js +247 -0
  13. package/mod/node_modules/body-parser/lib/types/json.js +158 -0
  14. package/mod/node_modules/body-parser/lib/types/raw.js +42 -0
  15. package/mod/node_modules/body-parser/lib/types/text.js +36 -0
  16. package/mod/node_modules/body-parser/lib/types/urlencoded.js +142 -0
  17. package/mod/node_modules/body-parser/lib/utils.js +98 -0
  18. package/mod/node_modules/body-parser/package.json +52 -0
  19. package/mod/node_modules/bytes/History.md +97 -0
  20. package/mod/node_modules/bytes/LICENSE +23 -0
  21. package/mod/node_modules/bytes/Readme.md +152 -0
  22. package/mod/node_modules/bytes/index.js +170 -0
  23. package/mod/node_modules/bytes/package.json +42 -0
  24. package/mod/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  25. package/mod/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  26. package/mod/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  27. package/mod/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  28. package/mod/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  29. package/mod/node_modules/call-bind-apply-helpers/README.md +62 -0
  30. package/mod/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  31. package/mod/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  32. package/mod/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  33. package/mod/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  34. package/mod/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  35. package/mod/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  36. package/mod/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  37. package/mod/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  38. package/mod/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  39. package/mod/node_modules/call-bind-apply-helpers/index.js +15 -0
  40. package/mod/node_modules/call-bind-apply-helpers/package.json +85 -0
  41. package/mod/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  42. package/mod/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  43. package/mod/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  44. package/mod/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  45. package/mod/node_modules/call-bound/.eslintrc +13 -0
  46. package/mod/node_modules/call-bound/.github/FUNDING.yml +12 -0
  47. package/mod/node_modules/call-bound/.nycrc +9 -0
  48. package/mod/node_modules/call-bound/CHANGELOG.md +42 -0
  49. package/mod/node_modules/call-bound/LICENSE +21 -0
  50. package/mod/node_modules/call-bound/README.md +53 -0
  51. package/mod/node_modules/call-bound/index.d.ts +94 -0
  52. package/mod/node_modules/call-bound/index.js +19 -0
  53. package/mod/node_modules/call-bound/package.json +99 -0
  54. package/mod/node_modules/call-bound/test/index.js +61 -0
  55. package/mod/node_modules/call-bound/tsconfig.json +10 -0
  56. package/mod/node_modules/content-disposition/HISTORY.md +72 -0
  57. package/mod/node_modules/content-disposition/LICENSE +22 -0
  58. package/mod/node_modules/content-disposition/README.md +142 -0
  59. package/mod/node_modules/content-disposition/index.js +458 -0
  60. package/mod/node_modules/content-disposition/package.json +43 -0
  61. package/mod/node_modules/content-type/HISTORY.md +29 -0
  62. package/mod/node_modules/content-type/LICENSE +22 -0
  63. package/mod/node_modules/content-type/README.md +94 -0
  64. package/mod/node_modules/content-type/index.js +225 -0
  65. package/mod/node_modules/content-type/package.json +42 -0
  66. package/mod/node_modules/cookie/LICENSE +24 -0
  67. package/mod/node_modules/cookie/README.md +317 -0
  68. package/mod/node_modules/cookie/SECURITY.md +25 -0
  69. package/mod/node_modules/cookie/index.js +335 -0
  70. package/mod/node_modules/cookie/package.json +44 -0
  71. package/mod/node_modules/cookie-signature/History.md +70 -0
  72. package/mod/node_modules/cookie-signature/LICENSE +22 -0
  73. package/mod/node_modules/cookie-signature/Readme.md +23 -0
  74. package/mod/node_modules/cookie-signature/index.js +47 -0
  75. package/mod/node_modules/cookie-signature/package.json +24 -0
  76. package/mod/node_modules/cors/LICENSE +22 -0
  77. package/mod/node_modules/cors/README.md +277 -0
  78. package/mod/node_modules/cors/lib/index.js +238 -0
  79. package/mod/node_modules/cors/package.json +42 -0
  80. package/mod/node_modules/debug/LICENSE +20 -0
  81. package/mod/node_modules/debug/README.md +481 -0
  82. package/mod/node_modules/debug/package.json +64 -0
  83. package/mod/node_modules/debug/src/browser.js +272 -0
  84. package/mod/node_modules/debug/src/common.js +292 -0
  85. package/mod/node_modules/debug/src/index.js +10 -0
  86. package/mod/node_modules/debug/src/node.js +263 -0
  87. package/mod/node_modules/depd/History.md +103 -0
  88. package/mod/node_modules/depd/LICENSE +22 -0
  89. package/mod/node_modules/depd/Readme.md +280 -0
  90. package/mod/node_modules/depd/index.js +538 -0
  91. package/mod/node_modules/depd/lib/browser/index.js +77 -0
  92. package/mod/node_modules/depd/package.json +45 -0
  93. package/mod/node_modules/dunder-proto/.eslintrc +5 -0
  94. package/mod/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  95. package/mod/node_modules/dunder-proto/.nycrc +13 -0
  96. package/mod/node_modules/dunder-proto/CHANGELOG.md +24 -0
  97. package/mod/node_modules/dunder-proto/LICENSE +21 -0
  98. package/mod/node_modules/dunder-proto/README.md +54 -0
  99. package/mod/node_modules/dunder-proto/get.d.ts +5 -0
  100. package/mod/node_modules/dunder-proto/get.js +30 -0
  101. package/mod/node_modules/dunder-proto/package.json +76 -0
  102. package/mod/node_modules/dunder-proto/set.d.ts +5 -0
  103. package/mod/node_modules/dunder-proto/set.js +35 -0
  104. package/mod/node_modules/dunder-proto/test/get.js +34 -0
  105. package/mod/node_modules/dunder-proto/test/index.js +4 -0
  106. package/mod/node_modules/dunder-proto/test/set.js +50 -0
  107. package/mod/node_modules/dunder-proto/tsconfig.json +9 -0
  108. package/mod/node_modules/ee-first/LICENSE +22 -0
  109. package/mod/node_modules/ee-first/README.md +80 -0
  110. package/mod/node_modules/ee-first/index.js +95 -0
  111. package/mod/node_modules/ee-first/package.json +29 -0
  112. package/mod/node_modules/encodeurl/LICENSE +22 -0
  113. package/mod/node_modules/encodeurl/README.md +109 -0
  114. package/mod/node_modules/encodeurl/index.js +60 -0
  115. package/mod/node_modules/encodeurl/package.json +40 -0
  116. package/mod/node_modules/es-define-property/.eslintrc +13 -0
  117. package/mod/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  118. package/mod/node_modules/es-define-property/.nycrc +9 -0
  119. package/mod/node_modules/es-define-property/CHANGELOG.md +29 -0
  120. package/mod/node_modules/es-define-property/LICENSE +21 -0
  121. package/mod/node_modules/es-define-property/README.md +49 -0
  122. package/mod/node_modules/es-define-property/index.d.ts +3 -0
  123. package/mod/node_modules/es-define-property/index.js +14 -0
  124. package/mod/node_modules/es-define-property/package.json +81 -0
  125. package/mod/node_modules/es-define-property/test/index.js +56 -0
  126. package/mod/node_modules/es-define-property/tsconfig.json +10 -0
  127. package/mod/node_modules/es-errors/.eslintrc +5 -0
  128. package/mod/node_modules/es-errors/.github/FUNDING.yml +12 -0
  129. package/mod/node_modules/es-errors/CHANGELOG.md +40 -0
  130. package/mod/node_modules/es-errors/LICENSE +21 -0
  131. package/mod/node_modules/es-errors/README.md +55 -0
  132. package/mod/node_modules/es-errors/eval.d.ts +3 -0
  133. package/mod/node_modules/es-errors/eval.js +4 -0
  134. package/mod/node_modules/es-errors/index.d.ts +3 -0
  135. package/mod/node_modules/es-errors/index.js +4 -0
  136. package/mod/node_modules/es-errors/package.json +80 -0
  137. package/mod/node_modules/es-errors/range.d.ts +3 -0
  138. package/mod/node_modules/es-errors/range.js +4 -0
  139. package/mod/node_modules/es-errors/ref.d.ts +3 -0
  140. package/mod/node_modules/es-errors/ref.js +4 -0
  141. package/mod/node_modules/es-errors/syntax.d.ts +3 -0
  142. package/mod/node_modules/es-errors/syntax.js +4 -0
  143. package/mod/node_modules/es-errors/test/index.js +19 -0
  144. package/mod/node_modules/es-errors/tsconfig.json +49 -0
  145. package/mod/node_modules/es-errors/type.d.ts +3 -0
  146. package/mod/node_modules/es-errors/type.js +4 -0
  147. package/mod/node_modules/es-errors/uri.d.ts +3 -0
  148. package/mod/node_modules/es-errors/uri.js +4 -0
  149. package/mod/node_modules/es-object-atoms/.eslintrc +16 -0
  150. package/mod/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  151. package/mod/node_modules/es-object-atoms/CHANGELOG.md +37 -0
  152. package/mod/node_modules/es-object-atoms/LICENSE +21 -0
  153. package/mod/node_modules/es-object-atoms/README.md +63 -0
  154. package/mod/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  155. package/mod/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  156. package/mod/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  157. package/mod/node_modules/es-object-atoms/ToObject.js +10 -0
  158. package/mod/node_modules/es-object-atoms/index.d.ts +3 -0
  159. package/mod/node_modules/es-object-atoms/index.js +4 -0
  160. package/mod/node_modules/es-object-atoms/isObject.d.ts +3 -0
  161. package/mod/node_modules/es-object-atoms/isObject.js +6 -0
  162. package/mod/node_modules/es-object-atoms/package.json +80 -0
  163. package/mod/node_modules/es-object-atoms/test/index.js +38 -0
  164. package/mod/node_modules/es-object-atoms/tsconfig.json +6 -0
  165. package/mod/node_modules/escape-html/LICENSE +24 -0
  166. package/mod/node_modules/escape-html/Readme.md +43 -0
  167. package/mod/node_modules/escape-html/index.js +78 -0
  168. package/mod/node_modules/escape-html/package.json +24 -0
  169. package/mod/node_modules/etag/HISTORY.md +83 -0
  170. package/mod/node_modules/etag/LICENSE +22 -0
  171. package/mod/node_modules/etag/README.md +159 -0
  172. package/mod/node_modules/etag/index.js +131 -0
  173. package/mod/node_modules/etag/package.json +47 -0
  174. package/mod/node_modules/express/LICENSE +24 -0
  175. package/mod/node_modules/express/Readme.md +276 -0
  176. package/mod/node_modules/express/index.js +11 -0
  177. package/mod/node_modules/express/lib/application.js +631 -0
  178. package/mod/node_modules/express/lib/express.js +81 -0
  179. package/mod/node_modules/express/lib/request.js +514 -0
  180. package/mod/node_modules/express/lib/response.js +1053 -0
  181. package/mod/node_modules/express/lib/utils.js +271 -0
  182. package/mod/node_modules/express/lib/view.js +205 -0
  183. package/mod/node_modules/express/package.json +99 -0
  184. package/mod/node_modules/finalhandler/HISTORY.md +239 -0
  185. package/mod/node_modules/finalhandler/LICENSE +22 -0
  186. package/mod/node_modules/finalhandler/README.md +150 -0
  187. package/mod/node_modules/finalhandler/index.js +293 -0
  188. package/mod/node_modules/finalhandler/package.json +47 -0
  189. package/mod/node_modules/forwarded/HISTORY.md +21 -0
  190. package/mod/node_modules/forwarded/LICENSE +22 -0
  191. package/mod/node_modules/forwarded/README.md +57 -0
  192. package/mod/node_modules/forwarded/index.js +90 -0
  193. package/mod/node_modules/forwarded/package.json +45 -0
  194. package/mod/node_modules/fresh/HISTORY.md +80 -0
  195. package/mod/node_modules/fresh/LICENSE +23 -0
  196. package/mod/node_modules/fresh/README.md +117 -0
  197. package/mod/node_modules/fresh/index.js +136 -0
  198. package/mod/node_modules/fresh/package.json +46 -0
  199. package/mod/node_modules/function-bind/.eslintrc +21 -0
  200. package/mod/node_modules/function-bind/.github/FUNDING.yml +12 -0
  201. package/mod/node_modules/function-bind/.github/SECURITY.md +3 -0
  202. package/mod/node_modules/function-bind/.nycrc +13 -0
  203. package/mod/node_modules/function-bind/CHANGELOG.md +136 -0
  204. package/mod/node_modules/function-bind/LICENSE +20 -0
  205. package/mod/node_modules/function-bind/README.md +46 -0
  206. package/mod/node_modules/function-bind/implementation.js +84 -0
  207. package/mod/node_modules/function-bind/index.js +5 -0
  208. package/mod/node_modules/function-bind/package.json +87 -0
  209. package/mod/node_modules/function-bind/test/.eslintrc +9 -0
  210. package/mod/node_modules/function-bind/test/index.js +252 -0
  211. package/mod/node_modules/get-intrinsic/.eslintrc +42 -0
  212. package/mod/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  213. package/mod/node_modules/get-intrinsic/.nycrc +9 -0
  214. package/mod/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  215. package/mod/node_modules/get-intrinsic/LICENSE +21 -0
  216. package/mod/node_modules/get-intrinsic/README.md +71 -0
  217. package/mod/node_modules/get-intrinsic/index.js +378 -0
  218. package/mod/node_modules/get-intrinsic/package.json +97 -0
  219. package/mod/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  220. package/mod/node_modules/get-proto/.eslintrc +10 -0
  221. package/mod/node_modules/get-proto/.github/FUNDING.yml +12 -0
  222. package/mod/node_modules/get-proto/.nycrc +9 -0
  223. package/mod/node_modules/get-proto/CHANGELOG.md +21 -0
  224. package/mod/node_modules/get-proto/LICENSE +21 -0
  225. package/mod/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  226. package/mod/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  227. package/mod/node_modules/get-proto/README.md +50 -0
  228. package/mod/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  229. package/mod/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  230. package/mod/node_modules/get-proto/index.d.ts +5 -0
  231. package/mod/node_modules/get-proto/index.js +27 -0
  232. package/mod/node_modules/get-proto/package.json +81 -0
  233. package/mod/node_modules/get-proto/test/index.js +68 -0
  234. package/mod/node_modules/get-proto/tsconfig.json +9 -0
  235. package/mod/node_modules/gopd/.eslintrc +16 -0
  236. package/mod/node_modules/gopd/.github/FUNDING.yml +12 -0
  237. package/mod/node_modules/gopd/CHANGELOG.md +45 -0
  238. package/mod/node_modules/gopd/LICENSE +21 -0
  239. package/mod/node_modules/gopd/README.md +40 -0
  240. package/mod/node_modules/gopd/gOPD.d.ts +1 -0
  241. package/mod/node_modules/gopd/gOPD.js +4 -0
  242. package/mod/node_modules/gopd/index.d.ts +5 -0
  243. package/mod/node_modules/gopd/index.js +15 -0
  244. package/mod/node_modules/gopd/package.json +77 -0
  245. package/mod/node_modules/gopd/test/index.js +36 -0
  246. package/mod/node_modules/gopd/tsconfig.json +9 -0
  247. package/mod/node_modules/has-symbols/.eslintrc +11 -0
  248. package/mod/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  249. package/mod/node_modules/has-symbols/.nycrc +9 -0
  250. package/mod/node_modules/has-symbols/CHANGELOG.md +91 -0
  251. package/mod/node_modules/has-symbols/LICENSE +21 -0
  252. package/mod/node_modules/has-symbols/README.md +46 -0
  253. package/mod/node_modules/has-symbols/index.d.ts +3 -0
  254. package/mod/node_modules/has-symbols/index.js +14 -0
  255. package/mod/node_modules/has-symbols/package.json +111 -0
  256. package/mod/node_modules/has-symbols/shams.d.ts +3 -0
  257. package/mod/node_modules/has-symbols/shams.js +45 -0
  258. package/mod/node_modules/has-symbols/test/index.js +22 -0
  259. package/mod/node_modules/has-symbols/test/shams/core-js.js +29 -0
  260. package/mod/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  261. package/mod/node_modules/has-symbols/test/tests.js +58 -0
  262. package/mod/node_modules/has-symbols/tsconfig.json +10 -0
  263. package/mod/node_modules/hasown/.eslintrc +5 -0
  264. package/mod/node_modules/hasown/.github/FUNDING.yml +12 -0
  265. package/mod/node_modules/hasown/.nycrc +13 -0
  266. package/mod/node_modules/hasown/CHANGELOG.md +40 -0
  267. package/mod/node_modules/hasown/LICENSE +21 -0
  268. package/mod/node_modules/hasown/README.md +40 -0
  269. package/mod/node_modules/hasown/index.d.ts +3 -0
  270. package/mod/node_modules/hasown/index.js +8 -0
  271. package/mod/node_modules/hasown/package.json +92 -0
  272. package/mod/node_modules/hasown/tsconfig.json +6 -0
  273. package/mod/node_modules/http-errors/HISTORY.md +186 -0
  274. package/mod/node_modules/http-errors/LICENSE +23 -0
  275. package/mod/node_modules/http-errors/README.md +169 -0
  276. package/mod/node_modules/http-errors/index.js +290 -0
  277. package/mod/node_modules/http-errors/package.json +54 -0
  278. package/mod/node_modules/iconv-lite/LICENSE +21 -0
  279. package/mod/node_modules/iconv-lite/README.md +138 -0
  280. package/mod/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  281. package/mod/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  282. package/mod/node_modules/iconv-lite/encodings/index.js +23 -0
  283. package/mod/node_modules/iconv-lite/encodings/internal.js +218 -0
  284. package/mod/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  285. package/mod/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  286. package/mod/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  287. package/mod/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  288. package/mod/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  289. package/mod/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  290. package/mod/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  291. package/mod/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  292. package/mod/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  293. package/mod/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  294. package/mod/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  295. package/mod/node_modules/iconv-lite/encodings/utf16.js +187 -0
  296. package/mod/node_modules/iconv-lite/encodings/utf32.js +307 -0
  297. package/mod/node_modules/iconv-lite/encodings/utf7.js +283 -0
  298. package/mod/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  299. package/mod/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  300. package/mod/node_modules/iconv-lite/lib/index.d.ts +129 -0
  301. package/mod/node_modules/iconv-lite/lib/index.js +182 -0
  302. package/mod/node_modules/iconv-lite/lib/streams.js +105 -0
  303. package/mod/node_modules/iconv-lite/package.json +70 -0
  304. package/mod/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  305. package/mod/node_modules/inherits/LICENSE +16 -0
  306. package/mod/node_modules/inherits/README.md +42 -0
  307. package/mod/node_modules/inherits/inherits.js +9 -0
  308. package/mod/node_modules/inherits/inherits_browser.js +27 -0
  309. package/mod/node_modules/inherits/package.json +29 -0
  310. package/mod/node_modules/ipaddr.js/LICENSE +19 -0
  311. package/mod/node_modules/ipaddr.js/README.md +233 -0
  312. package/mod/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  313. package/mod/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  314. package/mod/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  315. package/mod/node_modules/ipaddr.js/package.json +35 -0
  316. package/mod/node_modules/is-promise/LICENSE +19 -0
  317. package/mod/node_modules/is-promise/index.d.ts +2 -0
  318. package/mod/node_modules/is-promise/index.js +6 -0
  319. package/mod/node_modules/is-promise/index.mjs +3 -0
  320. package/mod/node_modules/is-promise/package.json +30 -0
  321. package/mod/node_modules/is-promise/readme.md +33 -0
  322. package/mod/node_modules/math-intrinsics/.eslintrc +16 -0
  323. package/mod/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  324. package/mod/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  325. package/mod/node_modules/math-intrinsics/LICENSE +21 -0
  326. package/mod/node_modules/math-intrinsics/README.md +50 -0
  327. package/mod/node_modules/math-intrinsics/abs.d.ts +1 -0
  328. package/mod/node_modules/math-intrinsics/abs.js +4 -0
  329. package/mod/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  330. package/mod/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  331. package/mod/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  332. package/mod/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  333. package/mod/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  334. package/mod/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  335. package/mod/node_modules/math-intrinsics/floor.d.ts +1 -0
  336. package/mod/node_modules/math-intrinsics/floor.js +4 -0
  337. package/mod/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  338. package/mod/node_modules/math-intrinsics/isFinite.js +12 -0
  339. package/mod/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  340. package/mod/node_modules/math-intrinsics/isInteger.js +16 -0
  341. package/mod/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  342. package/mod/node_modules/math-intrinsics/isNaN.js +6 -0
  343. package/mod/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  344. package/mod/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  345. package/mod/node_modules/math-intrinsics/max.d.ts +1 -0
  346. package/mod/node_modules/math-intrinsics/max.js +4 -0
  347. package/mod/node_modules/math-intrinsics/min.d.ts +1 -0
  348. package/mod/node_modules/math-intrinsics/min.js +4 -0
  349. package/mod/node_modules/math-intrinsics/mod.d.ts +3 -0
  350. package/mod/node_modules/math-intrinsics/mod.js +9 -0
  351. package/mod/node_modules/math-intrinsics/package.json +86 -0
  352. package/mod/node_modules/math-intrinsics/pow.d.ts +1 -0
  353. package/mod/node_modules/math-intrinsics/pow.js +4 -0
  354. package/mod/node_modules/math-intrinsics/round.d.ts +1 -0
  355. package/mod/node_modules/math-intrinsics/round.js +4 -0
  356. package/mod/node_modules/math-intrinsics/sign.d.ts +3 -0
  357. package/mod/node_modules/math-intrinsics/sign.js +11 -0
  358. package/mod/node_modules/math-intrinsics/test/index.js +192 -0
  359. package/mod/node_modules/math-intrinsics/tsconfig.json +3 -0
  360. package/mod/node_modules/media-typer/HISTORY.md +50 -0
  361. package/mod/node_modules/media-typer/LICENSE +22 -0
  362. package/mod/node_modules/media-typer/README.md +93 -0
  363. package/mod/node_modules/media-typer/index.js +143 -0
  364. package/mod/node_modules/media-typer/package.json +33 -0
  365. package/mod/node_modules/merge-descriptors/index.d.ts +11 -0
  366. package/mod/node_modules/merge-descriptors/index.js +26 -0
  367. package/mod/node_modules/merge-descriptors/license +11 -0
  368. package/mod/node_modules/merge-descriptors/package.json +50 -0
  369. package/mod/node_modules/merge-descriptors/readme.md +55 -0
  370. package/mod/node_modules/mime-db/HISTORY.md +541 -0
  371. package/mod/node_modules/mime-db/LICENSE +23 -0
  372. package/mod/node_modules/mime-db/README.md +109 -0
  373. package/mod/node_modules/mime-db/db.json +9342 -0
  374. package/mod/node_modules/mime-db/index.js +12 -0
  375. package/mod/node_modules/mime-db/package.json +56 -0
  376. package/mod/node_modules/mime-types/HISTORY.md +428 -0
  377. package/mod/node_modules/mime-types/LICENSE +23 -0
  378. package/mod/node_modules/mime-types/README.md +126 -0
  379. package/mod/node_modules/mime-types/index.js +211 -0
  380. package/mod/node_modules/mime-types/mimeScore.js +57 -0
  381. package/mod/node_modules/mime-types/package.json +49 -0
  382. package/mod/node_modules/ms/index.js +162 -0
  383. package/mod/node_modules/ms/license.md +21 -0
  384. package/mod/node_modules/ms/package.json +38 -0
  385. package/mod/node_modules/ms/readme.md +59 -0
  386. package/mod/node_modules/negotiator/HISTORY.md +114 -0
  387. package/mod/node_modules/negotiator/LICENSE +24 -0
  388. package/mod/node_modules/negotiator/README.md +212 -0
  389. package/mod/node_modules/negotiator/index.js +83 -0
  390. package/mod/node_modules/negotiator/lib/charset.js +169 -0
  391. package/mod/node_modules/negotiator/lib/encoding.js +205 -0
  392. package/mod/node_modules/negotiator/lib/language.js +179 -0
  393. package/mod/node_modules/negotiator/lib/mediaType.js +294 -0
  394. package/mod/node_modules/negotiator/package.json +43 -0
  395. package/mod/node_modules/object-assign/index.js +90 -0
  396. package/mod/node_modules/object-assign/license +21 -0
  397. package/mod/node_modules/object-assign/package.json +42 -0
  398. package/mod/node_modules/object-assign/readme.md +61 -0
  399. package/mod/node_modules/object-inspect/.eslintrc +53 -0
  400. package/mod/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  401. package/mod/node_modules/object-inspect/.nycrc +13 -0
  402. package/mod/node_modules/object-inspect/CHANGELOG.md +424 -0
  403. package/mod/node_modules/object-inspect/LICENSE +21 -0
  404. package/mod/node_modules/object-inspect/example/all.js +23 -0
  405. package/mod/node_modules/object-inspect/example/circular.js +6 -0
  406. package/mod/node_modules/object-inspect/example/fn.js +5 -0
  407. package/mod/node_modules/object-inspect/example/inspect.js +10 -0
  408. package/mod/node_modules/object-inspect/index.js +544 -0
  409. package/mod/node_modules/object-inspect/package-support.json +20 -0
  410. package/mod/node_modules/object-inspect/package.json +105 -0
  411. package/mod/node_modules/object-inspect/readme.markdown +84 -0
  412. package/mod/node_modules/object-inspect/test/bigint.js +58 -0
  413. package/mod/node_modules/object-inspect/test/browser/dom.js +15 -0
  414. package/mod/node_modules/object-inspect/test/circular.js +16 -0
  415. package/mod/node_modules/object-inspect/test/deep.js +12 -0
  416. package/mod/node_modules/object-inspect/test/element.js +53 -0
  417. package/mod/node_modules/object-inspect/test/err.js +48 -0
  418. package/mod/node_modules/object-inspect/test/fakes.js +29 -0
  419. package/mod/node_modules/object-inspect/test/fn.js +76 -0
  420. package/mod/node_modules/object-inspect/test/global.js +17 -0
  421. package/mod/node_modules/object-inspect/test/has.js +15 -0
  422. package/mod/node_modules/object-inspect/test/holes.js +15 -0
  423. package/mod/node_modules/object-inspect/test/indent-option.js +271 -0
  424. package/mod/node_modules/object-inspect/test/inspect.js +139 -0
  425. package/mod/node_modules/object-inspect/test/lowbyte.js +12 -0
  426. package/mod/node_modules/object-inspect/test/number.js +58 -0
  427. package/mod/node_modules/object-inspect/test/quoteStyle.js +26 -0
  428. package/mod/node_modules/object-inspect/test/toStringTag.js +40 -0
  429. package/mod/node_modules/object-inspect/test/undef.js +12 -0
  430. package/mod/node_modules/object-inspect/test/values.js +261 -0
  431. package/mod/node_modules/object-inspect/test-core-js.js +26 -0
  432. package/mod/node_modules/object-inspect/util.inspect.js +1 -0
  433. package/mod/node_modules/on-finished/HISTORY.md +98 -0
  434. package/mod/node_modules/on-finished/LICENSE +23 -0
  435. package/mod/node_modules/on-finished/README.md +162 -0
  436. package/mod/node_modules/on-finished/index.js +234 -0
  437. package/mod/node_modules/on-finished/package.json +39 -0
  438. package/mod/node_modules/once/LICENSE +15 -0
  439. package/mod/node_modules/once/README.md +79 -0
  440. package/mod/node_modules/once/once.js +42 -0
  441. package/mod/node_modules/once/package.json +33 -0
  442. package/mod/node_modules/parseurl/HISTORY.md +58 -0
  443. package/mod/node_modules/parseurl/LICENSE +24 -0
  444. package/mod/node_modules/parseurl/README.md +133 -0
  445. package/mod/node_modules/parseurl/index.js +158 -0
  446. package/mod/node_modules/parseurl/package.json +40 -0
  447. package/mod/node_modules/path-to-regexp/LICENSE +21 -0
  448. package/mod/node_modules/path-to-regexp/Readme.md +224 -0
  449. package/mod/node_modules/path-to-regexp/dist/index.d.ts +144 -0
  450. package/mod/node_modules/path-to-regexp/dist/index.js +409 -0
  451. package/mod/node_modules/path-to-regexp/dist/index.js.map +1 -0
  452. package/mod/node_modules/path-to-regexp/package.json +64 -0
  453. package/mod/node_modules/proxy-addr/HISTORY.md +161 -0
  454. package/mod/node_modules/proxy-addr/LICENSE +22 -0
  455. package/mod/node_modules/proxy-addr/README.md +139 -0
  456. package/mod/node_modules/proxy-addr/index.js +327 -0
  457. package/mod/node_modules/proxy-addr/package.json +47 -0
  458. package/mod/node_modules/qs/.editorconfig +46 -0
  459. package/mod/node_modules/qs/.github/FUNDING.yml +12 -0
  460. package/mod/node_modules/qs/.github/SECURITY.md +11 -0
  461. package/mod/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  462. package/mod/node_modules/qs/.nycrc +13 -0
  463. package/mod/node_modules/qs/CHANGELOG.md +631 -0
  464. package/mod/node_modules/qs/LICENSE.md +29 -0
  465. package/mod/node_modules/qs/README.md +733 -0
  466. package/mod/node_modules/qs/dist/qs.js +141 -0
  467. package/mod/node_modules/qs/eslint.config.mjs +56 -0
  468. package/mod/node_modules/qs/lib/formats.js +23 -0
  469. package/mod/node_modules/qs/lib/index.js +11 -0
  470. package/mod/node_modules/qs/lib/parse.js +360 -0
  471. package/mod/node_modules/qs/lib/stringify.js +356 -0
  472. package/mod/node_modules/qs/lib/utils.js +320 -0
  473. package/mod/node_modules/qs/package.json +94 -0
  474. package/mod/node_modules/qs/test/empty-keys-cases.js +267 -0
  475. package/mod/node_modules/qs/test/parse.js +1396 -0
  476. package/mod/node_modules/qs/test/stringify.js +1310 -0
  477. package/mod/node_modules/qs/test/utils.js +381 -0
  478. package/mod/node_modules/range-parser/HISTORY.md +56 -0
  479. package/mod/node_modules/range-parser/LICENSE +23 -0
  480. package/mod/node_modules/range-parser/README.md +84 -0
  481. package/mod/node_modules/range-parser/index.js +162 -0
  482. package/mod/node_modules/range-parser/package.json +44 -0
  483. package/mod/node_modules/raw-body/LICENSE +22 -0
  484. package/mod/node_modules/raw-body/README.md +223 -0
  485. package/mod/node_modules/raw-body/index.d.ts +85 -0
  486. package/mod/node_modules/raw-body/index.js +336 -0
  487. package/mod/node_modules/raw-body/package.json +46 -0
  488. package/mod/node_modules/router/HISTORY.md +228 -0
  489. package/mod/node_modules/router/LICENSE +23 -0
  490. package/mod/node_modules/router/README.md +416 -0
  491. package/mod/node_modules/router/index.js +748 -0
  492. package/mod/node_modules/router/lib/layer.js +247 -0
  493. package/mod/node_modules/router/lib/route.js +242 -0
  494. package/mod/node_modules/router/package.json +44 -0
  495. package/mod/node_modules/safer-buffer/LICENSE +21 -0
  496. package/mod/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  497. package/mod/node_modules/safer-buffer/Readme.md +156 -0
  498. package/mod/node_modules/safer-buffer/dangerous.js +58 -0
  499. package/mod/node_modules/safer-buffer/package.json +34 -0
  500. package/mod/node_modules/safer-buffer/safer.js +77 -0
  501. package/mod/node_modules/safer-buffer/tests.js +406 -0
  502. package/mod/node_modules/send/LICENSE +23 -0
  503. package/mod/node_modules/send/README.md +317 -0
  504. package/mod/node_modules/send/index.js +997 -0
  505. package/mod/node_modules/send/package.json +63 -0
  506. package/mod/node_modules/serve-static/LICENSE +25 -0
  507. package/mod/node_modules/serve-static/README.md +253 -0
  508. package/mod/node_modules/serve-static/index.js +208 -0
  509. package/mod/node_modules/serve-static/package.json +44 -0
  510. package/mod/node_modules/setprototypeof/LICENSE +13 -0
  511. package/mod/node_modules/setprototypeof/README.md +31 -0
  512. package/mod/node_modules/setprototypeof/index.d.ts +2 -0
  513. package/mod/node_modules/setprototypeof/index.js +17 -0
  514. package/mod/node_modules/setprototypeof/package.json +38 -0
  515. package/mod/node_modules/setprototypeof/test/index.js +24 -0
  516. package/mod/node_modules/side-channel/.editorconfig +9 -0
  517. package/mod/node_modules/side-channel/.eslintrc +12 -0
  518. package/mod/node_modules/side-channel/.github/FUNDING.yml +12 -0
  519. package/mod/node_modules/side-channel/.nycrc +13 -0
  520. package/mod/node_modules/side-channel/CHANGELOG.md +110 -0
  521. package/mod/node_modules/side-channel/LICENSE +21 -0
  522. package/mod/node_modules/side-channel/README.md +61 -0
  523. package/mod/node_modules/side-channel/index.d.ts +14 -0
  524. package/mod/node_modules/side-channel/index.js +43 -0
  525. package/mod/node_modules/side-channel/package.json +85 -0
  526. package/mod/node_modules/side-channel/test/index.js +104 -0
  527. package/mod/node_modules/side-channel/tsconfig.json +9 -0
  528. package/mod/node_modules/side-channel-list/.editorconfig +9 -0
  529. package/mod/node_modules/side-channel-list/.eslintrc +11 -0
  530. package/mod/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  531. package/mod/node_modules/side-channel-list/.nycrc +13 -0
  532. package/mod/node_modules/side-channel-list/CHANGELOG.md +15 -0
  533. package/mod/node_modules/side-channel-list/LICENSE +21 -0
  534. package/mod/node_modules/side-channel-list/README.md +62 -0
  535. package/mod/node_modules/side-channel-list/index.d.ts +13 -0
  536. package/mod/node_modules/side-channel-list/index.js +113 -0
  537. package/mod/node_modules/side-channel-list/list.d.ts +14 -0
  538. package/mod/node_modules/side-channel-list/package.json +77 -0
  539. package/mod/node_modules/side-channel-list/test/index.js +104 -0
  540. package/mod/node_modules/side-channel-list/tsconfig.json +9 -0
  541. package/mod/node_modules/side-channel-map/.editorconfig +9 -0
  542. package/mod/node_modules/side-channel-map/.eslintrc +11 -0
  543. package/mod/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  544. package/mod/node_modules/side-channel-map/.nycrc +13 -0
  545. package/mod/node_modules/side-channel-map/CHANGELOG.md +22 -0
  546. package/mod/node_modules/side-channel-map/LICENSE +21 -0
  547. package/mod/node_modules/side-channel-map/README.md +62 -0
  548. package/mod/node_modules/side-channel-map/index.d.ts +15 -0
  549. package/mod/node_modules/side-channel-map/index.js +68 -0
  550. package/mod/node_modules/side-channel-map/package.json +80 -0
  551. package/mod/node_modules/side-channel-map/test/index.js +114 -0
  552. package/mod/node_modules/side-channel-map/tsconfig.json +9 -0
  553. package/mod/node_modules/side-channel-weakmap/.editorconfig +9 -0
  554. package/mod/node_modules/side-channel-weakmap/.eslintrc +12 -0
  555. package/mod/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  556. package/mod/node_modules/side-channel-weakmap/.nycrc +13 -0
  557. package/mod/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  558. package/mod/node_modules/side-channel-weakmap/LICENSE +21 -0
  559. package/mod/node_modules/side-channel-weakmap/README.md +62 -0
  560. package/mod/node_modules/side-channel-weakmap/index.d.ts +15 -0
  561. package/mod/node_modules/side-channel-weakmap/index.js +84 -0
  562. package/mod/node_modules/side-channel-weakmap/package.json +87 -0
  563. package/mod/node_modules/side-channel-weakmap/test/index.js +114 -0
  564. package/mod/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  565. package/mod/node_modules/statuses/HISTORY.md +87 -0
  566. package/mod/node_modules/statuses/LICENSE +23 -0
  567. package/mod/node_modules/statuses/README.md +139 -0
  568. package/mod/node_modules/statuses/codes.json +65 -0
  569. package/mod/node_modules/statuses/index.js +146 -0
  570. package/mod/node_modules/statuses/package.json +49 -0
  571. package/mod/node_modules/toidentifier/HISTORY.md +9 -0
  572. package/mod/node_modules/toidentifier/LICENSE +21 -0
  573. package/mod/node_modules/toidentifier/README.md +61 -0
  574. package/mod/node_modules/toidentifier/index.js +32 -0
  575. package/mod/node_modules/toidentifier/package.json +38 -0
  576. package/mod/node_modules/type-is/HISTORY.md +292 -0
  577. package/mod/node_modules/type-is/LICENSE +23 -0
  578. package/mod/node_modules/type-is/README.md +198 -0
  579. package/mod/node_modules/type-is/index.js +250 -0
  580. package/mod/node_modules/type-is/package.json +47 -0
  581. package/mod/node_modules/unpipe/HISTORY.md +4 -0
  582. package/mod/node_modules/unpipe/LICENSE +22 -0
  583. package/mod/node_modules/unpipe/README.md +43 -0
  584. package/mod/node_modules/unpipe/index.js +69 -0
  585. package/mod/node_modules/unpipe/package.json +27 -0
  586. package/mod/node_modules/vary/HISTORY.md +39 -0
  587. package/mod/node_modules/vary/LICENSE +22 -0
  588. package/mod/node_modules/vary/README.md +101 -0
  589. package/mod/node_modules/vary/index.js +149 -0
  590. package/mod/node_modules/vary/package.json +43 -0
  591. package/mod/node_modules/wrappy/LICENSE +15 -0
  592. package/mod/node_modules/wrappy/README.md +36 -0
  593. package/mod/node_modules/wrappy/package.json +29 -0
  594. package/mod/node_modules/wrappy/wrappy.js +33 -0
  595. package/mod/package-lock.json +854 -0
  596. package/mod/package.json +16 -0
  597. package/package.json +19 -0
@@ -0,0 +1,211 @@
1
+ /*!
2
+ * mime-types
3
+ * Copyright(c) 2014 Jonathan Ong
4
+ * Copyright(c) 2015 Douglas Christopher Wilson
5
+ * MIT Licensed
6
+ */
7
+
8
+ 'use strict'
9
+
10
+ /**
11
+ * Module dependencies.
12
+ * @private
13
+ */
14
+
15
+ var db = require('mime-db')
16
+ var extname = require('path').extname
17
+ var mimeScore = require('./mimeScore')
18
+
19
+ /**
20
+ * Module variables.
21
+ * @private
22
+ */
23
+
24
+ var EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/
25
+ var TEXT_TYPE_REGEXP = /^text\//i
26
+
27
+ /**
28
+ * Module exports.
29
+ * @public
30
+ */
31
+
32
+ exports.charset = charset
33
+ exports.charsets = { lookup: charset }
34
+ exports.contentType = contentType
35
+ exports.extension = extension
36
+ exports.extensions = Object.create(null)
37
+ exports.lookup = lookup
38
+ exports.types = Object.create(null)
39
+ exports._extensionConflicts = []
40
+
41
+ // Populate the extensions/types maps
42
+ populateMaps(exports.extensions, exports.types)
43
+
44
+ /**
45
+ * Get the default charset for a MIME type.
46
+ *
47
+ * @param {string} type
48
+ * @return {false|string}
49
+ */
50
+
51
+ function charset (type) {
52
+ if (!type || typeof type !== 'string') {
53
+ return false
54
+ }
55
+
56
+ // TODO: use media-typer
57
+ var match = EXTRACT_TYPE_REGEXP.exec(type)
58
+ var mime = match && db[match[1].toLowerCase()]
59
+
60
+ if (mime && mime.charset) {
61
+ return mime.charset
62
+ }
63
+
64
+ // default text/* to utf-8
65
+ if (match && TEXT_TYPE_REGEXP.test(match[1])) {
66
+ return 'UTF-8'
67
+ }
68
+
69
+ return false
70
+ }
71
+
72
+ /**
73
+ * Create a full Content-Type header given a MIME type or extension.
74
+ *
75
+ * @param {string} str
76
+ * @return {false|string}
77
+ */
78
+
79
+ function contentType (str) {
80
+ // TODO: should this even be in this module?
81
+ if (!str || typeof str !== 'string') {
82
+ return false
83
+ }
84
+
85
+ var mime = str.indexOf('/') === -1 ? exports.lookup(str) : str
86
+
87
+ if (!mime) {
88
+ return false
89
+ }
90
+
91
+ // TODO: use content-type or other module
92
+ if (mime.indexOf('charset') === -1) {
93
+ var charset = exports.charset(mime)
94
+ if (charset) mime += '; charset=' + charset.toLowerCase()
95
+ }
96
+
97
+ return mime
98
+ }
99
+
100
+ /**
101
+ * Get the default extension for a MIME type.
102
+ *
103
+ * @param {string} type
104
+ * @return {false|string}
105
+ */
106
+
107
+ function extension (type) {
108
+ if (!type || typeof type !== 'string') {
109
+ return false
110
+ }
111
+
112
+ // TODO: use media-typer
113
+ var match = EXTRACT_TYPE_REGEXP.exec(type)
114
+
115
+ // get extensions
116
+ var exts = match && exports.extensions[match[1].toLowerCase()]
117
+
118
+ if (!exts || !exts.length) {
119
+ return false
120
+ }
121
+
122
+ return exts[0]
123
+ }
124
+
125
+ /**
126
+ * Lookup the MIME type for a file path/extension.
127
+ *
128
+ * @param {string} path
129
+ * @return {false|string}
130
+ */
131
+
132
+ function lookup (path) {
133
+ if (!path || typeof path !== 'string') {
134
+ return false
135
+ }
136
+
137
+ // get the extension ("ext" or ".ext" or full path)
138
+ var extension = extname('x.' + path)
139
+ .toLowerCase()
140
+ .slice(1)
141
+
142
+ if (!extension) {
143
+ return false
144
+ }
145
+
146
+ return exports.types[extension] || false
147
+ }
148
+
149
+ /**
150
+ * Populate the extensions and types maps.
151
+ * @private
152
+ */
153
+
154
+ function populateMaps (extensions, types) {
155
+ Object.keys(db).forEach(function forEachMimeType (type) {
156
+ var mime = db[type]
157
+ var exts = mime.extensions
158
+
159
+ if (!exts || !exts.length) {
160
+ return
161
+ }
162
+
163
+ // mime -> extensions
164
+ extensions[type] = exts
165
+
166
+ // extension -> mime
167
+ for (var i = 0; i < exts.length; i++) {
168
+ var extension = exts[i]
169
+ types[extension] = _preferredType(extension, types[extension], type)
170
+
171
+ // DELETE (eventually): Capture extension->type maps that change as a
172
+ // result of switching to mime-score. This is just to help make reviewing
173
+ // PR #119 easier, and can be removed once that PR is approved.
174
+ const legacyType = _preferredTypeLegacy(
175
+ extension,
176
+ types[extension],
177
+ type
178
+ )
179
+ if (legacyType !== types[extension]) {
180
+ exports._extensionConflicts.push([extension, legacyType, types[extension]])
181
+ }
182
+ }
183
+ })
184
+ }
185
+
186
+ // Resolve type conflict using mime-score
187
+ function _preferredType (ext, type0, type1) {
188
+ var score0 = type0 ? mimeScore(type0, db[type0].source) : 0
189
+ var score1 = type1 ? mimeScore(type1, db[type1].source) : 0
190
+
191
+ return score0 > score1 ? type0 : type1
192
+ }
193
+
194
+ // Resolve type conflict using pre-mime-score logic
195
+ function _preferredTypeLegacy (ext, type0, type1) {
196
+ var SOURCE_RANK = ['nginx', 'apache', undefined, 'iana']
197
+
198
+ var score0 = type0 ? SOURCE_RANK.indexOf(db[type0].source) : 0
199
+ var score1 = type1 ? SOURCE_RANK.indexOf(db[type1].source) : 0
200
+
201
+ if (
202
+ exports.types[extension] !== 'application/octet-stream' &&
203
+ (score0 > score1 ||
204
+ (score0 === score1 &&
205
+ exports.types[extension]?.slice(0, 12) === 'application/'))
206
+ ) {
207
+ return type0
208
+ }
209
+
210
+ return score0 > score1 ? type0 : type1
211
+ }
@@ -0,0 +1,57 @@
1
+ // 'mime-score' back-ported to CommonJS
2
+
3
+ // Score RFC facets (see https://tools.ietf.org/html/rfc6838#section-3)
4
+ var FACET_SCORES = {
5
+ 'prs.': 100,
6
+ 'x-': 200,
7
+ 'x.': 300,
8
+ 'vnd.': 400,
9
+ default: 900
10
+ }
11
+
12
+ // Score mime source (Logic originally from `jshttp/mime-types` module)
13
+ var SOURCE_SCORES = {
14
+ nginx: 10,
15
+ apache: 20,
16
+ iana: 40,
17
+ default: 30 // definitions added by `jshttp/mime-db` project?
18
+ }
19
+
20
+ var TYPE_SCORES = {
21
+ // prefer application/xml over text/xml
22
+ // prefer application/rtf over text/rtf
23
+ application: 1,
24
+
25
+ // prefer font/woff over application/font-woff
26
+ font: 2,
27
+
28
+ // prefer video/mp4 over audio/mp4 over application/mp4
29
+ // See https://www.rfc-editor.org/rfc/rfc4337.html#section-2
30
+ audio: 2,
31
+ video: 3,
32
+
33
+ default: 0
34
+ }
35
+
36
+ /**
37
+ * Get each component of the score for a mime type. The sum of these is the
38
+ * total score. The higher the score, the more "official" the type.
39
+ */
40
+ module.exports = function mimeScore (mimeType, source = 'default') {
41
+ if (mimeType === 'application/octet-stream') {
42
+ return 0
43
+ }
44
+
45
+ const [type, subtype] = mimeType.split('/')
46
+
47
+ const facet = subtype.replace(/(\.|x-).*/, '$1')
48
+
49
+ const facetScore = FACET_SCORES[facet] || FACET_SCORES.default
50
+ const sourceScore = SOURCE_SCORES[source] || SOURCE_SCORES.default
51
+ const typeScore = TYPE_SCORES[type] || TYPE_SCORES.default
52
+
53
+ // All else being equal prefer shorter types
54
+ const lengthScore = 1 - mimeType.length / 100
55
+
56
+ return facetScore + sourceScore + typeScore + lengthScore
57
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "mime-types",
3
+ "description": "The ultimate javascript content-type utility.",
4
+ "version": "3.0.2",
5
+ "contributors": [
6
+ "Douglas Christopher Wilson <doug@somethingdoug.com>",
7
+ "Jeremiah Senkpiel <fishrock123@rocketmail.com> (https://searchbeam.jit.su)",
8
+ "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
9
+ ],
10
+ "license": "MIT",
11
+ "keywords": [
12
+ "mime",
13
+ "types"
14
+ ],
15
+ "repository": "jshttp/mime-types",
16
+ "funding": {
17
+ "type": "opencollective",
18
+ "url": "https://opencollective.com/express"
19
+ },
20
+ "dependencies": {
21
+ "mime-db": "^1.54.0"
22
+ },
23
+ "devDependencies": {
24
+ "eslint": "8.33.0",
25
+ "eslint-config-standard": "14.1.1",
26
+ "eslint-plugin-import": "2.32.0",
27
+ "eslint-plugin-markdown": "3.0.1",
28
+ "eslint-plugin-node": "11.1.0",
29
+ "eslint-plugin-promise": "6.6.0",
30
+ "eslint-plugin-standard": "4.1.0",
31
+ "mocha": "10.8.2",
32
+ "nyc": "15.1.0"
33
+ },
34
+ "files": [
35
+ "HISTORY.md",
36
+ "LICENSE",
37
+ "index.js",
38
+ "mimeScore.js"
39
+ ],
40
+ "engines": {
41
+ "node": ">=18"
42
+ },
43
+ "scripts": {
44
+ "lint": "eslint .",
45
+ "test": "mocha --reporter spec test/test.js",
46
+ "test-ci": "nyc --reporter=lcov --reporter=text npm test",
47
+ "test-cov": "nyc --reporter=html --reporter=text npm test"
48
+ }
49
+ }
@@ -0,0 +1,162 @@
1
+ /**
2
+ * Helpers.
3
+ */
4
+
5
+ var s = 1000;
6
+ var m = s * 60;
7
+ var h = m * 60;
8
+ var d = h * 24;
9
+ var w = d * 7;
10
+ var y = d * 365.25;
11
+
12
+ /**
13
+ * Parse or format the given `val`.
14
+ *
15
+ * Options:
16
+ *
17
+ * - `long` verbose formatting [false]
18
+ *
19
+ * @param {String|Number} val
20
+ * @param {Object} [options]
21
+ * @throws {Error} throw an error if val is not a non-empty string or a number
22
+ * @return {String|Number}
23
+ * @api public
24
+ */
25
+
26
+ module.exports = function (val, options) {
27
+ options = options || {};
28
+ var type = typeof val;
29
+ if (type === 'string' && val.length > 0) {
30
+ return parse(val);
31
+ } else if (type === 'number' && isFinite(val)) {
32
+ return options.long ? fmtLong(val) : fmtShort(val);
33
+ }
34
+ throw new Error(
35
+ 'val is not a non-empty string or a valid number. val=' +
36
+ JSON.stringify(val)
37
+ );
38
+ };
39
+
40
+ /**
41
+ * Parse the given `str` and return milliseconds.
42
+ *
43
+ * @param {String} str
44
+ * @return {Number}
45
+ * @api private
46
+ */
47
+
48
+ function parse(str) {
49
+ str = String(str);
50
+ if (str.length > 100) {
51
+ return;
52
+ }
53
+ var match = /^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(
54
+ str
55
+ );
56
+ if (!match) {
57
+ return;
58
+ }
59
+ var n = parseFloat(match[1]);
60
+ var type = (match[2] || 'ms').toLowerCase();
61
+ switch (type) {
62
+ case 'years':
63
+ case 'year':
64
+ case 'yrs':
65
+ case 'yr':
66
+ case 'y':
67
+ return n * y;
68
+ case 'weeks':
69
+ case 'week':
70
+ case 'w':
71
+ return n * w;
72
+ case 'days':
73
+ case 'day':
74
+ case 'd':
75
+ return n * d;
76
+ case 'hours':
77
+ case 'hour':
78
+ case 'hrs':
79
+ case 'hr':
80
+ case 'h':
81
+ return n * h;
82
+ case 'minutes':
83
+ case 'minute':
84
+ case 'mins':
85
+ case 'min':
86
+ case 'm':
87
+ return n * m;
88
+ case 'seconds':
89
+ case 'second':
90
+ case 'secs':
91
+ case 'sec':
92
+ case 's':
93
+ return n * s;
94
+ case 'milliseconds':
95
+ case 'millisecond':
96
+ case 'msecs':
97
+ case 'msec':
98
+ case 'ms':
99
+ return n;
100
+ default:
101
+ return undefined;
102
+ }
103
+ }
104
+
105
+ /**
106
+ * Short format for `ms`.
107
+ *
108
+ * @param {Number} ms
109
+ * @return {String}
110
+ * @api private
111
+ */
112
+
113
+ function fmtShort(ms) {
114
+ var msAbs = Math.abs(ms);
115
+ if (msAbs >= d) {
116
+ return Math.round(ms / d) + 'd';
117
+ }
118
+ if (msAbs >= h) {
119
+ return Math.round(ms / h) + 'h';
120
+ }
121
+ if (msAbs >= m) {
122
+ return Math.round(ms / m) + 'm';
123
+ }
124
+ if (msAbs >= s) {
125
+ return Math.round(ms / s) + 's';
126
+ }
127
+ return ms + 'ms';
128
+ }
129
+
130
+ /**
131
+ * Long format for `ms`.
132
+ *
133
+ * @param {Number} ms
134
+ * @return {String}
135
+ * @api private
136
+ */
137
+
138
+ function fmtLong(ms) {
139
+ var msAbs = Math.abs(ms);
140
+ if (msAbs >= d) {
141
+ return plural(ms, msAbs, d, 'day');
142
+ }
143
+ if (msAbs >= h) {
144
+ return plural(ms, msAbs, h, 'hour');
145
+ }
146
+ if (msAbs >= m) {
147
+ return plural(ms, msAbs, m, 'minute');
148
+ }
149
+ if (msAbs >= s) {
150
+ return plural(ms, msAbs, s, 'second');
151
+ }
152
+ return ms + ' ms';
153
+ }
154
+
155
+ /**
156
+ * Pluralization helper.
157
+ */
158
+
159
+ function plural(ms, msAbs, n, name) {
160
+ var isPlural = msAbs >= n * 1.5;
161
+ return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');
162
+ }
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Vercel, Inc.
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.
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "ms",
3
+ "version": "2.1.3",
4
+ "description": "Tiny millisecond conversion utility",
5
+ "repository": "vercel/ms",
6
+ "main": "./index",
7
+ "files": [
8
+ "index.js"
9
+ ],
10
+ "scripts": {
11
+ "precommit": "lint-staged",
12
+ "lint": "eslint lib/* bin/*",
13
+ "test": "mocha tests.js"
14
+ },
15
+ "eslintConfig": {
16
+ "extends": "eslint:recommended",
17
+ "env": {
18
+ "node": true,
19
+ "es6": true
20
+ }
21
+ },
22
+ "lint-staged": {
23
+ "*.js": [
24
+ "npm run lint",
25
+ "prettier --single-quote --write",
26
+ "git add"
27
+ ]
28
+ },
29
+ "license": "MIT",
30
+ "devDependencies": {
31
+ "eslint": "4.18.2",
32
+ "expect.js": "0.3.1",
33
+ "husky": "0.14.3",
34
+ "lint-staged": "5.0.0",
35
+ "mocha": "4.0.1",
36
+ "prettier": "2.0.5"
37
+ }
38
+ }
@@ -0,0 +1,59 @@
1
+ # ms
2
+
3
+ ![CI](https://github.com/vercel/ms/workflows/CI/badge.svg)
4
+
5
+ Use this package to easily convert various time formats to milliseconds.
6
+
7
+ ## Examples
8
+
9
+ ```js
10
+ ms('2 days') // 172800000
11
+ ms('1d') // 86400000
12
+ ms('10h') // 36000000
13
+ ms('2.5 hrs') // 9000000
14
+ ms('2h') // 7200000
15
+ ms('1m') // 60000
16
+ ms('5s') // 5000
17
+ ms('1y') // 31557600000
18
+ ms('100') // 100
19
+ ms('-3 days') // -259200000
20
+ ms('-1h') // -3600000
21
+ ms('-200') // -200
22
+ ```
23
+
24
+ ### Convert from Milliseconds
25
+
26
+ ```js
27
+ ms(60000) // "1m"
28
+ ms(2 * 60000) // "2m"
29
+ ms(-3 * 60000) // "-3m"
30
+ ms(ms('10 hours')) // "10h"
31
+ ```
32
+
33
+ ### Time Format Written-Out
34
+
35
+ ```js
36
+ ms(60000, { long: true }) // "1 minute"
37
+ ms(2 * 60000, { long: true }) // "2 minutes"
38
+ ms(-3 * 60000, { long: true }) // "-3 minutes"
39
+ ms(ms('10 hours'), { long: true }) // "10 hours"
40
+ ```
41
+
42
+ ## Features
43
+
44
+ - Works both in [Node.js](https://nodejs.org) and in the browser
45
+ - If a number is supplied to `ms`, a string with a unit is returned
46
+ - If a string that contains the number is supplied, it returns it as a number (e.g.: it returns `100` for `'100'`)
47
+ - If you pass a string with a number and a valid unit, the number of equivalent milliseconds is returned
48
+
49
+ ## Related Packages
50
+
51
+ - [ms.macro](https://github.com/knpwrs/ms.macro) - Run `ms` as a macro at build-time.
52
+
53
+ ## Caught a Bug?
54
+
55
+ 1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device
56
+ 2. Link the package to the global module directory: `npm link`
57
+ 3. Within the module you want to test your local development instance of ms, just link it to the dependencies: `npm link ms`. Instead of the default one from npm, Node.js will now use your clone of ms!
58
+
59
+ As always, you can run the tests using: `npm test`
@@ -0,0 +1,114 @@
1
+ 1.0.0 / 2024-08-31
2
+ ==================
3
+
4
+ * Drop support for node <18
5
+ * Added an option preferred encodings array #59
6
+
7
+ 0.6.3 / 2022-01-22
8
+ ==================
9
+
10
+ * Revert "Lazy-load modules from main entry point"
11
+
12
+ 0.6.2 / 2019-04-29
13
+ ==================
14
+
15
+ * Fix sorting charset, encoding, and language with extra parameters
16
+
17
+ 0.6.1 / 2016-05-02
18
+ ==================
19
+
20
+ * perf: improve `Accept` parsing speed
21
+ * perf: improve `Accept-Charset` parsing speed
22
+ * perf: improve `Accept-Encoding` parsing speed
23
+ * perf: improve `Accept-Language` parsing speed
24
+
25
+ 0.6.0 / 2015-09-29
26
+ ==================
27
+
28
+ * Fix including type extensions in parameters in `Accept` parsing
29
+ * Fix parsing `Accept` parameters with quoted equals
30
+ * Fix parsing `Accept` parameters with quoted semicolons
31
+ * Lazy-load modules from main entry point
32
+ * perf: delay type concatenation until needed
33
+ * perf: enable strict mode
34
+ * perf: hoist regular expressions
35
+ * perf: remove closures getting spec properties
36
+ * perf: remove a closure from media type parsing
37
+ * perf: remove property delete from media type parsing
38
+
39
+ 0.5.3 / 2015-05-10
40
+ ==================
41
+
42
+ * Fix media type parameter matching to be case-insensitive
43
+
44
+ 0.5.2 / 2015-05-06
45
+ ==================
46
+
47
+ * Fix comparing media types with quoted values
48
+ * Fix splitting media types with quoted commas
49
+
50
+ 0.5.1 / 2015-02-14
51
+ ==================
52
+
53
+ * Fix preference sorting to be stable for long acceptable lists
54
+
55
+ 0.5.0 / 2014-12-18
56
+ ==================
57
+
58
+ * Fix list return order when large accepted list
59
+ * Fix missing identity encoding when q=0 exists
60
+ * Remove dynamic building of Negotiator class
61
+
62
+ 0.4.9 / 2014-10-14
63
+ ==================
64
+
65
+ * Fix error when media type has invalid parameter
66
+
67
+ 0.4.8 / 2014-09-28
68
+ ==================
69
+
70
+ * Fix all negotiations to be case-insensitive
71
+ * Stable sort preferences of same quality according to client order
72
+ * Support Node.js 0.6
73
+
74
+ 0.4.7 / 2014-06-24
75
+ ==================
76
+
77
+ * Handle invalid provided languages
78
+ * Handle invalid provided media types
79
+
80
+ 0.4.6 / 2014-06-11
81
+ ==================
82
+
83
+ * Order by specificity when quality is the same
84
+
85
+ 0.4.5 / 2014-05-29
86
+ ==================
87
+
88
+ * Fix regression in empty header handling
89
+
90
+ 0.4.4 / 2014-05-29
91
+ ==================
92
+
93
+ * Fix behaviors when headers are not present
94
+
95
+ 0.4.3 / 2014-04-16
96
+ ==================
97
+
98
+ * Handle slashes on media params correctly
99
+
100
+ 0.4.2 / 2014-02-28
101
+ ==================
102
+
103
+ * Fix media type sorting
104
+ * Handle media types params strictly
105
+
106
+ 0.4.1 / 2014-01-16
107
+ ==================
108
+
109
+ * Use most specific matches
110
+
111
+ 0.4.0 / 2014-01-09
112
+ ==================
113
+
114
+ * Remove preferred prefix from methods