@dragon708/docmind-markdown 1.2.1 → 1.2.3

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 (2249) hide show
  1. package/node_modules/@cognipeer/to-markdown/LICENSE +21 -0
  2. package/node_modules/@cognipeer/to-markdown/README.md +310 -0
  3. package/node_modules/@cognipeer/to-markdown/dist/converters/archive.d.ts +15 -0
  4. package/node_modules/@cognipeer/to-markdown/dist/converters/archive.d.ts.map +1 -0
  5. package/node_modules/@cognipeer/to-markdown/dist/converters/archive.js +81 -0
  6. package/node_modules/@cognipeer/to-markdown/dist/converters/archive.js.map +1 -0
  7. package/node_modules/@cognipeer/to-markdown/dist/converters/docx.d.ts +7 -0
  8. package/node_modules/@cognipeer/to-markdown/dist/converters/docx.d.ts.map +1 -0
  9. package/node_modules/@cognipeer/to-markdown/dist/converters/docx.js +21 -0
  10. package/node_modules/@cognipeer/to-markdown/dist/converters/docx.js.map +1 -0
  11. package/node_modules/@cognipeer/to-markdown/dist/converters/html.d.ts +13 -0
  12. package/node_modules/@cognipeer/to-markdown/dist/converters/html.d.ts.map +1 -0
  13. package/node_modules/@cognipeer/to-markdown/dist/converters/html.js +113 -0
  14. package/node_modules/@cognipeer/to-markdown/dist/converters/html.js.map +1 -0
  15. package/node_modules/@cognipeer/to-markdown/dist/converters/media.d.ts +15 -0
  16. package/node_modules/@cognipeer/to-markdown/dist/converters/media.d.ts.map +1 -0
  17. package/node_modules/@cognipeer/to-markdown/dist/converters/media.js +54 -0
  18. package/node_modules/@cognipeer/to-markdown/dist/converters/media.js.map +1 -0
  19. package/node_modules/@cognipeer/to-markdown/dist/converters/notebook.d.ts +7 -0
  20. package/node_modules/@cognipeer/to-markdown/dist/converters/notebook.d.ts.map +1 -0
  21. package/node_modules/@cognipeer/to-markdown/dist/converters/notebook.js +44 -0
  22. package/node_modules/@cognipeer/to-markdown/dist/converters/notebook.js.map +1 -0
  23. package/node_modules/@cognipeer/to-markdown/dist/converters/pdf.d.ts +7 -0
  24. package/node_modules/@cognipeer/to-markdown/dist/converters/pdf.d.ts.map +1 -0
  25. package/node_modules/@cognipeer/to-markdown/dist/converters/pdf.js +11 -0
  26. package/node_modules/@cognipeer/to-markdown/dist/converters/pdf.js.map +1 -0
  27. package/node_modules/@cognipeer/to-markdown/dist/converters/spreadsheet.d.ts +13 -0
  28. package/node_modules/@cognipeer/to-markdown/dist/converters/spreadsheet.d.ts.map +1 -0
  29. package/node_modules/@cognipeer/to-markdown/dist/converters/spreadsheet.js +41 -0
  30. package/node_modules/@cognipeer/to-markdown/dist/converters/spreadsheet.js.map +1 -0
  31. package/node_modules/@cognipeer/to-markdown/dist/converters/text.d.ts +21 -0
  32. package/node_modules/@cognipeer/to-markdown/dist/converters/text.d.ts.map +1 -0
  33. package/node_modules/@cognipeer/to-markdown/dist/converters/text.js +54 -0
  34. package/node_modules/@cognipeer/to-markdown/dist/converters/text.js.map +1 -0
  35. package/node_modules/@cognipeer/to-markdown/dist/converters/xml.d.ts +7 -0
  36. package/node_modules/@cognipeer/to-markdown/dist/converters/xml.d.ts.map +1 -0
  37. package/node_modules/@cognipeer/to-markdown/dist/converters/xml.js +72 -0
  38. package/node_modules/@cognipeer/to-markdown/dist/converters/xml.js.map +1 -0
  39. package/node_modules/@cognipeer/to-markdown/dist/index.cjs +1739 -0
  40. package/node_modules/@cognipeer/to-markdown/dist/index.cjs.map +1 -0
  41. package/node_modules/@cognipeer/to-markdown/dist/index.d.ts +46 -0
  42. package/node_modules/@cognipeer/to-markdown/dist/index.d.ts.map +1 -0
  43. package/node_modules/@cognipeer/to-markdown/dist/index.js +1733 -0
  44. package/node_modules/@cognipeer/to-markdown/dist/index.js.map +1 -0
  45. package/node_modules/@cognipeer/to-markdown/dist/types/index.d.ts +78 -0
  46. package/node_modules/@cognipeer/to-markdown/dist/types/index.d.ts.map +1 -0
  47. package/node_modules/@cognipeer/to-markdown/dist/types/index.js +27 -0
  48. package/node_modules/@cognipeer/to-markdown/dist/types/index.js.map +1 -0
  49. package/node_modules/@cognipeer/to-markdown/dist/utils/fileDetection.d.ts +12 -0
  50. package/node_modules/@cognipeer/to-markdown/dist/utils/fileDetection.d.ts.map +1 -0
  51. package/node_modules/@cognipeer/to-markdown/dist/utils/fileDetection.js +75 -0
  52. package/node_modules/@cognipeer/to-markdown/dist/utils/fileDetection.js.map +1 -0
  53. package/node_modules/@cognipeer/to-markdown/dist/utils/markdown.d.ts +13 -0
  54. package/node_modules/@cognipeer/to-markdown/dist/utils/markdown.d.ts.map +1 -0
  55. package/node_modules/@cognipeer/to-markdown/dist/utils/markdown.js +60 -0
  56. package/node_modules/@cognipeer/to-markdown/dist/utils/markdown.js.map +1 -0
  57. package/node_modules/@cognipeer/to-markdown/package.json +96 -0
  58. package/node_modules/@opendocsg/pdf2md/LICENSE +21 -0
  59. package/node_modules/@opendocsg/pdf2md/README.md +52 -0
  60. package/node_modules/@opendocsg/pdf2md/lib/models/Annotation.js +34 -0
  61. package/node_modules/@opendocsg/pdf2md/lib/models/HeadlineFinder.js +40 -0
  62. package/node_modules/@opendocsg/pdf2md/lib/models/LineConverter.js +156 -0
  63. package/node_modules/@opendocsg/pdf2md/lib/models/LineItem.js +29 -0
  64. package/node_modules/@opendocsg/pdf2md/lib/models/LineItemBlock.js +32 -0
  65. package/node_modules/@opendocsg/pdf2md/lib/models/Metadata.js +15 -0
  66. package/node_modules/@opendocsg/pdf2md/lib/models/Page.js +7 -0
  67. package/node_modules/@opendocsg/pdf2md/lib/models/PageItem.js +11 -0
  68. package/node_modules/@opendocsg/pdf2md/lib/models/ParseResult.js +8 -0
  69. package/node_modules/@opendocsg/pdf2md/lib/models/ParsedElements.js +15 -0
  70. package/node_modules/@opendocsg/pdf2md/lib/models/StashingStream.js +72 -0
  71. package/node_modules/@opendocsg/pdf2md/lib/models/TextItem.js +18 -0
  72. package/node_modules/@opendocsg/pdf2md/lib/models/TextItemLineGrouper.js +34 -0
  73. package/node_modules/@opendocsg/pdf2md/lib/models/Word.js +7 -0
  74. package/node_modules/@opendocsg/pdf2md/lib/models/markdown/BlockType.js +176 -0
  75. package/node_modules/@opendocsg/pdf2md/lib/models/markdown/WordFormat.js +23 -0
  76. package/node_modules/@opendocsg/pdf2md/lib/models/markdown/WordType.js +29 -0
  77. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/ToLineItemBlockTransformation.js +29 -0
  78. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/ToLineItemTransformation.js +29 -0
  79. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/ToMarkdown.js +42 -0
  80. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/ToTextBlocks.js +27 -0
  81. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/ToTextItemTransformation.js +29 -0
  82. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/Transformation.js +30 -0
  83. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item/CompactLines.js +79 -0
  84. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item/DetectHeaders.js +134 -0
  85. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item/DetectListItems.js +62 -0
  86. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item/DetectTOC.js +351 -0
  87. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item/RemoveRepetitiveElements.js +97 -0
  88. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item/VerticalToHorizontal.js +75 -0
  89. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item-block/DetectCodeQuoteBlocks.js +51 -0
  90. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item-block/DetectListLevels.js +59 -0
  91. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item-block/GatherBlocks.js +87 -0
  92. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/text-item/CalculateGlobalStats.js +113 -0
  93. package/node_modules/@opendocsg/pdf2md/lib/pdf2md-cli.js +66 -0
  94. package/node_modules/@opendocsg/pdf2md/lib/pdf2md.js +43 -0
  95. package/node_modules/@opendocsg/pdf2md/lib/util/cli.js +43 -0
  96. package/node_modules/@opendocsg/pdf2md/lib/util/page-item-functions.js +34 -0
  97. package/node_modules/@opendocsg/pdf2md/lib/util/page-number-functions.js +116 -0
  98. package/node_modules/@opendocsg/pdf2md/lib/util/pdf.js +112 -0
  99. package/node_modules/@opendocsg/pdf2md/lib/util/string-functions.js +116 -0
  100. package/node_modules/@opendocsg/pdf2md/lib/util/transformations.js +46 -0
  101. package/node_modules/@opendocsg/pdf2md/package.json +60 -0
  102. package/node_modules/@opendocsg/pdf2md/test/convert.spec.js +15 -0
  103. package/node_modules/@opendocsg/pdf2md/test/models/HeadlineFinder.spec.js +92 -0
  104. package/node_modules/@opendocsg/pdf2md/test/models/StashingStream.spec.js +95 -0
  105. package/node_modules/@opendocsg/pdf2md/test/util/cli.spec.js +84 -0
  106. package/node_modules/@opendocsg/pdf2md/test/util/page-number-functions.spec.js +85 -0
  107. package/node_modules/@opendocsg/pdf2md/test/util/string-functions.spec.js +211 -0
  108. package/node_modules/@opendocsg/pdf2md/types/pdf2md.d.ts +49 -0
  109. package/node_modules/@tokenizer/token/README.md +19 -0
  110. package/node_modules/@tokenizer/token/index.d.ts +30 -0
  111. package/node_modules/@tokenizer/token/package.json +33 -0
  112. package/node_modules/adler-32/LICENSE +201 -0
  113. package/node_modules/adler-32/README.md +140 -0
  114. package/node_modules/adler-32/adler32.js +92 -0
  115. package/node_modules/adler-32/package.json +35 -0
  116. package/node_modules/adler-32/types/index.d.ts +14 -0
  117. package/node_modules/adler-32/types/tsconfig.json +15 -0
  118. package/node_modules/adler-32/types/tslint.json +14 -0
  119. package/node_modules/adm-zip/LICENSE +21 -0
  120. package/node_modules/adm-zip/README.md +87 -0
  121. package/node_modules/adm-zip/adm-zip.js +949 -0
  122. package/node_modules/adm-zip/headers/entryHeader.js +377 -0
  123. package/node_modules/adm-zip/headers/index.js +2 -0
  124. package/node_modules/adm-zip/headers/mainHeader.js +130 -0
  125. package/node_modules/adm-zip/methods/deflater.js +33 -0
  126. package/node_modules/adm-zip/methods/index.js +3 -0
  127. package/node_modules/adm-zip/methods/inflater.js +34 -0
  128. package/node_modules/adm-zip/methods/zipcrypto.js +175 -0
  129. package/node_modules/adm-zip/package.json +54 -0
  130. package/node_modules/adm-zip/util/constants.js +142 -0
  131. package/node_modules/adm-zip/util/decoder.js +5 -0
  132. package/node_modules/adm-zip/util/errors.js +63 -0
  133. package/node_modules/adm-zip/util/fattr.js +76 -0
  134. package/node_modules/adm-zip/util/index.js +5 -0
  135. package/node_modules/adm-zip/util/utils.js +339 -0
  136. package/node_modules/adm-zip/zipEntry.js +405 -0
  137. package/node_modules/adm-zip/zipFile.js +446 -0
  138. package/node_modules/boolbase/README.md +10 -0
  139. package/node_modules/boolbase/index.js +8 -0
  140. package/node_modules/boolbase/package.json +23 -0
  141. package/node_modules/cfb/LICENSE +201 -0
  142. package/node_modules/cfb/README.md +161 -0
  143. package/node_modules/cfb/cfb.js +1979 -0
  144. package/node_modules/cfb/dist/LICENSE +201 -0
  145. package/node_modules/cfb/dist/cfb.js +1979 -0
  146. package/node_modules/cfb/dist/cfb.min.js +3 -0
  147. package/node_modules/cfb/dist/cfb.min.map +1 -0
  148. package/node_modules/cfb/dist/xlscfb.js +1856 -0
  149. package/node_modules/cfb/package.json +68 -0
  150. package/node_modules/cfb/types/index.d.ts +128 -0
  151. package/node_modules/cfb/types/tsconfig.json +15 -0
  152. package/node_modules/cfb/xlscfb.flow.js +1856 -0
  153. package/node_modules/cheerio/LICENSE +21 -0
  154. package/node_modules/cheerio/Readme.md +229 -0
  155. package/node_modules/cheerio/dist/browser/api/attributes.d.ts +385 -0
  156. package/node_modules/cheerio/dist/browser/api/attributes.d.ts.map +1 -0
  157. package/node_modules/cheerio/dist/browser/api/attributes.js +636 -0
  158. package/node_modules/cheerio/dist/browser/api/attributes.js.map +1 -0
  159. package/node_modules/cheerio/dist/browser/api/css.d.ts +42 -0
  160. package/node_modules/cheerio/dist/browser/api/css.d.ts.map +1 -0
  161. package/node_modules/cheerio/dist/browser/api/css.js +116 -0
  162. package/node_modules/cheerio/dist/browser/api/css.js.map +1 -0
  163. package/node_modules/cheerio/dist/browser/api/extract.d.ts +27 -0
  164. package/node_modules/cheerio/dist/browser/api/extract.d.ts.map +1 -0
  165. package/node_modules/cheerio/dist/browser/api/extract.js +42 -0
  166. package/node_modules/cheerio/dist/browser/api/extract.js.map +1 -0
  167. package/node_modules/cheerio/dist/browser/api/forms.d.ts +36 -0
  168. package/node_modules/cheerio/dist/browser/api/forms.d.ts.map +1 -0
  169. package/node_modules/cheerio/dist/browser/api/forms.js +81 -0
  170. package/node_modules/cheerio/dist/browser/api/forms.js.map +1 -0
  171. package/node_modules/cheerio/dist/browser/api/manipulation.d.ts +528 -0
  172. package/node_modules/cheerio/dist/browser/api/manipulation.d.ts.map +1 -0
  173. package/node_modules/cheerio/dist/browser/api/manipulation.js +831 -0
  174. package/node_modules/cheerio/dist/browser/api/manipulation.js.map +1 -0
  175. package/node_modules/cheerio/dist/browser/api/traversing.d.ts +657 -0
  176. package/node_modules/cheerio/dist/browser/api/traversing.d.ts.map +1 -0
  177. package/node_modules/cheerio/dist/browser/api/traversing.js +857 -0
  178. package/node_modules/cheerio/dist/browser/api/traversing.js.map +1 -0
  179. package/node_modules/cheerio/dist/browser/cheerio.d.ts +85 -0
  180. package/node_modules/cheerio/dist/browser/cheerio.d.ts.map +1 -0
  181. package/node_modules/cheerio/dist/browser/cheerio.js +58 -0
  182. package/node_modules/cheerio/dist/browser/cheerio.js.map +1 -0
  183. package/node_modules/cheerio/dist/browser/index-browser.d.mts.map +1 -0
  184. package/node_modules/cheerio/dist/browser/index-browser.mjs.map +1 -0
  185. package/node_modules/cheerio/dist/browser/index.d.ts +5 -0
  186. package/node_modules/cheerio/dist/browser/index.js +3 -0
  187. package/node_modules/cheerio/dist/browser/load-parse.d.ts +20 -0
  188. package/node_modules/cheerio/dist/browser/load-parse.d.ts.map +1 -0
  189. package/node_modules/cheerio/dist/browser/load-parse.js +28 -0
  190. package/node_modules/cheerio/dist/browser/load-parse.js.map +1 -0
  191. package/node_modules/cheerio/dist/browser/load.d.ts +91 -0
  192. package/node_modules/cheerio/dist/browser/load.d.ts.map +1 -0
  193. package/node_modules/cheerio/dist/browser/load.js +129 -0
  194. package/node_modules/cheerio/dist/browser/load.js.map +1 -0
  195. package/node_modules/cheerio/dist/browser/options.d.ts +98 -0
  196. package/node_modules/cheerio/dist/browser/options.d.ts.map +1 -0
  197. package/node_modules/cheerio/dist/browser/options.js +34 -0
  198. package/node_modules/cheerio/dist/browser/options.js.map +1 -0
  199. package/node_modules/cheerio/dist/browser/package.json +3 -0
  200. package/node_modules/cheerio/dist/browser/parse.d.ts +18 -0
  201. package/node_modules/cheerio/dist/browser/parse.d.ts.map +1 -0
  202. package/node_modules/cheerio/dist/browser/parse.js +73 -0
  203. package/node_modules/cheerio/dist/browser/parse.js.map +1 -0
  204. package/node_modules/cheerio/dist/browser/parsers/parse5-adapter.d.ts +20 -0
  205. package/node_modules/cheerio/dist/browser/parsers/parse5-adapter.d.ts.map +1 -0
  206. package/node_modules/cheerio/dist/browser/parsers/parse5-adapter.js +50 -0
  207. package/node_modules/cheerio/dist/browser/parsers/parse5-adapter.js.map +1 -0
  208. package/node_modules/cheerio/dist/browser/slim.d.ts +25 -0
  209. package/node_modules/cheerio/dist/browser/slim.d.ts.map +1 -0
  210. package/node_modules/cheerio/dist/browser/slim.js +22 -0
  211. package/node_modules/cheerio/dist/browser/slim.js.map +1 -0
  212. package/node_modules/cheerio/dist/browser/static.d.ts +112 -0
  213. package/node_modules/cheerio/dist/browser/static.d.ts.map +1 -0
  214. package/node_modules/cheerio/dist/browser/static.js +204 -0
  215. package/node_modules/cheerio/dist/browser/static.js.map +1 -0
  216. package/node_modules/cheerio/dist/browser/types.d.ts +21 -0
  217. package/node_modules/cheerio/dist/browser/types.d.ts.map +1 -0
  218. package/node_modules/cheerio/dist/browser/types.js +3 -0
  219. package/node_modules/cheerio/dist/browser/types.js.map +1 -0
  220. package/node_modules/cheerio/dist/browser/utils.d.ts +55 -0
  221. package/node_modules/cheerio/dist/browser/utils.d.ts.map +1 -0
  222. package/node_modules/cheerio/dist/browser/utils.js +84 -0
  223. package/node_modules/cheerio/dist/browser/utils.js.map +1 -0
  224. package/node_modules/cheerio/dist/commonjs/api/attributes.d.ts +385 -0
  225. package/node_modules/cheerio/dist/commonjs/api/attributes.d.ts.map +1 -0
  226. package/node_modules/cheerio/dist/commonjs/api/attributes.js +647 -0
  227. package/node_modules/cheerio/dist/commonjs/api/attributes.js.map +1 -0
  228. package/node_modules/cheerio/dist/commonjs/api/css.d.ts +42 -0
  229. package/node_modules/cheerio/dist/commonjs/api/css.d.ts.map +1 -0
  230. package/node_modules/cheerio/dist/commonjs/api/css.js +119 -0
  231. package/node_modules/cheerio/dist/commonjs/api/css.js.map +1 -0
  232. package/node_modules/cheerio/dist/commonjs/api/extract.d.ts +27 -0
  233. package/node_modules/cheerio/dist/commonjs/api/extract.d.ts.map +1 -0
  234. package/node_modules/cheerio/dist/commonjs/api/extract.js +45 -0
  235. package/node_modules/cheerio/dist/commonjs/api/extract.js.map +1 -0
  236. package/node_modules/cheerio/dist/commonjs/api/forms.d.ts +36 -0
  237. package/node_modules/cheerio/dist/commonjs/api/forms.d.ts.map +1 -0
  238. package/node_modules/cheerio/dist/commonjs/api/forms.js +85 -0
  239. package/node_modules/cheerio/dist/commonjs/api/forms.js.map +1 -0
  240. package/node_modules/cheerio/dist/commonjs/api/manipulation.d.ts +528 -0
  241. package/node_modules/cheerio/dist/commonjs/api/manipulation.d.ts.map +1 -0
  242. package/node_modules/cheerio/dist/commonjs/api/manipulation.js +850 -0
  243. package/node_modules/cheerio/dist/commonjs/api/manipulation.js.map +1 -0
  244. package/node_modules/cheerio/dist/commonjs/api/traversing.d.ts +657 -0
  245. package/node_modules/cheerio/dist/commonjs/api/traversing.d.ts.map +1 -0
  246. package/node_modules/cheerio/dist/commonjs/api/traversing.js +914 -0
  247. package/node_modules/cheerio/dist/commonjs/api/traversing.js.map +1 -0
  248. package/node_modules/cheerio/dist/commonjs/cheerio.d.ts +85 -0
  249. package/node_modules/cheerio/dist/commonjs/cheerio.d.ts.map +1 -0
  250. package/node_modules/cheerio/dist/commonjs/cheerio.js +95 -0
  251. package/node_modules/cheerio/dist/commonjs/cheerio.js.map +1 -0
  252. package/node_modules/cheerio/dist/commonjs/index.d.ts +104 -0
  253. package/node_modules/cheerio/dist/commonjs/index.d.ts.map +1 -0
  254. package/node_modules/cheerio/dist/commonjs/index.js +250 -0
  255. package/node_modules/cheerio/dist/commonjs/index.js.map +1 -0
  256. package/node_modules/cheerio/dist/commonjs/load-parse.d.ts +20 -0
  257. package/node_modules/cheerio/dist/commonjs/load-parse.d.ts.map +1 -0
  258. package/node_modules/cheerio/dist/commonjs/load-parse.js +34 -0
  259. package/node_modules/cheerio/dist/commonjs/load-parse.js.map +1 -0
  260. package/node_modules/cheerio/dist/commonjs/load.d.ts +91 -0
  261. package/node_modules/cheerio/dist/commonjs/load.d.ts.map +1 -0
  262. package/node_modules/cheerio/dist/commonjs/load.js +165 -0
  263. package/node_modules/cheerio/dist/commonjs/load.js.map +1 -0
  264. package/node_modules/cheerio/dist/commonjs/options.d.ts +98 -0
  265. package/node_modules/cheerio/dist/commonjs/options.d.ts.map +1 -0
  266. package/node_modules/cheerio/dist/commonjs/options.js +37 -0
  267. package/node_modules/cheerio/dist/commonjs/options.js.map +1 -0
  268. package/node_modules/cheerio/dist/commonjs/package.json +3 -0
  269. package/node_modules/cheerio/dist/commonjs/parse.d.ts +18 -0
  270. package/node_modules/cheerio/dist/commonjs/parse.d.ts.map +1 -0
  271. package/node_modules/cheerio/dist/commonjs/parse.js +77 -0
  272. package/node_modules/cheerio/dist/commonjs/parse.js.map +1 -0
  273. package/node_modules/cheerio/dist/commonjs/parsers/parse5-adapter.d.ts +20 -0
  274. package/node_modules/cheerio/dist/commonjs/parsers/parse5-adapter.d.ts.map +1 -0
  275. package/node_modules/cheerio/dist/commonjs/parsers/parse5-adapter.js +54 -0
  276. package/node_modules/cheerio/dist/commonjs/parsers/parse5-adapter.js.map +1 -0
  277. package/node_modules/cheerio/dist/commonjs/slim.d.ts +25 -0
  278. package/node_modules/cheerio/dist/commonjs/slim.d.ts.map +1 -0
  279. package/node_modules/cheerio/dist/commonjs/slim.js +30 -0
  280. package/node_modules/cheerio/dist/commonjs/slim.js.map +1 -0
  281. package/node_modules/cheerio/dist/commonjs/static.d.ts +112 -0
  282. package/node_modules/cheerio/dist/commonjs/static.d.ts.map +1 -0
  283. package/node_modules/cheerio/dist/commonjs/static.js +214 -0
  284. package/node_modules/cheerio/dist/commonjs/static.js.map +1 -0
  285. package/node_modules/cheerio/dist/commonjs/types.d.ts +21 -0
  286. package/node_modules/cheerio/dist/commonjs/types.d.ts.map +1 -0
  287. package/node_modules/cheerio/dist/commonjs/types.js +4 -0
  288. package/node_modules/cheerio/dist/commonjs/types.js.map +1 -0
  289. package/node_modules/cheerio/dist/commonjs/utils.d.ts +55 -0
  290. package/node_modules/cheerio/dist/commonjs/utils.d.ts.map +1 -0
  291. package/node_modules/cheerio/dist/commonjs/utils.js +91 -0
  292. package/node_modules/cheerio/dist/commonjs/utils.js.map +1 -0
  293. package/node_modules/cheerio/dist/esm/api/attributes.d.ts +385 -0
  294. package/node_modules/cheerio/dist/esm/api/attributes.d.ts.map +1 -0
  295. package/node_modules/cheerio/dist/esm/api/attributes.js +636 -0
  296. package/node_modules/cheerio/dist/esm/api/attributes.js.map +1 -0
  297. package/node_modules/cheerio/dist/esm/api/css.d.ts +42 -0
  298. package/node_modules/cheerio/dist/esm/api/css.d.ts.map +1 -0
  299. package/node_modules/cheerio/dist/esm/api/css.js +116 -0
  300. package/node_modules/cheerio/dist/esm/api/css.js.map +1 -0
  301. package/node_modules/cheerio/dist/esm/api/extract.d.ts +27 -0
  302. package/node_modules/cheerio/dist/esm/api/extract.d.ts.map +1 -0
  303. package/node_modules/cheerio/dist/esm/api/extract.js +42 -0
  304. package/node_modules/cheerio/dist/esm/api/extract.js.map +1 -0
  305. package/node_modules/cheerio/dist/esm/api/forms.d.ts +36 -0
  306. package/node_modules/cheerio/dist/esm/api/forms.d.ts.map +1 -0
  307. package/node_modules/cheerio/dist/esm/api/forms.js +81 -0
  308. package/node_modules/cheerio/dist/esm/api/forms.js.map +1 -0
  309. package/node_modules/cheerio/dist/esm/api/manipulation.d.ts +528 -0
  310. package/node_modules/cheerio/dist/esm/api/manipulation.d.ts.map +1 -0
  311. package/node_modules/cheerio/dist/esm/api/manipulation.js +831 -0
  312. package/node_modules/cheerio/dist/esm/api/manipulation.js.map +1 -0
  313. package/node_modules/cheerio/dist/esm/api/traversing.d.ts +657 -0
  314. package/node_modules/cheerio/dist/esm/api/traversing.d.ts.map +1 -0
  315. package/node_modules/cheerio/dist/esm/api/traversing.js +857 -0
  316. package/node_modules/cheerio/dist/esm/api/traversing.js.map +1 -0
  317. package/node_modules/cheerio/dist/esm/cheerio.d.ts +85 -0
  318. package/node_modules/cheerio/dist/esm/cheerio.d.ts.map +1 -0
  319. package/node_modules/cheerio/dist/esm/cheerio.js +58 -0
  320. package/node_modules/cheerio/dist/esm/cheerio.js.map +1 -0
  321. package/node_modules/cheerio/dist/esm/index.d.ts +104 -0
  322. package/node_modules/cheerio/dist/esm/index.d.ts.map +1 -0
  323. package/node_modules/cheerio/dist/esm/index.js +202 -0
  324. package/node_modules/cheerio/dist/esm/index.js.map +1 -0
  325. package/node_modules/cheerio/dist/esm/load-parse.d.ts +20 -0
  326. package/node_modules/cheerio/dist/esm/load-parse.d.ts.map +1 -0
  327. package/node_modules/cheerio/dist/esm/load-parse.js +28 -0
  328. package/node_modules/cheerio/dist/esm/load-parse.js.map +1 -0
  329. package/node_modules/cheerio/dist/esm/load.d.ts +91 -0
  330. package/node_modules/cheerio/dist/esm/load.d.ts.map +1 -0
  331. package/node_modules/cheerio/dist/esm/load.js +129 -0
  332. package/node_modules/cheerio/dist/esm/load.js.map +1 -0
  333. package/node_modules/cheerio/dist/esm/options.d.ts +98 -0
  334. package/node_modules/cheerio/dist/esm/options.d.ts.map +1 -0
  335. package/node_modules/cheerio/dist/esm/options.js +34 -0
  336. package/node_modules/cheerio/dist/esm/options.js.map +1 -0
  337. package/node_modules/cheerio/dist/esm/package.json +3 -0
  338. package/node_modules/cheerio/dist/esm/parse.d.ts +18 -0
  339. package/node_modules/cheerio/dist/esm/parse.d.ts.map +1 -0
  340. package/node_modules/cheerio/dist/esm/parse.js +73 -0
  341. package/node_modules/cheerio/dist/esm/parse.js.map +1 -0
  342. package/node_modules/cheerio/dist/esm/parsers/parse5-adapter.d.ts +20 -0
  343. package/node_modules/cheerio/dist/esm/parsers/parse5-adapter.d.ts.map +1 -0
  344. package/node_modules/cheerio/dist/esm/parsers/parse5-adapter.js +50 -0
  345. package/node_modules/cheerio/dist/esm/parsers/parse5-adapter.js.map +1 -0
  346. package/node_modules/cheerio/dist/esm/slim.d.ts +25 -0
  347. package/node_modules/cheerio/dist/esm/slim.d.ts.map +1 -0
  348. package/node_modules/cheerio/dist/esm/slim.js +22 -0
  349. package/node_modules/cheerio/dist/esm/slim.js.map +1 -0
  350. package/node_modules/cheerio/dist/esm/static.d.ts +112 -0
  351. package/node_modules/cheerio/dist/esm/static.d.ts.map +1 -0
  352. package/node_modules/cheerio/dist/esm/static.js +204 -0
  353. package/node_modules/cheerio/dist/esm/static.js.map +1 -0
  354. package/node_modules/cheerio/dist/esm/types.d.ts +21 -0
  355. package/node_modules/cheerio/dist/esm/types.d.ts.map +1 -0
  356. package/node_modules/cheerio/dist/esm/types.js +3 -0
  357. package/node_modules/cheerio/dist/esm/types.js.map +1 -0
  358. package/node_modules/cheerio/dist/esm/utils.d.ts +55 -0
  359. package/node_modules/cheerio/dist/esm/utils.d.ts.map +1 -0
  360. package/node_modules/cheerio/dist/esm/utils.js +84 -0
  361. package/node_modules/cheerio/dist/esm/utils.js.map +1 -0
  362. package/node_modules/cheerio/package.json +182 -0
  363. package/node_modules/cheerio/src/api/attributes.ts +1145 -0
  364. package/node_modules/cheerio/src/api/css.ts +224 -0
  365. package/node_modules/cheerio/src/api/extract.ts +92 -0
  366. package/node_modules/cheerio/src/api/forms.ts +103 -0
  367. package/node_modules/cheerio/src/api/manipulation.ts +1115 -0
  368. package/node_modules/cheerio/src/api/traversing.ts +1175 -0
  369. package/node_modules/cheerio/src/cheerio.ts +143 -0
  370. package/node_modules/cheerio/src/index-browser.mts +10 -0
  371. package/node_modules/cheerio/src/index.ts +294 -0
  372. package/node_modules/cheerio/src/load-parse.ts +39 -0
  373. package/node_modules/cheerio/src/load.ts +282 -0
  374. package/node_modules/cheerio/src/options.ts +136 -0
  375. package/node_modules/cheerio/src/parse.ts +105 -0
  376. package/node_modules/cheerio/src/parsers/parse5-adapter.ts +66 -0
  377. package/node_modules/cheerio/src/slim.ts +33 -0
  378. package/node_modules/cheerio/src/static.ts +312 -0
  379. package/node_modules/cheerio/src/types.ts +58 -0
  380. package/node_modules/cheerio/src/utils.ts +99 -0
  381. package/node_modules/cheerio-select/LICENSE +11 -0
  382. package/node_modules/cheerio-select/README.md +18 -0
  383. package/node_modules/cheerio-select/lib/esm/helpers.d.ts +5 -0
  384. package/node_modules/cheerio-select/lib/esm/helpers.d.ts.map +1 -0
  385. package/node_modules/cheerio-select/lib/esm/helpers.js +20 -0
  386. package/node_modules/cheerio-select/lib/esm/helpers.js.map +1 -0
  387. package/node_modules/cheerio-select/lib/esm/index.d.ts +12 -0
  388. package/node_modules/cheerio-select/lib/esm/index.d.ts.map +1 -0
  389. package/node_modules/cheerio-select/lib/esm/index.js +241 -0
  390. package/node_modules/cheerio-select/lib/esm/index.js.map +1 -0
  391. package/node_modules/cheerio-select/lib/esm/package.json +1 -0
  392. package/node_modules/cheerio-select/lib/esm/positionals.d.ts +10 -0
  393. package/node_modules/cheerio-select/lib/esm/positionals.d.ts.map +1 -0
  394. package/node_modules/cheerio-select/lib/esm/positionals.js +47 -0
  395. package/node_modules/cheerio-select/lib/esm/positionals.js.map +1 -0
  396. package/node_modules/cheerio-select/lib/helpers.d.ts +5 -0
  397. package/node_modules/cheerio-select/lib/helpers.d.ts.map +1 -0
  398. package/node_modules/cheerio-select/lib/helpers.js +26 -0
  399. package/node_modules/cheerio-select/lib/helpers.js.map +1 -0
  400. package/node_modules/cheerio-select/lib/index.d.ts +12 -0
  401. package/node_modules/cheerio-select/lib/index.d.ts.map +1 -0
  402. package/node_modules/cheerio-select/lib/index.js +302 -0
  403. package/node_modules/cheerio-select/lib/index.js.map +1 -0
  404. package/node_modules/cheerio-select/lib/positionals.d.ts +10 -0
  405. package/node_modules/cheerio-select/lib/positionals.d.ts.map +1 -0
  406. package/node_modules/cheerio-select/lib/positionals.js +52 -0
  407. package/node_modules/cheerio-select/lib/positionals.js.map +1 -0
  408. package/node_modules/cheerio-select/package.json +76 -0
  409. package/node_modules/codepage/LICENSE +201 -0
  410. package/node_modules/codepage/README.md +350 -0
  411. package/node_modules/codepage/bits/10000.js +2 -0
  412. package/node_modules/codepage/bits/10001.js +115 -0
  413. package/node_modules/codepage/bits/10002.js +253 -0
  414. package/node_modules/codepage/bits/10003.js +183 -0
  415. package/node_modules/codepage/bits/10004.js +2 -0
  416. package/node_modules/codepage/bits/10005.js +2 -0
  417. package/node_modules/codepage/bits/10006.js +2 -0
  418. package/node_modules/codepage/bits/10007.js +2 -0
  419. package/node_modules/codepage/bits/10008.js +167 -0
  420. package/node_modules/codepage/bits/10010.js +2 -0
  421. package/node_modules/codepage/bits/10017.js +2 -0
  422. package/node_modules/codepage/bits/10021.js +2 -0
  423. package/node_modules/codepage/bits/10029.js +2 -0
  424. package/node_modules/codepage/bits/10079.js +2 -0
  425. package/node_modules/codepage/bits/10081.js +2 -0
  426. package/node_modules/codepage/bits/10082.js +2 -0
  427. package/node_modules/codepage/bits/1010.js +2 -0
  428. package/node_modules/codepage/bits/1026.js +2 -0
  429. package/node_modules/codepage/bits/1047.js +2 -0
  430. package/node_modules/codepage/bits/1132.js +2 -0
  431. package/node_modules/codepage/bits/1140.js +2 -0
  432. package/node_modules/codepage/bits/1141.js +2 -0
  433. package/node_modules/codepage/bits/1142.js +2 -0
  434. package/node_modules/codepage/bits/1143.js +2 -0
  435. package/node_modules/codepage/bits/1144.js +2 -0
  436. package/node_modules/codepage/bits/1145.js +2 -0
  437. package/node_modules/codepage/bits/1146.js +2 -0
  438. package/node_modules/codepage/bits/1147.js +2 -0
  439. package/node_modules/codepage/bits/1148.js +2 -0
  440. package/node_modules/codepage/bits/1149.js +2 -0
  441. package/node_modules/codepage/bits/1250.js +2 -0
  442. package/node_modules/codepage/bits/1251.js +2 -0
  443. package/node_modules/codepage/bits/1252.js +2 -0
  444. package/node_modules/codepage/bits/1253.js +2 -0
  445. package/node_modules/codepage/bits/1254.js +2 -0
  446. package/node_modules/codepage/bits/1255.js +2 -0
  447. package/node_modules/codepage/bits/1256.js +2 -0
  448. package/node_modules/codepage/bits/1257.js +2 -0
  449. package/node_modules/codepage/bits/1258.js +2 -0
  450. package/node_modules/codepage/bits/1361.js +231 -0
  451. package/node_modules/codepage/bits/20000.js +193 -0
  452. package/node_modules/codepage/bits/20001.js +217 -0
  453. package/node_modules/codepage/bits/20002.js +167 -0
  454. package/node_modules/codepage/bits/20003.js +213 -0
  455. package/node_modules/codepage/bits/20004.js +193 -0
  456. package/node_modules/codepage/bits/20005.js +223 -0
  457. package/node_modules/codepage/bits/20105.js +2 -0
  458. package/node_modules/codepage/bits/20106.js +2 -0
  459. package/node_modules/codepage/bits/20107.js +2 -0
  460. package/node_modules/codepage/bits/20108.js +2 -0
  461. package/node_modules/codepage/bits/20261.js +31 -0
  462. package/node_modules/codepage/bits/20269.js +2 -0
  463. package/node_modules/codepage/bits/20273.js +2 -0
  464. package/node_modules/codepage/bits/20277.js +2 -0
  465. package/node_modules/codepage/bits/20278.js +2 -0
  466. package/node_modules/codepage/bits/20280.js +2 -0
  467. package/node_modules/codepage/bits/20284.js +2 -0
  468. package/node_modules/codepage/bits/20285.js +2 -0
  469. package/node_modules/codepage/bits/20290.js +2 -0
  470. package/node_modules/codepage/bits/20297.js +2 -0
  471. package/node_modules/codepage/bits/20420.js +2 -0
  472. package/node_modules/codepage/bits/20423.js +2 -0
  473. package/node_modules/codepage/bits/20424.js +2 -0
  474. package/node_modules/codepage/bits/20833.js +2 -0
  475. package/node_modules/codepage/bits/20838.js +2 -0
  476. package/node_modules/codepage/bits/20866.js +2 -0
  477. package/node_modules/codepage/bits/20871.js +2 -0
  478. package/node_modules/codepage/bits/20880.js +2 -0
  479. package/node_modules/codepage/bits/20905.js +2 -0
  480. package/node_modules/codepage/bits/20924.js +2 -0
  481. package/node_modules/codepage/bits/20932.js +189 -0
  482. package/node_modules/codepage/bits/20936.js +167 -0
  483. package/node_modules/codepage/bits/20949.js +183 -0
  484. package/node_modules/codepage/bits/21025.js +2 -0
  485. package/node_modules/codepage/bits/21027.js +2 -0
  486. package/node_modules/codepage/bits/21866.js +2 -0
  487. package/node_modules/codepage/bits/28591.js +2 -0
  488. package/node_modules/codepage/bits/28592.js +2 -0
  489. package/node_modules/codepage/bits/28593.js +2 -0
  490. package/node_modules/codepage/bits/28594.js +2 -0
  491. package/node_modules/codepage/bits/28595.js +2 -0
  492. package/node_modules/codepage/bits/28596.js +2 -0
  493. package/node_modules/codepage/bits/28597.js +2 -0
  494. package/node_modules/codepage/bits/28598.js +2 -0
  495. package/node_modules/codepage/bits/28599.js +2 -0
  496. package/node_modules/codepage/bits/28600.js +2 -0
  497. package/node_modules/codepage/bits/28601.js +2 -0
  498. package/node_modules/codepage/bits/28603.js +2 -0
  499. package/node_modules/codepage/bits/28604.js +2 -0
  500. package/node_modules/codepage/bits/28605.js +2 -0
  501. package/node_modules/codepage/bits/28606.js +2 -0
  502. package/node_modules/codepage/bits/29001.js +2 -0
  503. package/node_modules/codepage/bits/37.js +2 -0
  504. package/node_modules/codepage/bits/38598.js +2 -0
  505. package/node_modules/codepage/bits/437.js +2 -0
  506. package/node_modules/codepage/bits/47451.js +2 -0
  507. package/node_modules/codepage/bits/500.js +2 -0
  508. package/node_modules/codepage/bits/50220.js +395 -0
  509. package/node_modules/codepage/bits/50221.js +395 -0
  510. package/node_modules/codepage/bits/50222.js +395 -0
  511. package/node_modules/codepage/bits/50225.js +259 -0
  512. package/node_modules/codepage/bits/50227.js +257 -0
  513. package/node_modules/codepage/bits/51932.js +171 -0
  514. package/node_modules/codepage/bits/51936.js +257 -0
  515. package/node_modules/codepage/bits/51949.js +183 -0
  516. package/node_modules/codepage/bits/52936.js +7 -0
  517. package/node_modules/codepage/bits/54936.js +257 -0
  518. package/node_modules/codepage/bits/57002.js +39 -0
  519. package/node_modules/codepage/bits/57003.js +23 -0
  520. package/node_modules/codepage/bits/57004.js +7 -0
  521. package/node_modules/codepage/bits/57005.js +15 -0
  522. package/node_modules/codepage/bits/57006.js +23 -0
  523. package/node_modules/codepage/bits/57007.js +21 -0
  524. package/node_modules/codepage/bits/57008.js +17 -0
  525. package/node_modules/codepage/bits/57009.js +13 -0
  526. package/node_modules/codepage/bits/57010.js +15 -0
  527. package/node_modules/codepage/bits/57011.js +17 -0
  528. package/node_modules/codepage/bits/620.js +2 -0
  529. package/node_modules/codepage/bits/708.js +2 -0
  530. package/node_modules/codepage/bits/720.js +2 -0
  531. package/node_modules/codepage/bits/737.js +2 -0
  532. package/node_modules/codepage/bits/775.js +2 -0
  533. package/node_modules/codepage/bits/808.js +2 -0
  534. package/node_modules/codepage/bits/850.js +2 -0
  535. package/node_modules/codepage/bits/852.js +2 -0
  536. package/node_modules/codepage/bits/855.js +2 -0
  537. package/node_modules/codepage/bits/857.js +2 -0
  538. package/node_modules/codepage/bits/858.js +2 -0
  539. package/node_modules/codepage/bits/860.js +2 -0
  540. package/node_modules/codepage/bits/861.js +2 -0
  541. package/node_modules/codepage/bits/862.js +2 -0
  542. package/node_modules/codepage/bits/863.js +2 -0
  543. package/node_modules/codepage/bits/864.js +2 -0
  544. package/node_modules/codepage/bits/865.js +2 -0
  545. package/node_modules/codepage/bits/866.js +2 -0
  546. package/node_modules/codepage/bits/869.js +2 -0
  547. package/node_modules/codepage/bits/870.js +2 -0
  548. package/node_modules/codepage/bits/872.js +2 -0
  549. package/node_modules/codepage/bits/874.js +2 -0
  550. package/node_modules/codepage/bits/875.js +2 -0
  551. package/node_modules/codepage/bits/895.js +2 -0
  552. package/node_modules/codepage/bits/932.js +95 -0
  553. package/node_modules/codepage/bits/936.js +257 -0
  554. package/node_modules/codepage/bits/949.js +253 -0
  555. package/node_modules/codepage/bits/950.js +179 -0
  556. package/node_modules/codepage/cptable.js +4651 -0
  557. package/node_modules/codepage/cputils.js +528 -0
  558. package/node_modules/codepage/dist/cpexcel.full.js +1506 -0
  559. package/node_modules/codepage/dist/sbcs.full.js +639 -0
  560. package/node_modules/codepage/package.json +72 -0
  561. package/node_modules/codepage/types/index.d.ts +39 -0
  562. package/node_modules/codepage/types/tsconfig.json +15 -0
  563. package/node_modules/codepage/types/tslint.json +11 -0
  564. package/node_modules/crc-32/LICENSE +201 -0
  565. package/node_modules/crc-32/README.md +200 -0
  566. package/node_modules/crc-32/bin/crc32.njs +105 -0
  567. package/node_modules/crc-32/crc32.js +115 -0
  568. package/node_modules/crc-32/crc32c.js +115 -0
  569. package/node_modules/crc-32/package.json +43 -0
  570. package/node_modules/crc-32/types/index.d.ts +14 -0
  571. package/node_modules/crc-32/types/tsconfig.json +14 -0
  572. package/node_modules/crc-32/types/tslint.json +11 -0
  573. package/node_modules/css-select/LICENSE +11 -0
  574. package/node_modules/css-select/README.md +264 -0
  575. package/node_modules/css-select/lib/attributes.d.ts +7 -0
  576. package/node_modules/css-select/lib/attributes.d.ts.map +1 -0
  577. package/node_modules/css-select/lib/attributes.js +236 -0
  578. package/node_modules/css-select/lib/attributes.js.map +1 -0
  579. package/node_modules/css-select/lib/compile.d.ts +13 -0
  580. package/node_modules/css-select/lib/compile.d.ts.map +1 -0
  581. package/node_modules/css-select/lib/compile.js +151 -0
  582. package/node_modules/css-select/lib/compile.js.map +1 -0
  583. package/node_modules/css-select/lib/esm/attributes.d.ts +7 -0
  584. package/node_modules/css-select/lib/esm/attributes.d.ts.map +1 -0
  585. package/node_modules/css-select/lib/esm/attributes.js +222 -0
  586. package/node_modules/css-select/lib/esm/attributes.js.map +1 -0
  587. package/node_modules/css-select/lib/esm/compile.d.ts +13 -0
  588. package/node_modules/css-select/lib/esm/compile.d.ts.map +1 -0
  589. package/node_modules/css-select/lib/esm/compile.js +115 -0
  590. package/node_modules/css-select/lib/esm/compile.js.map +1 -0
  591. package/node_modules/css-select/lib/esm/general.d.ts +3 -0
  592. package/node_modules/css-select/lib/esm/general.d.ts.map +1 -0
  593. package/node_modules/css-select/lib/esm/general.js +144 -0
  594. package/node_modules/css-select/lib/esm/general.js.map +1 -0
  595. package/node_modules/css-select/lib/esm/helpers/cache.d.ts +12 -0
  596. package/node_modules/css-select/lib/esm/helpers/cache.d.ts.map +1 -0
  597. package/node_modules/css-select/lib/esm/helpers/cache.js +41 -0
  598. package/node_modules/css-select/lib/esm/helpers/cache.js.map +1 -0
  599. package/node_modules/css-select/lib/esm/helpers/querying.d.ts +24 -0
  600. package/node_modules/css-select/lib/esm/helpers/querying.d.ts.map +1 -0
  601. package/node_modules/css-select/lib/esm/helpers/querying.js +105 -0
  602. package/node_modules/css-select/lib/esm/helpers/querying.js.map +1 -0
  603. package/node_modules/css-select/lib/esm/helpers/selectors.d.ts +20 -0
  604. package/node_modules/css-select/lib/esm/helpers/selectors.d.ts.map +1 -0
  605. package/node_modules/css-select/lib/esm/helpers/selectors.js +103 -0
  606. package/node_modules/css-select/lib/esm/helpers/selectors.js.map +1 -0
  607. package/node_modules/css-select/lib/esm/index.d.ts +50 -0
  608. package/node_modules/css-select/lib/esm/index.d.ts.map +1 -0
  609. package/node_modules/css-select/lib/esm/index.js +115 -0
  610. package/node_modules/css-select/lib/esm/index.js.map +1 -0
  611. package/node_modules/css-select/lib/esm/package.json +1 -0
  612. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts +5 -0
  613. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts.map +1 -0
  614. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js +35 -0
  615. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js.map +1 -0
  616. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts +4 -0
  617. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts.map +1 -0
  618. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js +143 -0
  619. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js.map +1 -0
  620. package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts +8 -0
  621. package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts.map +1 -0
  622. package/node_modules/css-select/lib/esm/pseudo-selectors/index.js +40 -0
  623. package/node_modules/css-select/lib/esm/pseudo-selectors/index.js.map +1 -0
  624. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts +6 -0
  625. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts.map +1 -0
  626. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js +79 -0
  627. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js.map +1 -0
  628. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts +9 -0
  629. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts.map +1 -0
  630. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js +94 -0
  631. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js.map +1 -0
  632. package/node_modules/css-select/lib/esm/sort.d.ts +12 -0
  633. package/node_modules/css-select/lib/esm/sort.d.ts.map +1 -0
  634. package/node_modules/css-select/lib/esm/sort.js +79 -0
  635. package/node_modules/css-select/lib/esm/sort.js.map +1 -0
  636. package/node_modules/css-select/lib/esm/types.d.ts +167 -0
  637. package/node_modules/css-select/lib/esm/types.d.ts.map +1 -0
  638. package/node_modules/css-select/lib/esm/types.js +2 -0
  639. package/node_modules/css-select/lib/esm/types.js.map +1 -0
  640. package/node_modules/css-select/lib/general.d.ts +3 -0
  641. package/node_modules/css-select/lib/general.d.ts.map +1 -0
  642. package/node_modules/css-select/lib/general.js +148 -0
  643. package/node_modules/css-select/lib/general.js.map +1 -0
  644. package/node_modules/css-select/lib/helpers/cache.d.ts +12 -0
  645. package/node_modules/css-select/lib/helpers/cache.d.ts.map +1 -0
  646. package/node_modules/css-select/lib/helpers/cache.js +45 -0
  647. package/node_modules/css-select/lib/helpers/cache.js.map +1 -0
  648. package/node_modules/css-select/lib/helpers/querying.d.ts +24 -0
  649. package/node_modules/css-select/lib/helpers/querying.d.ts.map +1 -0
  650. package/node_modules/css-select/lib/helpers/querying.js +111 -0
  651. package/node_modules/css-select/lib/helpers/querying.js.map +1 -0
  652. package/node_modules/css-select/lib/helpers/selectors.d.ts +20 -0
  653. package/node_modules/css-select/lib/helpers/selectors.d.ts.map +1 -0
  654. package/node_modules/css-select/lib/helpers/selectors.js +111 -0
  655. package/node_modules/css-select/lib/helpers/selectors.js.map +1 -0
  656. package/node_modules/css-select/lib/index.d.ts +50 -0
  657. package/node_modules/css-select/lib/index.d.ts.map +1 -0
  658. package/node_modules/css-select/lib/index.js +154 -0
  659. package/node_modules/css-select/lib/index.js.map +1 -0
  660. package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts +5 -0
  661. package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts.map +1 -0
  662. package/node_modules/css-select/lib/pseudo-selectors/aliases.js +34 -0
  663. package/node_modules/css-select/lib/pseudo-selectors/aliases.js.map +1 -0
  664. package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts +4 -0
  665. package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts.map +1 -0
  666. package/node_modules/css-select/lib/pseudo-selectors/filters.js +157 -0
  667. package/node_modules/css-select/lib/pseudo-selectors/filters.js.map +1 -0
  668. package/node_modules/css-select/lib/pseudo-selectors/index.d.ts +8 -0
  669. package/node_modules/css-select/lib/pseudo-selectors/index.d.ts.map +1 -0
  670. package/node_modules/css-select/lib/pseudo-selectors/index.js +46 -0
  671. package/node_modules/css-select/lib/pseudo-selectors/index.js.map +1 -0
  672. package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts +6 -0
  673. package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts.map +1 -0
  674. package/node_modules/css-select/lib/pseudo-selectors/pseudos.js +93 -0
  675. package/node_modules/css-select/lib/pseudo-selectors/pseudos.js.map +1 -0
  676. package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts +9 -0
  677. package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts.map +1 -0
  678. package/node_modules/css-select/lib/pseudo-selectors/subselects.js +112 -0
  679. package/node_modules/css-select/lib/pseudo-selectors/subselects.js.map +1 -0
  680. package/node_modules/css-select/lib/sort.d.ts +12 -0
  681. package/node_modules/css-select/lib/sort.d.ts.map +1 -0
  682. package/node_modules/css-select/lib/sort.js +84 -0
  683. package/node_modules/css-select/lib/sort.js.map +1 -0
  684. package/node_modules/css-select/lib/types.d.ts +167 -0
  685. package/node_modules/css-select/lib/types.d.ts.map +1 -0
  686. package/node_modules/css-select/lib/types.js +3 -0
  687. package/node_modules/css-select/lib/types.js.map +1 -0
  688. package/node_modules/css-select/package.json +81 -0
  689. package/node_modules/css-what/LICENSE +11 -0
  690. package/node_modules/css-what/lib/commonjs/index.d.ts +4 -0
  691. package/node_modules/css-what/lib/commonjs/index.d.ts.map +1 -0
  692. package/node_modules/css-what/lib/commonjs/index.js +23 -0
  693. package/node_modules/css-what/lib/commonjs/parse.d.ts +20 -0
  694. package/node_modules/css-what/lib/commonjs/parse.d.ts.map +1 -0
  695. package/node_modules/css-what/lib/commonjs/parse.js +425 -0
  696. package/node_modules/css-what/lib/commonjs/stringify.d.ts +8 -0
  697. package/node_modules/css-what/lib/commonjs/stringify.d.ts.map +1 -0
  698. package/node_modules/css-what/lib/commonjs/stringify.js +138 -0
  699. package/node_modules/css-what/lib/commonjs/types.d.ts +70 -0
  700. package/node_modules/css-what/lib/commonjs/types.d.ts.map +1 -0
  701. package/node_modules/css-what/lib/commonjs/types.js +42 -0
  702. package/node_modules/css-what/lib/es/index.d.ts +4 -0
  703. package/node_modules/css-what/lib/es/index.d.ts.map +1 -0
  704. package/node_modules/css-what/lib/es/index.js +3 -0
  705. package/node_modules/css-what/lib/es/parse.d.ts +20 -0
  706. package/node_modules/css-what/lib/es/parse.d.ts.map +1 -0
  707. package/node_modules/css-what/lib/es/parse.js +420 -0
  708. package/node_modules/css-what/lib/es/stringify.d.ts +8 -0
  709. package/node_modules/css-what/lib/es/stringify.d.ts.map +1 -0
  710. package/node_modules/css-what/lib/es/stringify.js +126 -0
  711. package/node_modules/css-what/lib/es/types.d.ts +70 -0
  712. package/node_modules/css-what/lib/es/types.d.ts.map +1 -0
  713. package/node_modules/css-what/lib/es/types.js +39 -0
  714. package/node_modules/css-what/package.json +59 -0
  715. package/node_modules/css-what/readme.md +69 -0
  716. package/node_modules/dom-serializer/LICENSE +11 -0
  717. package/node_modules/dom-serializer/README.md +109 -0
  718. package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts +3 -0
  719. package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts.map +1 -0
  720. package/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
  721. package/node_modules/dom-serializer/lib/esm/index.d.ts +52 -0
  722. package/node_modules/dom-serializer/lib/esm/index.d.ts.map +1 -0
  723. package/node_modules/dom-serializer/lib/esm/index.js +190 -0
  724. package/node_modules/dom-serializer/lib/esm/package.json +1 -0
  725. package/node_modules/dom-serializer/lib/foreignNames.d.ts +3 -0
  726. package/node_modules/dom-serializer/lib/foreignNames.d.ts.map +1 -0
  727. package/node_modules/dom-serializer/lib/foreignNames.js +103 -0
  728. package/node_modules/dom-serializer/lib/index.d.ts +52 -0
  729. package/node_modules/dom-serializer/lib/index.d.ts.map +1 -0
  730. package/node_modules/dom-serializer/lib/index.js +229 -0
  731. package/node_modules/dom-serializer/package.json +69 -0
  732. package/node_modules/domelementtype/LICENSE +11 -0
  733. package/node_modules/domelementtype/lib/esm/index.d.ts +48 -0
  734. package/node_modules/domelementtype/lib/esm/index.d.ts.map +1 -0
  735. package/node_modules/domelementtype/lib/esm/index.js +51 -0
  736. package/node_modules/domelementtype/lib/esm/package.json +1 -0
  737. package/node_modules/domelementtype/lib/index.d.ts +48 -0
  738. package/node_modules/domelementtype/lib/index.d.ts.map +1 -0
  739. package/node_modules/domelementtype/lib/index.js +55 -0
  740. package/node_modules/domelementtype/package.json +54 -0
  741. package/node_modules/domelementtype/readme.md +1 -0
  742. package/node_modules/domhandler/LICENSE +11 -0
  743. package/node_modules/domhandler/lib/esm/index.d.ts +76 -0
  744. package/node_modules/domhandler/lib/esm/index.d.ts.map +1 -0
  745. package/node_modules/domhandler/lib/esm/index.js +146 -0
  746. package/node_modules/domhandler/lib/esm/node.d.ts +245 -0
  747. package/node_modules/domhandler/lib/esm/node.d.ts.map +1 -0
  748. package/node_modules/domhandler/lib/esm/node.js +338 -0
  749. package/node_modules/domhandler/lib/esm/package.json +1 -0
  750. package/node_modules/domhandler/lib/index.d.ts +76 -0
  751. package/node_modules/domhandler/lib/index.d.ts.map +1 -0
  752. package/node_modules/domhandler/lib/index.js +165 -0
  753. package/node_modules/domhandler/lib/node.d.ts +245 -0
  754. package/node_modules/domhandler/lib/node.d.ts.map +1 -0
  755. package/node_modules/domhandler/lib/node.js +474 -0
  756. package/node_modules/domhandler/package.json +73 -0
  757. package/node_modules/domhandler/readme.md +92 -0
  758. package/node_modules/domutils/LICENSE +11 -0
  759. package/node_modules/domutils/lib/esm/feeds.d.ts +71 -0
  760. package/node_modules/domutils/lib/esm/feeds.d.ts.map +1 -0
  761. package/node_modules/domutils/lib/esm/feeds.js +183 -0
  762. package/node_modules/domutils/lib/esm/feeds.js.map +1 -0
  763. package/node_modules/domutils/lib/esm/helpers.d.ts +59 -0
  764. package/node_modules/domutils/lib/esm/helpers.d.ts.map +1 -0
  765. package/node_modules/domutils/lib/esm/helpers.js +136 -0
  766. package/node_modules/domutils/lib/esm/helpers.js.map +1 -0
  767. package/node_modules/domutils/lib/esm/index.d.ts +10 -0
  768. package/node_modules/domutils/lib/esm/index.d.ts.map +1 -0
  769. package/node_modules/domutils/lib/esm/index.js +10 -0
  770. package/node_modules/domutils/lib/esm/index.js.map +1 -0
  771. package/node_modules/domutils/lib/esm/legacy.d.ts +79 -0
  772. package/node_modules/domutils/lib/esm/legacy.d.ts.map +1 -0
  773. package/node_modules/domutils/lib/esm/legacy.js +152 -0
  774. package/node_modules/domutils/lib/esm/legacy.js.map +1 -0
  775. package/node_modules/domutils/lib/esm/manipulation.d.ts +49 -0
  776. package/node_modules/domutils/lib/esm/manipulation.d.ts.map +1 -0
  777. package/node_modules/domutils/lib/esm/manipulation.js +134 -0
  778. package/node_modules/domutils/lib/esm/manipulation.js.map +1 -0
  779. package/node_modules/domutils/lib/esm/package.json +1 -0
  780. package/node_modules/domutils/lib/esm/querying.d.ts +64 -0
  781. package/node_modules/domutils/lib/esm/querying.d.ts.map +1 -0
  782. package/node_modules/domutils/lib/esm/querying.js +142 -0
  783. package/node_modules/domutils/lib/esm/querying.js.map +1 -0
  784. package/node_modules/domutils/lib/esm/stringify.d.ts +46 -0
  785. package/node_modules/domutils/lib/esm/stringify.d.ts.map +1 -0
  786. package/node_modules/domutils/lib/esm/stringify.js +81 -0
  787. package/node_modules/domutils/lib/esm/stringify.js.map +1 -0
  788. package/node_modules/domutils/lib/esm/traversal.d.ts +67 -0
  789. package/node_modules/domutils/lib/esm/traversal.d.ts.map +1 -0
  790. package/node_modules/domutils/lib/esm/traversal.js +112 -0
  791. package/node_modules/domutils/lib/esm/traversal.js.map +1 -0
  792. package/node_modules/domutils/lib/feeds.d.ts +71 -0
  793. package/node_modules/domutils/lib/feeds.d.ts.map +1 -0
  794. package/node_modules/domutils/lib/feeds.js +190 -0
  795. package/node_modules/domutils/lib/feeds.js.map +1 -0
  796. package/node_modules/domutils/lib/helpers.d.ts +59 -0
  797. package/node_modules/domutils/lib/helpers.d.ts.map +1 -0
  798. package/node_modules/domutils/lib/helpers.js +142 -0
  799. package/node_modules/domutils/lib/helpers.js.map +1 -0
  800. package/node_modules/domutils/lib/index.d.ts +10 -0
  801. package/node_modules/domutils/lib/index.d.ts.map +1 -0
  802. package/node_modules/domutils/lib/index.js +33 -0
  803. package/node_modules/domutils/lib/index.js.map +1 -0
  804. package/node_modules/domutils/lib/legacy.d.ts +79 -0
  805. package/node_modules/domutils/lib/legacy.d.ts.map +1 -0
  806. package/node_modules/domutils/lib/legacy.js +168 -0
  807. package/node_modules/domutils/lib/legacy.js.map +1 -0
  808. package/node_modules/domutils/lib/manipulation.d.ts +49 -0
  809. package/node_modules/domutils/lib/manipulation.d.ts.map +1 -0
  810. package/node_modules/domutils/lib/manipulation.js +142 -0
  811. package/node_modules/domutils/lib/manipulation.js.map +1 -0
  812. package/node_modules/domutils/lib/querying.d.ts +64 -0
  813. package/node_modules/domutils/lib/querying.d.ts.map +1 -0
  814. package/node_modules/domutils/lib/querying.js +155 -0
  815. package/node_modules/domutils/lib/querying.js.map +1 -0
  816. package/node_modules/domutils/lib/stringify.d.ts +46 -0
  817. package/node_modules/domutils/lib/stringify.d.ts.map +1 -0
  818. package/node_modules/domutils/lib/stringify.js +91 -0
  819. package/node_modules/domutils/lib/stringify.js.map +1 -0
  820. package/node_modules/domutils/lib/traversal.d.ts +67 -0
  821. package/node_modules/domutils/lib/traversal.d.ts.map +1 -0
  822. package/node_modules/domutils/lib/traversal.js +125 -0
  823. package/node_modules/domutils/lib/traversal.js.map +1 -0
  824. package/node_modules/domutils/package.json +79 -0
  825. package/node_modules/domutils/readme.md +31 -0
  826. package/node_modules/encoding-sniffer/LICENSE +18 -0
  827. package/node_modules/encoding-sniffer/README.md +68 -0
  828. package/node_modules/encoding-sniffer/dist/commonjs/index.d.ts +31 -0
  829. package/node_modules/encoding-sniffer/dist/commonjs/index.d.ts.map +1 -0
  830. package/node_modules/encoding-sniffer/dist/commonjs/index.js +72 -0
  831. package/node_modules/encoding-sniffer/dist/commonjs/index.js.map +1 -0
  832. package/node_modules/encoding-sniffer/dist/commonjs/package.json +3 -0
  833. package/node_modules/encoding-sniffer/dist/commonjs/sniffer.d.ts +148 -0
  834. package/node_modules/encoding-sniffer/dist/commonjs/sniffer.d.ts.map +1 -0
  835. package/node_modules/encoding-sniffer/dist/commonjs/sniffer.js +990 -0
  836. package/node_modules/encoding-sniffer/dist/commonjs/sniffer.js.map +1 -0
  837. package/node_modules/encoding-sniffer/dist/esm/index.d.ts +31 -0
  838. package/node_modules/encoding-sniffer/dist/esm/index.d.ts.map +1 -0
  839. package/node_modules/encoding-sniffer/dist/esm/index.js +63 -0
  840. package/node_modules/encoding-sniffer/dist/esm/index.js.map +1 -0
  841. package/node_modules/encoding-sniffer/dist/esm/package.json +3 -0
  842. package/node_modules/encoding-sniffer/dist/esm/sniffer.d.ts +148 -0
  843. package/node_modules/encoding-sniffer/dist/esm/sniffer.d.ts.map +1 -0
  844. package/node_modules/encoding-sniffer/dist/esm/sniffer.js +985 -0
  845. package/node_modules/encoding-sniffer/dist/esm/sniffer.js.map +1 -0
  846. package/node_modules/encoding-sniffer/package.json +94 -0
  847. package/node_modules/encoding-sniffer/sniffer.d.ts +2 -0
  848. package/node_modules/encoding-sniffer/sniffer.js +3 -0
  849. package/node_modules/entities/LICENSE +11 -0
  850. package/node_modules/entities/lib/decode.d.ts +211 -0
  851. package/node_modules/entities/lib/decode.d.ts.map +1 -0
  852. package/node_modules/entities/lib/decode.js +536 -0
  853. package/node_modules/entities/lib/decode.js.map +1 -0
  854. package/node_modules/entities/lib/decode_codepoint.d.ts +19 -0
  855. package/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
  856. package/node_modules/entities/lib/decode_codepoint.js +76 -0
  857. package/node_modules/entities/lib/decode_codepoint.js.map +1 -0
  858. package/node_modules/entities/lib/encode.d.ts +22 -0
  859. package/node_modules/entities/lib/encode.d.ts.map +1 -0
  860. package/node_modules/entities/lib/encode.js +77 -0
  861. package/node_modules/entities/lib/encode.js.map +1 -0
  862. package/node_modules/entities/lib/escape.d.ts +43 -0
  863. package/node_modules/entities/lib/escape.d.ts.map +1 -0
  864. package/node_modules/entities/lib/escape.js +122 -0
  865. package/node_modules/entities/lib/escape.js.map +1 -0
  866. package/node_modules/entities/lib/esm/decode.d.ts +211 -0
  867. package/node_modules/entities/lib/esm/decode.d.ts.map +1 -0
  868. package/node_modules/entities/lib/esm/decode.js +496 -0
  869. package/node_modules/entities/lib/esm/decode.js.map +1 -0
  870. package/node_modules/entities/lib/esm/decode_codepoint.d.ts +19 -0
  871. package/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +1 -0
  872. package/node_modules/entities/lib/esm/decode_codepoint.js +71 -0
  873. package/node_modules/entities/lib/esm/decode_codepoint.js.map +1 -0
  874. package/node_modules/entities/lib/esm/encode.d.ts +22 -0
  875. package/node_modules/entities/lib/esm/encode.d.ts.map +1 -0
  876. package/node_modules/entities/lib/esm/encode.js +69 -0
  877. package/node_modules/entities/lib/esm/encode.js.map +1 -0
  878. package/node_modules/entities/lib/esm/escape.d.ts +43 -0
  879. package/node_modules/entities/lib/esm/escape.d.ts.map +1 -0
  880. package/node_modules/entities/lib/esm/escape.js +116 -0
  881. package/node_modules/entities/lib/esm/escape.js.map +1 -0
  882. package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +3 -0
  883. package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +1 -0
  884. package/node_modules/entities/lib/esm/generated/decode-data-html.js +7 -0
  885. package/node_modules/entities/lib/esm/generated/decode-data-html.js.map +1 -0
  886. package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +3 -0
  887. package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +1 -0
  888. package/node_modules/entities/lib/esm/generated/decode-data-xml.js +7 -0
  889. package/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +1 -0
  890. package/node_modules/entities/lib/esm/generated/encode-html.d.ts +8 -0
  891. package/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +1 -0
  892. package/node_modules/entities/lib/esm/generated/encode-html.js +10 -0
  893. package/node_modules/entities/lib/esm/generated/encode-html.js.map +1 -0
  894. package/node_modules/entities/lib/esm/index.d.ts +96 -0
  895. package/node_modules/entities/lib/esm/index.d.ts.map +1 -0
  896. package/node_modules/entities/lib/esm/index.js +99 -0
  897. package/node_modules/entities/lib/esm/index.js.map +1 -0
  898. package/node_modules/entities/lib/esm/package.json +1 -0
  899. package/node_modules/entities/lib/generated/decode-data-html.d.ts +3 -0
  900. package/node_modules/entities/lib/generated/decode-data-html.d.ts.map +1 -0
  901. package/node_modules/entities/lib/generated/decode-data-html.js +9 -0
  902. package/node_modules/entities/lib/generated/decode-data-html.js.map +1 -0
  903. package/node_modules/entities/lib/generated/decode-data-xml.d.ts +3 -0
  904. package/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +1 -0
  905. package/node_modules/entities/lib/generated/decode-data-xml.js +9 -0
  906. package/node_modules/entities/lib/generated/decode-data-xml.js.map +1 -0
  907. package/node_modules/entities/lib/generated/encode-html.d.ts +8 -0
  908. package/node_modules/entities/lib/generated/encode-html.d.ts.map +1 -0
  909. package/node_modules/entities/lib/generated/encode-html.js +12 -0
  910. package/node_modules/entities/lib/generated/encode-html.js.map +1 -0
  911. package/node_modules/entities/lib/index.d.ts +96 -0
  912. package/node_modules/entities/lib/index.d.ts.map +1 -0
  913. package/node_modules/entities/lib/index.js +126 -0
  914. package/node_modules/entities/lib/index.js.map +1 -0
  915. package/node_modules/entities/package.json +90 -0
  916. package/node_modules/entities/readme.md +122 -0
  917. package/node_modules/enumify/.npmignore +2 -0
  918. package/node_modules/enumify/README.md +93 -0
  919. package/node_modules/enumify/lib/enumify.js +209 -0
  920. package/node_modules/enumify/package.json +31 -0
  921. package/node_modules/file-type/browser.d.ts +50 -0
  922. package/node_modules/file-type/browser.js +49 -0
  923. package/node_modules/file-type/core.d.ts +386 -0
  924. package/node_modules/file-type/core.js +1465 -0
  925. package/node_modules/file-type/index.d.ts +27 -0
  926. package/node_modules/file-type/index.js +32 -0
  927. package/node_modules/file-type/license +9 -0
  928. package/node_modules/file-type/package.json +215 -0
  929. package/node_modules/file-type/readme.md +470 -0
  930. package/node_modules/file-type/supported.js +279 -0
  931. package/node_modules/file-type/util.js +40 -0
  932. package/node_modules/htmlparser2/LICENSE +18 -0
  933. package/node_modules/htmlparser2/README.md +171 -0
  934. package/node_modules/htmlparser2/WritableStream.js +3 -0
  935. package/node_modules/htmlparser2/dist/commonjs/Parser.d.ts +198 -0
  936. package/node_modules/htmlparser2/dist/commonjs/Parser.d.ts.map +1 -0
  937. package/node_modules/htmlparser2/dist/commonjs/Parser.js +527 -0
  938. package/node_modules/htmlparser2/dist/commonjs/Parser.js.map +1 -0
  939. package/node_modules/htmlparser2/dist/commonjs/Tokenizer.d.ts +126 -0
  940. package/node_modules/htmlparser2/dist/commonjs/Tokenizer.d.ts.map +1 -0
  941. package/node_modules/htmlparser2/dist/commonjs/Tokenizer.js +805 -0
  942. package/node_modules/htmlparser2/dist/commonjs/Tokenizer.js.map +1 -0
  943. package/node_modules/htmlparser2/dist/commonjs/WritableStream.d.ts +15 -0
  944. package/node_modules/htmlparser2/dist/commonjs/WritableStream.d.ts.map +1 -0
  945. package/node_modules/htmlparser2/dist/commonjs/WritableStream.js +36 -0
  946. package/node_modules/htmlparser2/dist/commonjs/WritableStream.js.map +1 -0
  947. package/node_modules/htmlparser2/dist/commonjs/index.d.ts +54 -0
  948. package/node_modules/htmlparser2/dist/commonjs/index.d.ts.map +1 -0
  949. package/node_modules/htmlparser2/dist/commonjs/index.js +123 -0
  950. package/node_modules/htmlparser2/dist/commonjs/index.js.map +1 -0
  951. package/node_modules/htmlparser2/dist/commonjs/package.json +3 -0
  952. package/node_modules/htmlparser2/dist/esm/Parser.d.ts +198 -0
  953. package/node_modules/htmlparser2/dist/esm/Parser.d.ts.map +1 -0
  954. package/node_modules/htmlparser2/dist/esm/Parser.js +490 -0
  955. package/node_modules/htmlparser2/dist/esm/Parser.js.map +1 -0
  956. package/node_modules/htmlparser2/dist/esm/Tokenizer.d.ts +126 -0
  957. package/node_modules/htmlparser2/dist/esm/Tokenizer.d.ts.map +1 -0
  958. package/node_modules/htmlparser2/dist/esm/Tokenizer.js +801 -0
  959. package/node_modules/htmlparser2/dist/esm/Tokenizer.js.map +1 -0
  960. package/node_modules/htmlparser2/dist/esm/WritableStream.d.ts +15 -0
  961. package/node_modules/htmlparser2/dist/esm/WritableStream.d.ts.map +1 -0
  962. package/node_modules/htmlparser2/dist/esm/WritableStream.js +32 -0
  963. package/node_modules/htmlparser2/dist/esm/WritableStream.js.map +1 -0
  964. package/node_modules/htmlparser2/dist/esm/index.d.ts +54 -0
  965. package/node_modules/htmlparser2/dist/esm/index.d.ts.map +1 -0
  966. package/node_modules/htmlparser2/dist/esm/index.js +74 -0
  967. package/node_modules/htmlparser2/dist/esm/index.js.map +1 -0
  968. package/node_modules/htmlparser2/dist/esm/package.json +3 -0
  969. package/node_modules/htmlparser2/node_modules/entities/LICENSE +11 -0
  970. package/node_modules/htmlparser2/node_modules/entities/decode.d.ts +3 -0
  971. package/node_modules/htmlparser2/node_modules/entities/decode.js +3 -0
  972. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.d.ts +19 -0
  973. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.d.ts.map +1 -0
  974. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
  975. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.js.map +1 -0
  976. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.d.ts +205 -0
  977. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.d.ts.map +1 -0
  978. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.js +568 -0
  979. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.js.map +1 -0
  980. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.d.ts +22 -0
  981. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.d.ts.map +1 -0
  982. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.js +92 -0
  983. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.js.map +1 -0
  984. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.d.ts +46 -0
  985. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.d.ts.map +1 -0
  986. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.js +138 -0
  987. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.js.map +1 -0
  988. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts +2 -0
  989. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
  990. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.js +7 -0
  991. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.js.map +1 -0
  992. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts +2 -0
  993. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
  994. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +7 -0
  995. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.js.map +1 -0
  996. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.d.ts +3 -0
  997. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.d.ts.map +1 -0
  998. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.js +14 -0
  999. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.js.map +1 -0
  1000. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.d.ts +96 -0
  1001. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.d.ts.map +1 -0
  1002. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.js +131 -0
  1003. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.js.map +1 -0
  1004. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.d.ts +17 -0
  1005. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.d.ts.map +1 -0
  1006. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js +21 -0
  1007. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js.map +1 -0
  1008. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.d.ts +2 -0
  1009. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.d.ts.map +1 -0
  1010. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.js +31 -0
  1011. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.js.map +1 -0
  1012. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.d.ts +32 -0
  1013. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.d.ts.map +1 -0
  1014. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.js +94 -0
  1015. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.js.map +1 -0
  1016. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/package.json +3 -0
  1017. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.d.ts +19 -0
  1018. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.d.ts.map +1 -0
  1019. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.js +72 -0
  1020. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.js.map +1 -0
  1021. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.d.ts +205 -0
  1022. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.d.ts.map +1 -0
  1023. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.js +554 -0
  1024. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.js.map +1 -0
  1025. package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.d.ts +22 -0
  1026. package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.d.ts.map +1 -0
  1027. package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.js +88 -0
  1028. package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.js.map +1 -0
  1029. package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.d.ts +46 -0
  1030. package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.d.ts.map +1 -0
  1031. package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.js +134 -0
  1032. package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.js.map +1 -0
  1033. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.d.ts +2 -0
  1034. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.d.ts.map +1 -0
  1035. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.js +4 -0
  1036. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.js.map +1 -0
  1037. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts +2 -0
  1038. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
  1039. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.js +4 -0
  1040. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.js.map +1 -0
  1041. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.d.ts +3 -0
  1042. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.d.ts.map +1 -0
  1043. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.js +11 -0
  1044. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.js.map +1 -0
  1045. package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.d.ts +96 -0
  1046. package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.d.ts.map +1 -0
  1047. package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.js +107 -0
  1048. package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.js.map +1 -0
  1049. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.d.ts +17 -0
  1050. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.d.ts.map +1 -0
  1051. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.js +18 -0
  1052. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.js.map +1 -0
  1053. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.d.ts +2 -0
  1054. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.d.ts.map +1 -0
  1055. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.js +28 -0
  1056. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.js.map +1 -0
  1057. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.d.ts +32 -0
  1058. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.d.ts.map +1 -0
  1059. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.js +91 -0
  1060. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.js.map +1 -0
  1061. package/node_modules/htmlparser2/node_modules/entities/dist/esm/package.json +3 -0
  1062. package/node_modules/htmlparser2/node_modules/entities/escape.d.ts +3 -0
  1063. package/node_modules/htmlparser2/node_modules/entities/escape.js +3 -0
  1064. package/node_modules/htmlparser2/node_modules/entities/package.json +120 -0
  1065. package/node_modules/htmlparser2/node_modules/entities/readme.md +143 -0
  1066. package/node_modules/htmlparser2/node_modules/entities/src/decode-codepoint.ts +81 -0
  1067. package/node_modules/htmlparser2/node_modules/entities/src/decode.ts +685 -0
  1068. package/node_modules/htmlparser2/node_modules/entities/src/encode.ts +93 -0
  1069. package/node_modules/htmlparser2/node_modules/entities/src/escape.ts +161 -0
  1070. package/node_modules/htmlparser2/node_modules/entities/src/generated/.eslintrc.json +10 -0
  1071. package/node_modules/htmlparser2/node_modules/entities/src/generated/decode-data-html.ts +6 -0
  1072. package/node_modules/htmlparser2/node_modules/entities/src/generated/decode-data-xml.ts +6 -0
  1073. package/node_modules/htmlparser2/node_modules/entities/src/generated/encode-html.ts +17 -0
  1074. package/node_modules/htmlparser2/node_modules/entities/src/index.ts +187 -0
  1075. package/node_modules/htmlparser2/node_modules/entities/src/internal/bin-trie-flags.ts +16 -0
  1076. package/node_modules/htmlparser2/node_modules/entities/src/internal/decode-shared.ts +30 -0
  1077. package/node_modules/htmlparser2/node_modules/entities/src/internal/encode-shared.ts +121 -0
  1078. package/node_modules/htmlparser2/package.json +113 -0
  1079. package/node_modules/htmlparser2/src/Parser.ts +663 -0
  1080. package/node_modules/htmlparser2/src/Tokenizer.ts +877 -0
  1081. package/node_modules/htmlparser2/src/WritableStream.ts +43 -0
  1082. package/node_modules/htmlparser2/src/index.ts +115 -0
  1083. package/node_modules/iconv-lite/.github/dependabot.yml +11 -0
  1084. package/node_modules/iconv-lite/.idea/codeStyles/Project.xml +47 -0
  1085. package/node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml +5 -0
  1086. package/node_modules/iconv-lite/.idea/iconv-lite.iml +12 -0
  1087. package/node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml +6 -0
  1088. package/node_modules/iconv-lite/.idea/modules.xml +8 -0
  1089. package/node_modules/iconv-lite/.idea/vcs.xml +6 -0
  1090. package/node_modules/iconv-lite/Changelog.md +212 -0
  1091. package/node_modules/iconv-lite/LICENSE +21 -0
  1092. package/node_modules/iconv-lite/README.md +130 -0
  1093. package/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
  1094. package/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
  1095. package/node_modules/iconv-lite/encodings/index.js +23 -0
  1096. package/node_modules/iconv-lite/encodings/internal.js +198 -0
  1097. package/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  1098. package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  1099. package/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
  1100. package/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  1101. package/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  1102. package/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  1103. package/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  1104. package/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  1105. package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  1106. package/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  1107. package/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  1108. package/node_modules/iconv-lite/encodings/utf16.js +197 -0
  1109. package/node_modules/iconv-lite/encodings/utf32.js +319 -0
  1110. package/node_modules/iconv-lite/encodings/utf7.js +290 -0
  1111. package/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  1112. package/node_modules/iconv-lite/lib/index.d.ts +41 -0
  1113. package/node_modules/iconv-lite/lib/index.js +180 -0
  1114. package/node_modules/iconv-lite/lib/streams.js +109 -0
  1115. package/node_modules/iconv-lite/package.json +44 -0
  1116. package/node_modules/ieee754/LICENSE +11 -0
  1117. package/node_modules/ieee754/README.md +51 -0
  1118. package/node_modules/ieee754/index.d.ts +10 -0
  1119. package/node_modules/ieee754/index.js +85 -0
  1120. package/node_modules/ieee754/package.json +52 -0
  1121. package/node_modules/image-size/LICENSE +9 -0
  1122. package/node_modules/image-size/Readme.md +198 -0
  1123. package/node_modules/image-size/bin/image-size.js +48 -0
  1124. package/node_modules/image-size/dist/detector.cjs +964 -0
  1125. package/node_modules/image-size/dist/detector.d.mts +6 -0
  1126. package/node_modules/image-size/dist/detector.d.ts +6 -0
  1127. package/node_modules/image-size/dist/detector.mjs +962 -0
  1128. package/node_modules/image-size/dist/fromFile.cjs +1056 -0
  1129. package/node_modules/image-size/dist/fromFile.d.mts +9 -0
  1130. package/node_modules/image-size/dist/fromFile.d.ts +9 -0
  1131. package/node_modules/image-size/dist/fromFile.mjs +1032 -0
  1132. package/node_modules/image-size/dist/index.cjs +998 -0
  1133. package/node_modules/image-size/dist/index.d.mts +3 -0
  1134. package/node_modules/image-size/dist/index.d.ts +3 -0
  1135. package/node_modules/image-size/dist/index.mjs +991 -0
  1136. package/node_modules/image-size/dist/lookup.cjs +994 -0
  1137. package/node_modules/image-size/dist/lookup.d.mts +13 -0
  1138. package/node_modules/image-size/dist/lookup.d.ts +13 -0
  1139. package/node_modules/image-size/dist/lookup.mjs +991 -0
  1140. package/node_modules/image-size/dist/types/bmp.cjs +19 -0
  1141. package/node_modules/image-size/dist/types/bmp.d.mts +5 -0
  1142. package/node_modules/image-size/dist/types/bmp.d.ts +5 -0
  1143. package/node_modules/image-size/dist/types/bmp.mjs +17 -0
  1144. package/node_modules/image-size/dist/types/cur.cjs +60 -0
  1145. package/node_modules/image-size/dist/types/cur.d.mts +5 -0
  1146. package/node_modules/image-size/dist/types/cur.d.ts +5 -0
  1147. package/node_modules/image-size/dist/types/cur.mjs +58 -0
  1148. package/node_modules/image-size/dist/types/dds.cjs +17 -0
  1149. package/node_modules/image-size/dist/types/dds.d.mts +5 -0
  1150. package/node_modules/image-size/dist/types/dds.d.ts +5 -0
  1151. package/node_modules/image-size/dist/types/dds.mjs +15 -0
  1152. package/node_modules/image-size/dist/types/gif.cjs +19 -0
  1153. package/node_modules/image-size/dist/types/gif.d.mts +5 -0
  1154. package/node_modules/image-size/dist/types/gif.d.ts +5 -0
  1155. package/node_modules/image-size/dist/types/gif.mjs +17 -0
  1156. package/node_modules/image-size/dist/types/heif.cjs +86 -0
  1157. package/node_modules/image-size/dist/types/heif.d.mts +5 -0
  1158. package/node_modules/image-size/dist/types/heif.d.ts +5 -0
  1159. package/node_modules/image-size/dist/types/heif.mjs +84 -0
  1160. package/node_modules/image-size/dist/types/icns.cjs +90 -0
  1161. package/node_modules/image-size/dist/types/icns.d.mts +5 -0
  1162. package/node_modules/image-size/dist/types/icns.d.ts +5 -0
  1163. package/node_modules/image-size/dist/types/icns.mjs +88 -0
  1164. package/node_modules/image-size/dist/types/ico.cjs +47 -0
  1165. package/node_modules/image-size/dist/types/ico.d.mts +5 -0
  1166. package/node_modules/image-size/dist/types/ico.d.ts +5 -0
  1167. package/node_modules/image-size/dist/types/ico.mjs +45 -0
  1168. package/node_modules/image-size/dist/types/index.cjs +942 -0
  1169. package/node_modules/image-size/dist/types/index.d.mts +7 -0
  1170. package/node_modules/image-size/dist/types/index.d.ts +7 -0
  1171. package/node_modules/image-size/dist/types/index.mjs +939 -0
  1172. package/node_modules/image-size/dist/types/interface.cjs +2 -0
  1173. package/node_modules/image-size/dist/types/interface.d.mts +15 -0
  1174. package/node_modules/image-size/dist/types/interface.d.ts +15 -0
  1175. package/node_modules/image-size/dist/types/interface.mjs +1 -0
  1176. package/node_modules/image-size/dist/types/j2c.cjs +18 -0
  1177. package/node_modules/image-size/dist/types/j2c.d.mts +5 -0
  1178. package/node_modules/image-size/dist/types/j2c.d.ts +5 -0
  1179. package/node_modules/image-size/dist/types/j2c.mjs +16 -0
  1180. package/node_modules/image-size/dist/types/jp2.cjs +50 -0
  1181. package/node_modules/image-size/dist/types/jp2.d.mts +5 -0
  1182. package/node_modules/image-size/dist/types/jp2.d.ts +5 -0
  1183. package/node_modules/image-size/dist/types/jp2.mjs +48 -0
  1184. package/node_modules/image-size/dist/types/jpg.cjs +118 -0
  1185. package/node_modules/image-size/dist/types/jpg.d.mts +5 -0
  1186. package/node_modules/image-size/dist/types/jpg.d.ts +5 -0
  1187. package/node_modules/image-size/dist/types/jpg.mjs +116 -0
  1188. package/node_modules/image-size/dist/types/jxl-stream.cjs +80 -0
  1189. package/node_modules/image-size/dist/types/jxl-stream.d.mts +5 -0
  1190. package/node_modules/image-size/dist/types/jxl-stream.d.ts +5 -0
  1191. package/node_modules/image-size/dist/types/jxl-stream.mjs +78 -0
  1192. package/node_modules/image-size/dist/types/jxl.cjs +155 -0
  1193. package/node_modules/image-size/dist/types/jxl.d.mts +5 -0
  1194. package/node_modules/image-size/dist/types/jxl.d.ts +5 -0
  1195. package/node_modules/image-size/dist/types/jxl.mjs +153 -0
  1196. package/node_modules/image-size/dist/types/ktx.cjs +26 -0
  1197. package/node_modules/image-size/dist/types/ktx.d.mts +5 -0
  1198. package/node_modules/image-size/dist/types/ktx.d.ts +5 -0
  1199. package/node_modules/image-size/dist/types/ktx.mjs +24 -0
  1200. package/node_modules/image-size/dist/types/png.cjs +41 -0
  1201. package/node_modules/image-size/dist/types/png.d.mts +5 -0
  1202. package/node_modules/image-size/dist/types/png.d.ts +5 -0
  1203. package/node_modules/image-size/dist/types/png.mjs +39 -0
  1204. package/node_modules/image-size/dist/types/pnm.cjs +72 -0
  1205. package/node_modules/image-size/dist/types/pnm.d.mts +5 -0
  1206. package/node_modules/image-size/dist/types/pnm.d.ts +5 -0
  1207. package/node_modules/image-size/dist/types/pnm.mjs +70 -0
  1208. package/node_modules/image-size/dist/types/psd.cjs +18 -0
  1209. package/node_modules/image-size/dist/types/psd.d.mts +5 -0
  1210. package/node_modules/image-size/dist/types/psd.d.ts +5 -0
  1211. package/node_modules/image-size/dist/types/psd.mjs +16 -0
  1212. package/node_modules/image-size/dist/types/svg.cjs +97 -0
  1213. package/node_modules/image-size/dist/types/svg.d.mts +5 -0
  1214. package/node_modules/image-size/dist/types/svg.d.ts +5 -0
  1215. package/node_modules/image-size/dist/types/svg.mjs +95 -0
  1216. package/node_modules/image-size/dist/types/tga.cjs +21 -0
  1217. package/node_modules/image-size/dist/types/tga.d.mts +5 -0
  1218. package/node_modules/image-size/dist/types/tga.d.ts +5 -0
  1219. package/node_modules/image-size/dist/types/tga.mjs +19 -0
  1220. package/node_modules/image-size/dist/types/tiff.cjs +142 -0
  1221. package/node_modules/image-size/dist/types/tiff.d.mts +5 -0
  1222. package/node_modules/image-size/dist/types/tiff.d.ts +5 -0
  1223. package/node_modules/image-size/dist/types/tiff.mjs +140 -0
  1224. package/node_modules/image-size/dist/types/utils.cjs +60 -0
  1225. package/node_modules/image-size/dist/types/utils.d.mts +18 -0
  1226. package/node_modules/image-size/dist/types/utils.d.ts +18 -0
  1227. package/node_modules/image-size/dist/types/utils.mjs +47 -0
  1228. package/node_modules/image-size/dist/types/webp.cjs +63 -0
  1229. package/node_modules/image-size/dist/types/webp.d.mts +5 -0
  1230. package/node_modules/image-size/dist/types/webp.d.ts +5 -0
  1231. package/node_modules/image-size/dist/types/webp.mjs +61 -0
  1232. package/node_modules/image-size/dist/utils/bit-reader.cjs +43 -0
  1233. package/node_modules/image-size/dist/utils/bit-reader.d.mts +12 -0
  1234. package/node_modules/image-size/dist/utils/bit-reader.d.ts +12 -0
  1235. package/node_modules/image-size/dist/utils/bit-reader.mjs +41 -0
  1236. package/node_modules/image-size/package.json +104 -0
  1237. package/node_modules/mime-db/HISTORY.md +507 -0
  1238. package/node_modules/mime-db/LICENSE +23 -0
  1239. package/node_modules/mime-db/README.md +100 -0
  1240. package/node_modules/mime-db/db.json +8519 -0
  1241. package/node_modules/mime-db/index.js +12 -0
  1242. package/node_modules/mime-db/package.json +60 -0
  1243. package/node_modules/mime-types/HISTORY.md +397 -0
  1244. package/node_modules/mime-types/LICENSE +23 -0
  1245. package/node_modules/mime-types/README.md +113 -0
  1246. package/node_modules/mime-types/index.js +188 -0
  1247. package/node_modules/mime-types/package.json +44 -0
  1248. package/node_modules/minimist/.eslintrc +29 -0
  1249. package/node_modules/minimist/.github/FUNDING.yml +12 -0
  1250. package/node_modules/minimist/.nycrc +14 -0
  1251. package/node_modules/minimist/CHANGELOG.md +298 -0
  1252. package/node_modules/minimist/LICENSE +18 -0
  1253. package/node_modules/minimist/README.md +121 -0
  1254. package/node_modules/minimist/example/parse.js +4 -0
  1255. package/node_modules/minimist/index.js +263 -0
  1256. package/node_modules/minimist/package.json +75 -0
  1257. package/node_modules/minimist/test/all_bool.js +34 -0
  1258. package/node_modules/minimist/test/bool.js +177 -0
  1259. package/node_modules/minimist/test/dash.js +43 -0
  1260. package/node_modules/minimist/test/default_bool.js +37 -0
  1261. package/node_modules/minimist/test/dotted.js +24 -0
  1262. package/node_modules/minimist/test/kv_short.js +32 -0
  1263. package/node_modules/minimist/test/long.js +33 -0
  1264. package/node_modules/minimist/test/num.js +38 -0
  1265. package/node_modules/minimist/test/parse.js +209 -0
  1266. package/node_modules/minimist/test/parse_modified.js +11 -0
  1267. package/node_modules/minimist/test/proto.js +64 -0
  1268. package/node_modules/minimist/test/short.js +69 -0
  1269. package/node_modules/minimist/test/stop_early.js +17 -0
  1270. package/node_modules/minimist/test/unknown.js +104 -0
  1271. package/node_modules/minimist/test/whitespace.js +10 -0
  1272. package/node_modules/music-metadata/LICENSE.txt +9 -0
  1273. package/node_modules/music-metadata/README.md +878 -0
  1274. package/node_modules/music-metadata/lib/ParseError.d.ts +87 -0
  1275. package/node_modules/music-metadata/lib/ParseError.js +38 -0
  1276. package/node_modules/music-metadata/lib/ParserFactory.d.ts +44 -0
  1277. package/node_modules/music-metadata/lib/ParserFactory.js +141 -0
  1278. package/node_modules/music-metadata/lib/aiff/AiffLoader.d.ts +2 -0
  1279. package/node_modules/music-metadata/lib/aiff/AiffLoader.js +8 -0
  1280. package/node_modules/music-metadata/lib/aiff/AiffParser.d.ts +15 -0
  1281. package/node_modules/music-metadata/lib/aiff/AiffParser.js +104 -0
  1282. package/node_modules/music-metadata/lib/aiff/AiffTagMap.d.ts +4 -0
  1283. package/node_modules/music-metadata/lib/aiff/AiffTagMap.js +15 -0
  1284. package/node_modules/music-metadata/lib/aiff/AiffToken.d.ts +48 -0
  1285. package/node_modules/music-metadata/lib/aiff/AiffToken.js +58 -0
  1286. package/node_modules/music-metadata/lib/apev2/APEv2Parser.d.ts +46 -0
  1287. package/node_modules/music-metadata/lib/apev2/APEv2Parser.js +176 -0
  1288. package/node_modules/music-metadata/lib/apev2/APEv2TagMapper.d.ts +4 -0
  1289. package/node_modules/music-metadata/lib/apev2/APEv2TagMapper.js +83 -0
  1290. package/node_modules/music-metadata/lib/apev2/APEv2Token.d.ts +99 -0
  1291. package/node_modules/music-metadata/lib/apev2/APEv2Token.js +116 -0
  1292. package/node_modules/music-metadata/lib/apev2/Apev2Loader.d.ts +2 -0
  1293. package/node_modules/music-metadata/lib/apev2/Apev2Loader.js +8 -0
  1294. package/node_modules/music-metadata/lib/asf/AsfGuid.d.ts +83 -0
  1295. package/node_modules/music-metadata/lib/asf/AsfGuid.js +109 -0
  1296. package/node_modules/music-metadata/lib/asf/AsfLoader.d.ts +2 -0
  1297. package/node_modules/music-metadata/lib/asf/AsfLoader.js +8 -0
  1298. package/node_modules/music-metadata/lib/asf/AsfObject.d.ts +325 -0
  1299. package/node_modules/music-metadata/lib/asf/AsfObject.js +347 -0
  1300. package/node_modules/music-metadata/lib/asf/AsfParser.d.ts +17 -0
  1301. package/node_modules/music-metadata/lib/asf/AsfParser.js +134 -0
  1302. package/node_modules/music-metadata/lib/asf/AsfTagMapper.d.ts +7 -0
  1303. package/node_modules/music-metadata/lib/asf/AsfTagMapper.js +92 -0
  1304. package/node_modules/music-metadata/lib/asf/AsfUtil.d.ts +4 -0
  1305. package/node_modules/music-metadata/lib/asf/AsfUtil.js +32 -0
  1306. package/node_modules/music-metadata/lib/common/BasicParser.d.ts +17 -0
  1307. package/node_modules/music-metadata/lib/common/BasicParser.js +13 -0
  1308. package/node_modules/music-metadata/lib/common/CaseInsensitiveTagMap.d.ts +10 -0
  1309. package/node_modules/music-metadata/lib/common/CaseInsensitiveTagMap.js +17 -0
  1310. package/node_modules/music-metadata/lib/common/CombinedTagMapper.d.ts +19 -0
  1311. package/node_modules/music-metadata/lib/common/CombinedTagMapper.js +50 -0
  1312. package/node_modules/music-metadata/lib/common/FourCC.d.ts +6 -0
  1313. package/node_modules/music-metadata/lib/common/FourCC.js +25 -0
  1314. package/node_modules/music-metadata/lib/common/GenericTagMapper.d.ts +51 -0
  1315. package/node_modules/music-metadata/lib/common/GenericTagMapper.js +51 -0
  1316. package/node_modules/music-metadata/lib/common/GenericTagTypes.d.ts +34 -0
  1317. package/node_modules/music-metadata/lib/common/GenericTagTypes.js +133 -0
  1318. package/node_modules/music-metadata/lib/common/MetadataCollector.d.ts +86 -0
  1319. package/node_modules/music-metadata/lib/common/MetadataCollector.js +307 -0
  1320. package/node_modules/music-metadata/lib/common/Util.d.ts +56 -0
  1321. package/node_modules/music-metadata/lib/common/Util.js +152 -0
  1322. package/node_modules/music-metadata/lib/core.d.ts +75 -0
  1323. package/node_modules/music-metadata/lib/core.js +126 -0
  1324. package/node_modules/music-metadata/lib/dsdiff/DsdiffLoader.d.ts +2 -0
  1325. package/node_modules/music-metadata/lib/dsdiff/DsdiffLoader.js +8 -0
  1326. package/node_modules/music-metadata/lib/dsdiff/DsdiffParser.d.ts +29 -0
  1327. package/node_modules/music-metadata/lib/dsdiff/DsdiffParser.js +154 -0
  1328. package/node_modules/music-metadata/lib/dsdiff/DsdiffToken.d.ts +9 -0
  1329. package/node_modules/music-metadata/lib/dsdiff/DsdiffToken.js +18 -0
  1330. package/node_modules/music-metadata/lib/dsf/DsfChunk.d.ts +87 -0
  1331. package/node_modules/music-metadata/lib/dsf/DsfChunk.js +50 -0
  1332. package/node_modules/music-metadata/lib/dsf/DsfLoader.d.ts +2 -0
  1333. package/node_modules/music-metadata/lib/dsf/DsfLoader.js +8 -0
  1334. package/node_modules/music-metadata/lib/dsf/DsfParser.d.ts +24 -0
  1335. package/node_modules/music-metadata/lib/dsf/DsfParser.js +57 -0
  1336. package/node_modules/music-metadata/lib/ebml/EbmlIterator.d.ts +67 -0
  1337. package/node_modules/music-metadata/lib/ebml/EbmlIterator.js +218 -0
  1338. package/node_modules/music-metadata/lib/ebml/types.d.ts +37 -0
  1339. package/node_modules/music-metadata/lib/ebml/types.js +8 -0
  1340. package/node_modules/music-metadata/lib/flac/FlacLoader.d.ts +2 -0
  1341. package/node_modules/music-metadata/lib/flac/FlacLoader.js +8 -0
  1342. package/node_modules/music-metadata/lib/flac/FlacParser.d.ts +29 -0
  1343. package/node_modules/music-metadata/lib/flac/FlacParser.js +125 -0
  1344. package/node_modules/music-metadata/lib/flac/FlacToken.d.ts +45 -0
  1345. package/node_modules/music-metadata/lib/flac/FlacToken.js +63 -0
  1346. package/node_modules/music-metadata/lib/id3v1/ID3v1Parser.d.ts +17 -0
  1347. package/node_modules/music-metadata/lib/id3v1/ID3v1Parser.js +137 -0
  1348. package/node_modules/music-metadata/lib/id3v1/ID3v1TagMap.d.ts +4 -0
  1349. package/node_modules/music-metadata/lib/id3v1/ID3v1TagMap.js +18 -0
  1350. package/node_modules/music-metadata/lib/id3v2/AbstractID3Parser.d.ts +17 -0
  1351. package/node_modules/music-metadata/lib/id3v2/AbstractID3Parser.js +56 -0
  1352. package/node_modules/music-metadata/lib/id3v2/FrameHeader.d.ts +31 -0
  1353. package/node_modules/music-metadata/lib/id3v2/FrameHeader.js +73 -0
  1354. package/node_modules/music-metadata/lib/id3v2/FrameParser.d.ts +92 -0
  1355. package/node_modules/music-metadata/lib/id3v2/FrameParser.js +470 -0
  1356. package/node_modules/music-metadata/lib/id3v2/ID3v22TagMapper.d.ts +9 -0
  1357. package/node_modules/music-metadata/lib/id3v2/ID3v22TagMapper.js +46 -0
  1358. package/node_modules/music-metadata/lib/id3v2/ID3v24TagMapper.d.ts +14 -0
  1359. package/node_modules/music-metadata/lib/id3v2/ID3v24TagMapper.js +195 -0
  1360. package/node_modules/music-metadata/lib/id3v2/ID3v2ChapterToken.d.ts +11 -0
  1361. package/node_modules/music-metadata/lib/id3v2/ID3v2ChapterToken.js +17 -0
  1362. package/node_modules/music-metadata/lib/id3v2/ID3v2Parser.d.ts +33 -0
  1363. package/node_modules/music-metadata/lib/id3v2/ID3v2Parser.js +169 -0
  1364. package/node_modules/music-metadata/lib/id3v2/ID3v2Token.d.ts +111 -0
  1365. package/node_modules/music-metadata/lib/id3v2/ID3v2Token.js +146 -0
  1366. package/node_modules/music-metadata/lib/iff/index.d.ts +33 -0
  1367. package/node_modules/music-metadata/lib/iff/index.js +16 -0
  1368. package/node_modules/music-metadata/lib/index.d.ts +22 -0
  1369. package/node_modules/music-metadata/lib/index.js +53 -0
  1370. package/node_modules/music-metadata/lib/lrc/LyricsParser.d.ts +9 -0
  1371. package/node_modules/music-metadata/lib/lrc/LyricsParser.js +45 -0
  1372. package/node_modules/music-metadata/lib/lyrics3/Lyrics3.d.ts +3 -0
  1373. package/node_modules/music-metadata/lib/lyrics3/Lyrics3.js +17 -0
  1374. package/node_modules/music-metadata/lib/matroska/MatroskaDtd.d.ts +8 -0
  1375. package/node_modules/music-metadata/lib/matroska/MatroskaDtd.js +283 -0
  1376. package/node_modules/music-metadata/lib/matroska/MatroskaLoader.d.ts +2 -0
  1377. package/node_modules/music-metadata/lib/matroska/MatroskaLoader.js +8 -0
  1378. package/node_modules/music-metadata/lib/matroska/MatroskaParser.d.ts +19 -0
  1379. package/node_modules/music-metadata/lib/matroska/MatroskaParser.js +143 -0
  1380. package/node_modules/music-metadata/lib/matroska/MatroskaTagMapper.d.ts +4 -0
  1381. package/node_modules/music-metadata/lib/matroska/MatroskaTagMapper.js +32 -0
  1382. package/node_modules/music-metadata/lib/matroska/types.d.ts +142 -0
  1383. package/node_modules/music-metadata/lib/matroska/types.js +27 -0
  1384. package/node_modules/music-metadata/lib/mp4/Atom.d.ts +16 -0
  1385. package/node_modules/music-metadata/lib/mp4/Atom.js +65 -0
  1386. package/node_modules/music-metadata/lib/mp4/AtomToken.d.ts +487 -0
  1387. package/node_modules/music-metadata/lib/mp4/AtomToken.js +524 -0
  1388. package/node_modules/music-metadata/lib/mp4/MP4Parser.d.ts +32 -0
  1389. package/node_modules/music-metadata/lib/mp4/MP4Parser.js +647 -0
  1390. package/node_modules/music-metadata/lib/mp4/MP4TagMapper.d.ts +8 -0
  1391. package/node_modules/music-metadata/lib/mp4/MP4TagMapper.js +123 -0
  1392. package/node_modules/music-metadata/lib/mp4/Mp4Loader.d.ts +2 -0
  1393. package/node_modules/music-metadata/lib/mp4/Mp4Loader.js +8 -0
  1394. package/node_modules/music-metadata/lib/mpeg/ExtendedLameHeader.d.ts +27 -0
  1395. package/node_modules/music-metadata/lib/mpeg/ExtendedLameHeader.js +28 -0
  1396. package/node_modules/music-metadata/lib/mpeg/MpegLoader.d.ts +2 -0
  1397. package/node_modules/music-metadata/lib/mpeg/MpegLoader.js +8 -0
  1398. package/node_modules/music-metadata/lib/mpeg/MpegParser.d.ts +62 -0
  1399. package/node_modules/music-metadata/lib/mpeg/MpegParser.js +569 -0
  1400. package/node_modules/music-metadata/lib/mpeg/ReplayGainDataFormat.d.ts +57 -0
  1401. package/node_modules/music-metadata/lib/mpeg/ReplayGainDataFormat.js +64 -0
  1402. package/node_modules/music-metadata/lib/mpeg/XingTag.d.ts +44 -0
  1403. package/node_modules/music-metadata/lib/mpeg/XingTag.js +65 -0
  1404. package/node_modules/music-metadata/lib/musepack/MusepackConentError.d.ts +15 -0
  1405. package/node_modules/music-metadata/lib/musepack/MusepackConentError.js +3 -0
  1406. package/node_modules/music-metadata/lib/musepack/MusepackLoader.d.ts +2 -0
  1407. package/node_modules/music-metadata/lib/musepack/MusepackLoader.js +8 -0
  1408. package/node_modules/music-metadata/lib/musepack/MusepackParser.d.ts +4 -0
  1409. package/node_modules/music-metadata/lib/musepack/MusepackParser.js +30 -0
  1410. package/node_modules/music-metadata/lib/musepack/sv7/BitReader.d.ts +13 -0
  1411. package/node_modules/music-metadata/lib/musepack/sv7/BitReader.js +46 -0
  1412. package/node_modules/music-metadata/lib/musepack/sv7/MpcSv7Parser.d.ts +8 -0
  1413. package/node_modules/music-metadata/lib/musepack/sv7/MpcSv7Parser.js +47 -0
  1414. package/node_modules/music-metadata/lib/musepack/sv7/StreamVersion7.d.ts +28 -0
  1415. package/node_modules/music-metadata/lib/musepack/sv7/StreamVersion7.js +39 -0
  1416. package/node_modules/music-metadata/lib/musepack/sv8/MpcSv8Parser.d.ts +6 -0
  1417. package/node_modules/music-metadata/lib/musepack/sv8/MpcSv8Parser.js +56 -0
  1418. package/node_modules/music-metadata/lib/musepack/sv8/StreamVersion8.d.ts +42 -0
  1419. package/node_modules/music-metadata/lib/musepack/sv8/StreamVersion8.js +82 -0
  1420. package/node_modules/music-metadata/lib/ogg/OggLoader.d.ts +2 -0
  1421. package/node_modules/music-metadata/lib/ogg/OggLoader.js +8 -0
  1422. package/node_modules/music-metadata/lib/ogg/OggParser.d.ts +27 -0
  1423. package/node_modules/music-metadata/lib/ogg/OggParser.js +125 -0
  1424. package/node_modules/music-metadata/lib/ogg/OggToken.d.ts +83 -0
  1425. package/node_modules/music-metadata/lib/ogg/OggToken.js +41 -0
  1426. package/node_modules/music-metadata/lib/ogg/flac/FlacStream.d.ts +29 -0
  1427. package/node_modules/music-metadata/lib/ogg/flac/FlacStream.js +74 -0
  1428. package/node_modules/music-metadata/lib/ogg/opus/Opus.d.ts +63 -0
  1429. package/node_modules/music-metadata/lib/ogg/opus/Opus.js +27 -0
  1430. package/node_modules/music-metadata/lib/ogg/opus/OpusStream.d.ts +24 -0
  1431. package/node_modules/music-metadata/lib/ogg/opus/OpusStream.js +56 -0
  1432. package/node_modules/music-metadata/lib/ogg/speex/Speex.d.ts +36 -0
  1433. package/node_modules/music-metadata/lib/ogg/speex/Speex.js +28 -0
  1434. package/node_modules/music-metadata/lib/ogg/speex/SpeexStream.d.ts +20 -0
  1435. package/node_modules/music-metadata/lib/ogg/speex/SpeexStream.js +31 -0
  1436. package/node_modules/music-metadata/lib/ogg/theora/Theora.d.ts +20 -0
  1437. package/node_modules/music-metadata/lib/ogg/theora/Theora.js +20 -0
  1438. package/node_modules/music-metadata/lib/ogg/theora/TheoraStream.d.ts +25 -0
  1439. package/node_modules/music-metadata/lib/ogg/theora/TheoraStream.js +39 -0
  1440. package/node_modules/music-metadata/lib/ogg/vorbis/Vorbis.d.ts +68 -0
  1441. package/node_modules/music-metadata/lib/ogg/vorbis/Vorbis.js +83 -0
  1442. package/node_modules/music-metadata/lib/ogg/vorbis/VorbisDecoder.d.ts +12 -0
  1443. package/node_modules/music-metadata/lib/ogg/vorbis/VorbisDecoder.js +29 -0
  1444. package/node_modules/music-metadata/lib/ogg/vorbis/VorbisStream.d.ts +53 -0
  1445. package/node_modules/music-metadata/lib/ogg/vorbis/VorbisStream.js +136 -0
  1446. package/node_modules/music-metadata/lib/ogg/vorbis/VorbisTagMapper.d.ts +7 -0
  1447. package/node_modules/music-metadata/lib/ogg/vorbis/VorbisTagMapper.js +133 -0
  1448. package/node_modules/music-metadata/lib/riff/RiffChunk.d.ts +16 -0
  1449. package/node_modules/music-metadata/lib/riff/RiffChunk.js +28 -0
  1450. package/node_modules/music-metadata/lib/riff/RiffInfoTagMap.d.ts +10 -0
  1451. package/node_modules/music-metadata/lib/riff/RiffInfoTagMap.js +34 -0
  1452. package/node_modules/music-metadata/lib/type.d.ts +661 -0
  1453. package/node_modules/music-metadata/lib/type.js +2 -0
  1454. package/node_modules/music-metadata/lib/wav/BwfChunk.d.ts +17 -0
  1455. package/node_modules/music-metadata/lib/wav/BwfChunk.js +26 -0
  1456. package/node_modules/music-metadata/lib/wav/WaveChunk.d.ts +94 -0
  1457. package/node_modules/music-metadata/lib/wav/WaveChunk.js +78 -0
  1458. package/node_modules/music-metadata/lib/wav/WaveLoader.d.ts +2 -0
  1459. package/node_modules/music-metadata/lib/wav/WaveLoader.js +8 -0
  1460. package/node_modules/music-metadata/lib/wav/WaveParser.d.ts +24 -0
  1461. package/node_modules/music-metadata/lib/wav/WaveParser.js +170 -0
  1462. package/node_modules/music-metadata/lib/wavpack/WavPackLoader.d.ts +2 -0
  1463. package/node_modules/music-metadata/lib/wavpack/WavPackLoader.js +8 -0
  1464. package/node_modules/music-metadata/lib/wavpack/WavPackParser.d.ts +30 -0
  1465. package/node_modules/music-metadata/lib/wavpack/WavPackParser.js +109 -0
  1466. package/node_modules/music-metadata/lib/wavpack/WavPackToken.d.ts +60 -0
  1467. package/node_modules/music-metadata/lib/wavpack/WavPackToken.js +70 -0
  1468. package/node_modules/music-metadata/node_modules/file-type/core.d.ts +253 -0
  1469. package/node_modules/music-metadata/node_modules/file-type/core.js +2899 -0
  1470. package/node_modules/music-metadata/node_modules/file-type/index.d.ts +98 -0
  1471. package/node_modules/music-metadata/node_modules/file-type/index.js +163 -0
  1472. package/node_modules/music-metadata/node_modules/file-type/license +9 -0
  1473. package/node_modules/music-metadata/node_modules/file-type/package.json +290 -0
  1474. package/node_modules/music-metadata/node_modules/file-type/readme.md +667 -0
  1475. package/node_modules/music-metadata/node_modules/file-type/supported.js +360 -0
  1476. package/node_modules/music-metadata/node_modules/file-type/util.js +60 -0
  1477. package/node_modules/music-metadata/node_modules/strtok3/LICENSE.txt +21 -0
  1478. package/node_modules/music-metadata/node_modules/strtok3/README.md +399 -0
  1479. package/node_modules/music-metadata/node_modules/strtok3/lib/AbstractTokenizer.d.ts +76 -0
  1480. package/node_modules/music-metadata/node_modules/strtok3/lib/AbstractTokenizer.js +111 -0
  1481. package/node_modules/music-metadata/node_modules/strtok3/lib/BlobTokenizer.d.ts +29 -0
  1482. package/node_modules/music-metadata/node_modules/strtok3/lib/BlobTokenizer.js +53 -0
  1483. package/node_modules/music-metadata/node_modules/strtok3/lib/BufferTokenizer.d.ts +29 -0
  1484. package/node_modules/music-metadata/node_modules/strtok3/lib/BufferTokenizer.js +52 -0
  1485. package/node_modules/music-metadata/node_modules/strtok3/lib/FileTokenizer.d.ts +37 -0
  1486. package/node_modules/music-metadata/node_modules/strtok3/lib/FileTokenizer.js +61 -0
  1487. package/node_modules/music-metadata/node_modules/strtok3/lib/ReadStreamTokenizer.d.ts +34 -0
  1488. package/node_modules/music-metadata/node_modules/strtok3/lib/ReadStreamTokenizer.js +107 -0
  1489. package/node_modules/music-metadata/node_modules/strtok3/lib/core.d.ts +40 -0
  1490. package/node_modules/music-metadata/node_modules/strtok3/lib/core.js +62 -0
  1491. package/node_modules/music-metadata/node_modules/strtok3/lib/index.d.ts +16 -0
  1492. package/node_modules/music-metadata/node_modules/strtok3/lib/index.js +22 -0
  1493. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/AbstractStreamReader.d.ts +54 -0
  1494. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/AbstractStreamReader.js +71 -0
  1495. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/Deferred.d.ts +6 -0
  1496. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/Deferred.js +10 -0
  1497. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/Errors.d.ts +10 -0
  1498. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/Errors.js +16 -0
  1499. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/StreamReader.d.ts +29 -0
  1500. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/StreamReader.js +83 -0
  1501. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamByobReader.d.ts +14 -0
  1502. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamByobReader.js +27 -0
  1503. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamDefaultReader.d.ts +19 -0
  1504. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamDefaultReader.js +62 -0
  1505. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamReader.d.ts +14 -0
  1506. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamReader.js +13 -0
  1507. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamReaderFactory.d.ts +5 -0
  1508. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamReaderFactory.js +19 -0
  1509. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/index.d.ts +6 -0
  1510. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/index.js +5 -0
  1511. package/node_modules/music-metadata/node_modules/strtok3/lib/types.d.ts +139 -0
  1512. package/node_modules/music-metadata/node_modules/strtok3/lib/types.js +1 -0
  1513. package/node_modules/music-metadata/node_modules/strtok3/package.json +94 -0
  1514. package/node_modules/music-metadata/node_modules/token-types/LICENSE.txt +9 -0
  1515. package/node_modules/music-metadata/node_modules/token-types/README.md +120 -0
  1516. package/node_modules/music-metadata/node_modules/token-types/lib/index.d.ts +135 -0
  1517. package/node_modules/music-metadata/node_modules/token-types/lib/index.js +401 -0
  1518. package/node_modules/music-metadata/node_modules/token-types/package.json +81 -0
  1519. package/node_modules/music-metadata/package.json +156 -0
  1520. package/node_modules/nth-check/LICENSE +11 -0
  1521. package/node_modules/nth-check/README.md +136 -0
  1522. package/node_modules/nth-check/lib/compile.d.ts +55 -0
  1523. package/node_modules/nth-check/lib/compile.d.ts.map +1 -0
  1524. package/node_modules/nth-check/lib/compile.js +121 -0
  1525. package/node_modules/nth-check/lib/compile.js.map +1 -0
  1526. package/node_modules/nth-check/lib/esm/compile.d.ts +55 -0
  1527. package/node_modules/nth-check/lib/esm/compile.d.ts.map +1 -0
  1528. package/node_modules/nth-check/lib/esm/compile.js +113 -0
  1529. package/node_modules/nth-check/lib/esm/compile.js.map +1 -0
  1530. package/node_modules/nth-check/lib/esm/index.d.ts +59 -0
  1531. package/node_modules/nth-check/lib/esm/index.d.ts.map +1 -0
  1532. package/node_modules/nth-check/lib/esm/index.js +63 -0
  1533. package/node_modules/nth-check/lib/esm/index.js.map +1 -0
  1534. package/node_modules/nth-check/lib/esm/package.json +1 -0
  1535. package/node_modules/nth-check/lib/esm/parse.d.ts +9 -0
  1536. package/node_modules/nth-check/lib/esm/parse.d.ts.map +1 -0
  1537. package/node_modules/nth-check/lib/esm/parse.js +73 -0
  1538. package/node_modules/nth-check/lib/esm/parse.js.map +1 -0
  1539. package/node_modules/nth-check/lib/index.d.ts +59 -0
  1540. package/node_modules/nth-check/lib/index.d.ts.map +1 -0
  1541. package/node_modules/nth-check/lib/index.js +70 -0
  1542. package/node_modules/nth-check/lib/index.js.map +1 -0
  1543. package/node_modules/nth-check/lib/parse.d.ts +9 -0
  1544. package/node_modules/nth-check/lib/parse.d.ts.map +1 -0
  1545. package/node_modules/nth-check/lib/parse.js +77 -0
  1546. package/node_modules/nth-check/lib/parse.js.map +1 -0
  1547. package/node_modules/nth-check/package.json +78 -0
  1548. package/node_modules/papaparse/.eslintrc.js +280 -0
  1549. package/node_modules/papaparse/.github/workflows/node.js.yml +29 -0
  1550. package/node_modules/papaparse/Gruntfile.js +27 -0
  1551. package/node_modules/papaparse/LICENSE +20 -0
  1552. package/node_modules/papaparse/README.md +77 -0
  1553. package/node_modules/papaparse/bower.json +40 -0
  1554. package/node_modules/papaparse/package.json +58 -0
  1555. package/node_modules/papaparse/papaparse.js +1945 -0
  1556. package/node_modules/papaparse/papaparse.min.js +7 -0
  1557. package/node_modules/papaparse/player/player.css +1045 -0
  1558. package/node_modules/papaparse/player/player.html +79 -0
  1559. package/node_modules/papaparse/player/player.js +181 -0
  1560. package/node_modules/papaparse/tests/.eslintrc.js +12 -0
  1561. package/node_modules/papaparse/tests/long-sample.csv +8 -0
  1562. package/node_modules/papaparse/tests/node-tests.js +302 -0
  1563. package/node_modules/papaparse/tests/sample-header.csv +3 -0
  1564. package/node_modules/papaparse/tests/sample.csv +2 -0
  1565. package/node_modules/papaparse/tests/test-cases.js +2840 -0
  1566. package/node_modules/papaparse/tests/test.js +20 -0
  1567. package/node_modules/papaparse/tests/tests.html +22 -0
  1568. package/node_modules/papaparse/tests/utf-8-bom-sample.csv +2 -0
  1569. package/node_modules/papaparse/tests/verylong-sample.csv +2001 -0
  1570. package/node_modules/parse5/LICENSE +19 -0
  1571. package/node_modules/parse5/README.md +38 -0
  1572. package/node_modules/parse5/dist/cjs/common/doctype.d.ts +4 -0
  1573. package/node_modules/parse5/dist/cjs/common/doctype.js +118 -0
  1574. package/node_modules/parse5/dist/cjs/common/error-codes.d.ts +67 -0
  1575. package/node_modules/parse5/dist/cjs/common/error-codes.js +66 -0
  1576. package/node_modules/parse5/dist/cjs/common/foreign-content.d.ts +9 -0
  1577. package/node_modules/parse5/dist/cjs/common/foreign-content.js +237 -0
  1578. package/node_modules/parse5/dist/cjs/common/html.d.ts +289 -0
  1579. package/node_modules/parse5/dist/cjs/common/html.js +528 -0
  1580. package/node_modules/parse5/dist/cjs/common/token.d.ts +84 -0
  1581. package/node_modules/parse5/dist/cjs/common/token.js +24 -0
  1582. package/node_modules/parse5/dist/cjs/common/unicode.d.ts +42 -0
  1583. package/node_modules/parse5/dist/cjs/common/unicode.js +70 -0
  1584. package/node_modules/parse5/dist/cjs/index.d.ts +71 -0
  1585. package/node_modules/parse5/dist/cjs/index.js +54 -0
  1586. package/node_modules/parse5/dist/cjs/package.json +1 -0
  1587. package/node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts +36 -0
  1588. package/node_modules/parse5/dist/cjs/parser/formatting-element-list.js +114 -0
  1589. package/node_modules/parse5/dist/cjs/parser/index.d.ts +221 -0
  1590. package/node_modules/parse5/dist/cjs/parser/index.js +3240 -0
  1591. package/node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts +53 -0
  1592. package/node_modules/parse5/dist/cjs/parser/open-element-stack.js +328 -0
  1593. package/node_modules/parse5/dist/cjs/serializer/index.d.ts +60 -0
  1594. package/node_modules/parse5/dist/cjs/serializer/index.js +172 -0
  1595. package/node_modules/parse5/dist/cjs/tokenizer/index.d.ts +247 -0
  1596. package/node_modules/parse5/dist/cjs/tokenizer/index.js +2714 -0
  1597. package/node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts +36 -0
  1598. package/node_modules/parse5/dist/cjs/tokenizer/preprocessor.js +200 -0
  1599. package/node_modules/parse5/dist/cjs/tree-adapters/default.d.ts +84 -0
  1600. package/node_modules/parse5/dist/cjs/tree-adapters/default.js +176 -0
  1601. package/node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts +255 -0
  1602. package/node_modules/parse5/dist/cjs/tree-adapters/interface.js +2 -0
  1603. package/node_modules/parse5/dist/common/doctype.d.ts +4 -0
  1604. package/node_modules/parse5/dist/common/doctype.js +114 -0
  1605. package/node_modules/parse5/dist/common/error-codes.d.ts +67 -0
  1606. package/node_modules/parse5/dist/common/error-codes.js +63 -0
  1607. package/node_modules/parse5/dist/common/foreign-content.d.ts +9 -0
  1608. package/node_modules/parse5/dist/common/foreign-content.js +228 -0
  1609. package/node_modules/parse5/dist/common/html.d.ts +289 -0
  1610. package/node_modules/parse5/dist/common/html.js +523 -0
  1611. package/node_modules/parse5/dist/common/token.d.ts +84 -0
  1612. package/node_modules/parse5/dist/common/token.js +20 -0
  1613. package/node_modules/parse5/dist/common/unicode.d.ts +42 -0
  1614. package/node_modules/parse5/dist/common/unicode.js +62 -0
  1615. package/node_modules/parse5/dist/index.d.ts +71 -0
  1616. package/node_modules/parse5/dist/index.js +42 -0
  1617. package/node_modules/parse5/dist/parser/formatting-element-list.d.ts +36 -0
  1618. package/node_modules/parse5/dist/parser/formatting-element-list.js +110 -0
  1619. package/node_modules/parse5/dist/parser/index.d.ts +221 -0
  1620. package/node_modules/parse5/dist/parser/index.js +3245 -0
  1621. package/node_modules/parse5/dist/parser/open-element-stack.d.ts +53 -0
  1622. package/node_modules/parse5/dist/parser/open-element-stack.js +324 -0
  1623. package/node_modules/parse5/dist/serializer/index.d.ts +60 -0
  1624. package/node_modules/parse5/dist/serializer/index.js +168 -0
  1625. package/node_modules/parse5/dist/tokenizer/index.d.ts +247 -0
  1626. package/node_modules/parse5/dist/tokenizer/index.js +2710 -0
  1627. package/node_modules/parse5/dist/tokenizer/preprocessor.d.ts +36 -0
  1628. package/node_modules/parse5/dist/tokenizer/preprocessor.js +196 -0
  1629. package/node_modules/parse5/dist/tree-adapters/default.d.ts +84 -0
  1630. package/node_modules/parse5/dist/tree-adapters/default.js +173 -0
  1631. package/node_modules/parse5/dist/tree-adapters/interface.d.ts +255 -0
  1632. package/node_modules/parse5/dist/tree-adapters/interface.js +1 -0
  1633. package/node_modules/parse5/node_modules/entities/LICENSE +11 -0
  1634. package/node_modules/parse5/node_modules/entities/decode.d.ts +1 -0
  1635. package/node_modules/parse5/node_modules/entities/decode.js +3 -0
  1636. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode-codepoint.d.ts +19 -0
  1637. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode-codepoint.d.ts.map +1 -0
  1638. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
  1639. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode-codepoint.js.map +1 -0
  1640. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode.d.ts +209 -0
  1641. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode.d.ts.map +1 -0
  1642. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode.js +511 -0
  1643. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode.js.map +1 -0
  1644. package/node_modules/parse5/node_modules/entities/dist/commonjs/encode.d.ts +22 -0
  1645. package/node_modules/parse5/node_modules/entities/dist/commonjs/encode.d.ts.map +1 -0
  1646. package/node_modules/parse5/node_modules/entities/dist/commonjs/encode.js +73 -0
  1647. package/node_modules/parse5/node_modules/entities/dist/commonjs/encode.js.map +1 -0
  1648. package/node_modules/parse5/node_modules/entities/dist/commonjs/escape.d.ts +43 -0
  1649. package/node_modules/parse5/node_modules/entities/dist/commonjs/escape.d.ts.map +1 -0
  1650. package/node_modules/parse5/node_modules/entities/dist/commonjs/escape.js +121 -0
  1651. package/node_modules/parse5/node_modules/entities/dist/commonjs/escape.js.map +1 -0
  1652. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts +2 -0
  1653. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
  1654. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-html.js +10 -0
  1655. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-html.js.map +1 -0
  1656. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts +2 -0
  1657. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
  1658. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +10 -0
  1659. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-xml.js.map +1 -0
  1660. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/encode-html.d.ts +8 -0
  1661. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/encode-html.d.ts.map +1 -0
  1662. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/encode-html.js +13 -0
  1663. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/encode-html.js.map +1 -0
  1664. package/node_modules/parse5/node_modules/entities/dist/commonjs/index.d.ts +96 -0
  1665. package/node_modules/parse5/node_modules/entities/dist/commonjs/index.d.ts.map +1 -0
  1666. package/node_modules/parse5/node_modules/entities/dist/commonjs/index.js +131 -0
  1667. package/node_modules/parse5/node_modules/entities/dist/commonjs/index.js.map +1 -0
  1668. package/node_modules/parse5/node_modules/entities/dist/commonjs/package.json +3 -0
  1669. package/node_modules/parse5/node_modules/entities/dist/esm/decode-codepoint.d.ts +19 -0
  1670. package/node_modules/parse5/node_modules/entities/dist/esm/decode-codepoint.d.ts.map +1 -0
  1671. package/node_modules/parse5/node_modules/entities/dist/esm/decode-codepoint.js +72 -0
  1672. package/node_modules/parse5/node_modules/entities/dist/esm/decode-codepoint.js.map +1 -0
  1673. package/node_modules/parse5/node_modules/entities/dist/esm/decode.d.ts +209 -0
  1674. package/node_modules/parse5/node_modules/entities/dist/esm/decode.d.ts.map +1 -0
  1675. package/node_modules/parse5/node_modules/entities/dist/esm/decode.js +497 -0
  1676. package/node_modules/parse5/node_modules/entities/dist/esm/decode.js.map +1 -0
  1677. package/node_modules/parse5/node_modules/entities/dist/esm/encode.d.ts +22 -0
  1678. package/node_modules/parse5/node_modules/entities/dist/esm/encode.d.ts.map +1 -0
  1679. package/node_modules/parse5/node_modules/entities/dist/esm/encode.js +69 -0
  1680. package/node_modules/parse5/node_modules/entities/dist/esm/encode.js.map +1 -0
  1681. package/node_modules/parse5/node_modules/entities/dist/esm/escape.d.ts +43 -0
  1682. package/node_modules/parse5/node_modules/entities/dist/esm/escape.d.ts.map +1 -0
  1683. package/node_modules/parse5/node_modules/entities/dist/esm/escape.js +117 -0
  1684. package/node_modules/parse5/node_modules/entities/dist/esm/escape.js.map +1 -0
  1685. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-html.d.ts +2 -0
  1686. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-html.d.ts.map +1 -0
  1687. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-html.js +7 -0
  1688. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-html.js.map +1 -0
  1689. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts +2 -0
  1690. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
  1691. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-xml.js +7 -0
  1692. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-xml.js.map +1 -0
  1693. package/node_modules/parse5/node_modules/entities/dist/esm/generated/encode-html.d.ts +8 -0
  1694. package/node_modules/parse5/node_modules/entities/dist/esm/generated/encode-html.d.ts.map +1 -0
  1695. package/node_modules/parse5/node_modules/entities/dist/esm/generated/encode-html.js +10 -0
  1696. package/node_modules/parse5/node_modules/entities/dist/esm/generated/encode-html.js.map +1 -0
  1697. package/node_modules/parse5/node_modules/entities/dist/esm/index.d.ts +96 -0
  1698. package/node_modules/parse5/node_modules/entities/dist/esm/index.d.ts.map +1 -0
  1699. package/node_modules/parse5/node_modules/entities/dist/esm/index.js +107 -0
  1700. package/node_modules/parse5/node_modules/entities/dist/esm/index.js.map +1 -0
  1701. package/node_modules/parse5/node_modules/entities/dist/esm/package.json +3 -0
  1702. package/node_modules/parse5/node_modules/entities/escape.d.ts +1 -0
  1703. package/node_modules/parse5/node_modules/entities/escape.js +3 -0
  1704. package/node_modules/parse5/node_modules/entities/package.json +118 -0
  1705. package/node_modules/parse5/node_modules/entities/readme.md +122 -0
  1706. package/node_modules/parse5/node_modules/entities/src/decode-codepoint.ts +81 -0
  1707. package/node_modules/parse5/node_modules/entities/src/decode.spec.ts +320 -0
  1708. package/node_modules/parse5/node_modules/entities/src/decode.ts +620 -0
  1709. package/node_modules/parse5/node_modules/entities/src/encode.spec.ts +78 -0
  1710. package/node_modules/parse5/node_modules/entities/src/encode.ts +77 -0
  1711. package/node_modules/parse5/node_modules/entities/src/escape.spec.ts +14 -0
  1712. package/node_modules/parse5/node_modules/entities/src/escape.ts +148 -0
  1713. package/node_modules/parse5/node_modules/entities/src/generated/.eslintrc.json +10 -0
  1714. package/node_modules/parse5/node_modules/entities/src/generated/decode-data-html.ts +8 -0
  1715. package/node_modules/parse5/node_modules/entities/src/generated/decode-data-xml.ts +8 -0
  1716. package/node_modules/parse5/node_modules/entities/src/generated/encode-html.ts +17 -0
  1717. package/node_modules/parse5/node_modules/entities/src/index.spec.ts +125 -0
  1718. package/node_modules/parse5/node_modules/entities/src/index.ts +188 -0
  1719. package/node_modules/parse5/package.json +50 -0
  1720. package/node_modules/parse5-htmlparser2-tree-adapter/LICENSE +19 -0
  1721. package/node_modules/parse5-htmlparser2-tree-adapter/README.md +34 -0
  1722. package/node_modules/parse5-htmlparser2-tree-adapter/dist/cjs/index.d.ts +6 -0
  1723. package/node_modules/parse5-htmlparser2-tree-adapter/dist/cjs/index.js +214 -0
  1724. package/node_modules/parse5-htmlparser2-tree-adapter/dist/cjs/package.json +1 -0
  1725. package/node_modules/parse5-htmlparser2-tree-adapter/dist/index.d.ts +6 -0
  1726. package/node_modules/parse5-htmlparser2-tree-adapter/dist/index.js +213 -0
  1727. package/node_modules/parse5-htmlparser2-tree-adapter/package.json +40 -0
  1728. package/node_modules/parse5-parser-stream/LICENSE +19 -0
  1729. package/node_modules/parse5-parser-stream/README.md +34 -0
  1730. package/node_modules/parse5-parser-stream/dist/cjs/index.d.ts +85 -0
  1731. package/node_modules/parse5-parser-stream/dist/cjs/index.js +90 -0
  1732. package/node_modules/parse5-parser-stream/dist/cjs/package.json +1 -0
  1733. package/node_modules/parse5-parser-stream/dist/index.d.ts +85 -0
  1734. package/node_modules/parse5-parser-stream/dist/index.js +86 -0
  1735. package/node_modules/parse5-parser-stream/package.json +39 -0
  1736. package/node_modules/peek-readable/LICENSE +21 -0
  1737. package/node_modules/peek-readable/README.md +93 -0
  1738. package/node_modules/peek-readable/lib/Deferred.d.ts +6 -0
  1739. package/node_modules/peek-readable/lib/Deferred.js +14 -0
  1740. package/node_modules/peek-readable/lib/EndOfFileStream.d.ts +7 -0
  1741. package/node_modules/peek-readable/lib/EndOfFileStream.js +13 -0
  1742. package/node_modules/peek-readable/lib/StreamReader.d.ts +47 -0
  1743. package/node_modules/peek-readable/lib/StreamReader.js +134 -0
  1744. package/node_modules/peek-readable/lib/index.d.ts +2 -0
  1745. package/node_modules/peek-readable/lib/index.js +7 -0
  1746. package/node_modules/peek-readable/package.json +87 -0
  1747. package/node_modules/readable-web-to-node-stream/README.md +70 -0
  1748. package/node_modules/readable-web-to-node-stream/lib/index.d.ts +39 -0
  1749. package/node_modules/readable-web-to-node-stream/lib/index.js +73 -0
  1750. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/LICENSE +47 -0
  1751. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/README.md +116 -0
  1752. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/_stream_duplex.js +4 -0
  1753. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/_stream_passthrough.js +4 -0
  1754. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/_stream_readable.js +4 -0
  1755. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/_stream_transform.js +4 -0
  1756. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/_stream_writable.js +4 -0
  1757. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/add-abort-signal.js +52 -0
  1758. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/buffer_list.js +157 -0
  1759. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/compose.js +194 -0
  1760. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/destroy.js +290 -0
  1761. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/duplex.js +143 -0
  1762. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/duplexify.js +378 -0
  1763. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +286 -0
  1764. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/from.js +98 -0
  1765. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/lazy_transform.js +51 -0
  1766. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/legacy.js +89 -0
  1767. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/operators.js +457 -0
  1768. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/passthrough.js +39 -0
  1769. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/pipeline.js +471 -0
  1770. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/readable.js +1290 -0
  1771. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/state.js +39 -0
  1772. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/transform.js +180 -0
  1773. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/utils.js +327 -0
  1774. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/writable.js +819 -0
  1775. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/validators.js +530 -0
  1776. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/ours/browser.js +35 -0
  1777. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/ours/errors.js +343 -0
  1778. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/ours/index.js +65 -0
  1779. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/ours/primordials.js +124 -0
  1780. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/ours/util/inspect.js +55 -0
  1781. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/ours/util.js +148 -0
  1782. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/stream/promises.js +43 -0
  1783. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/stream.js +143 -0
  1784. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/package.json +88 -0
  1785. package/node_modules/readable-web-to-node-stream/node_modules/safe-buffer/LICENSE +21 -0
  1786. package/node_modules/readable-web-to-node-stream/node_modules/safe-buffer/README.md +584 -0
  1787. package/node_modules/readable-web-to-node-stream/node_modules/safe-buffer/index.d.ts +187 -0
  1788. package/node_modules/readable-web-to-node-stream/node_modules/safe-buffer/index.js +65 -0
  1789. package/node_modules/readable-web-to-node-stream/node_modules/safe-buffer/package.json +51 -0
  1790. package/node_modules/readable-web-to-node-stream/node_modules/string_decoder/LICENSE +48 -0
  1791. package/node_modules/readable-web-to-node-stream/node_modules/string_decoder/README.md +47 -0
  1792. package/node_modules/readable-web-to-node-stream/node_modules/string_decoder/lib/string_decoder.js +296 -0
  1793. package/node_modules/readable-web-to-node-stream/node_modules/string_decoder/package.json +34 -0
  1794. package/node_modules/readable-web-to-node-stream/package.json +84 -0
  1795. package/node_modules/sax/LICENSE.md +55 -0
  1796. package/node_modules/sax/README.md +227 -0
  1797. package/node_modules/sax/lib/sax.js +1848 -0
  1798. package/node_modules/sax/package.json +34 -0
  1799. package/node_modules/ssf/LICENSE +201 -0
  1800. package/node_modules/ssf/README.md +119 -0
  1801. package/node_modules/ssf/package.json +57 -0
  1802. package/node_modules/ssf/ssf.flow.js +980 -0
  1803. package/node_modules/ssf/ssf.js +966 -0
  1804. package/node_modules/ssf/types/index.d.ts +56 -0
  1805. package/node_modules/ssf/types/tsconfig.json +15 -0
  1806. package/node_modules/strtok3/LICENSE +15 -0
  1807. package/node_modules/strtok3/README.md +304 -0
  1808. package/node_modules/strtok3/lib/AbstractTokenizer.d.ts +69 -0
  1809. package/node_modules/strtok3/lib/AbstractTokenizer.js +104 -0
  1810. package/node_modules/strtok3/lib/BufferTokenizer.d.ts +26 -0
  1811. package/node_modules/strtok3/lib/BufferTokenizer.js +55 -0
  1812. package/node_modules/strtok3/lib/FileTokenizer.d.ts +22 -0
  1813. package/node_modules/strtok3/lib/FileTokenizer.js +55 -0
  1814. package/node_modules/strtok3/lib/FsPromise.d.ts +18 -0
  1815. package/node_modules/strtok3/lib/FsPromise.js +79 -0
  1816. package/node_modules/strtok3/lib/ReadStreamTokenizer.d.ts +28 -0
  1817. package/node_modules/strtok3/lib/ReadStreamTokenizer.js +98 -0
  1818. package/node_modules/strtok3/lib/core.d.ts +23 -0
  1819. package/node_modules/strtok3/lib/core.js +29 -0
  1820. package/node_modules/strtok3/lib/index.d.ts +15 -0
  1821. package/node_modules/strtok3/lib/index.js +27 -0
  1822. package/node_modules/strtok3/lib/types.d.ts +103 -0
  1823. package/node_modules/strtok3/lib/types.js +2 -0
  1824. package/node_modules/strtok3/package.json +103 -0
  1825. package/node_modules/token-types/LICENSE +7 -0
  1826. package/node_modules/token-types/README.md +115 -0
  1827. package/node_modules/token-types/lib/index.d.ts +150 -0
  1828. package/node_modules/token-types/lib/index.js +455 -0
  1829. package/node_modules/token-types/package.json +93 -0
  1830. package/node_modules/undici/LICENSE +21 -0
  1831. package/node_modules/undici/README.md +741 -0
  1832. package/node_modules/undici/docs/docs/api/Agent.md +84 -0
  1833. package/node_modules/undici/docs/docs/api/BalancedPool.md +99 -0
  1834. package/node_modules/undici/docs/docs/api/CacheStorage.md +30 -0
  1835. package/node_modules/undici/docs/docs/api/CacheStore.md +164 -0
  1836. package/node_modules/undici/docs/docs/api/Client.md +285 -0
  1837. package/node_modules/undici/docs/docs/api/ClientStats.md +27 -0
  1838. package/node_modules/undici/docs/docs/api/Connector.md +115 -0
  1839. package/node_modules/undici/docs/docs/api/ContentType.md +57 -0
  1840. package/node_modules/undici/docs/docs/api/Cookies.md +101 -0
  1841. package/node_modules/undici/docs/docs/api/Debug.md +62 -0
  1842. package/node_modules/undici/docs/docs/api/DiagnosticsChannel.md +315 -0
  1843. package/node_modules/undici/docs/docs/api/Dispatcher.md +1392 -0
  1844. package/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +159 -0
  1845. package/node_modules/undici/docs/docs/api/Errors.md +49 -0
  1846. package/node_modules/undici/docs/docs/api/EventSource.md +45 -0
  1847. package/node_modules/undici/docs/docs/api/Fetch.md +60 -0
  1848. package/node_modules/undici/docs/docs/api/GlobalInstallation.md +139 -0
  1849. package/node_modules/undici/docs/docs/api/H2CClient.md +263 -0
  1850. package/node_modules/undici/docs/docs/api/MockAgent.md +603 -0
  1851. package/node_modules/undici/docs/docs/api/MockCallHistory.md +197 -0
  1852. package/node_modules/undici/docs/docs/api/MockCallHistoryLog.md +43 -0
  1853. package/node_modules/undici/docs/docs/api/MockClient.md +81 -0
  1854. package/node_modules/undici/docs/docs/api/MockErrors.md +12 -0
  1855. package/node_modules/undici/docs/docs/api/MockPool.md +555 -0
  1856. package/node_modules/undici/docs/docs/api/Pool.md +84 -0
  1857. package/node_modules/undici/docs/docs/api/PoolStats.md +35 -0
  1858. package/node_modules/undici/docs/docs/api/ProxyAgent.md +229 -0
  1859. package/node_modules/undici/docs/docs/api/RedirectHandler.md +93 -0
  1860. package/node_modules/undici/docs/docs/api/RetryAgent.md +50 -0
  1861. package/node_modules/undici/docs/docs/api/RetryHandler.md +118 -0
  1862. package/node_modules/undici/docs/docs/api/RoundRobinPool.md +145 -0
  1863. package/node_modules/undici/docs/docs/api/SnapshotAgent.md +616 -0
  1864. package/node_modules/undici/docs/docs/api/Socks5ProxyAgent.md +274 -0
  1865. package/node_modules/undici/docs/docs/api/Util.md +25 -0
  1866. package/node_modules/undici/docs/docs/api/WebSocket.md +141 -0
  1867. package/node_modules/undici/docs/docs/api/api-lifecycle.md +91 -0
  1868. package/node_modules/undici/docs/docs/best-practices/client-certificate.md +64 -0
  1869. package/node_modules/undici/docs/docs/best-practices/crawling.md +58 -0
  1870. package/node_modules/undici/docs/docs/best-practices/mocking-request.md +190 -0
  1871. package/node_modules/undici/docs/docs/best-practices/proxy.md +127 -0
  1872. package/node_modules/undici/docs/docs/best-practices/undici-vs-builtin-fetch.md +224 -0
  1873. package/node_modules/undici/docs/docs/best-practices/writing-tests.md +63 -0
  1874. package/node_modules/undici/index-fetch.js +65 -0
  1875. package/node_modules/undici/index.d.ts +3 -0
  1876. package/node_modules/undici/index.js +234 -0
  1877. package/node_modules/undici/lib/api/abort-signal.js +59 -0
  1878. package/node_modules/undici/lib/api/api-connect.js +110 -0
  1879. package/node_modules/undici/lib/api/api-pipeline.js +252 -0
  1880. package/node_modules/undici/lib/api/api-request.js +214 -0
  1881. package/node_modules/undici/lib/api/api-stream.js +209 -0
  1882. package/node_modules/undici/lib/api/api-upgrade.js +111 -0
  1883. package/node_modules/undici/lib/api/index.js +7 -0
  1884. package/node_modules/undici/lib/api/readable.js +580 -0
  1885. package/node_modules/undici/lib/cache/memory-cache-store.js +234 -0
  1886. package/node_modules/undici/lib/cache/sqlite-cache-store.js +461 -0
  1887. package/node_modules/undici/lib/core/connect.js +137 -0
  1888. package/node_modules/undici/lib/core/constants.js +143 -0
  1889. package/node_modules/undici/lib/core/diagnostics.js +227 -0
  1890. package/node_modules/undici/lib/core/errors.js +477 -0
  1891. package/node_modules/undici/lib/core/request.js +438 -0
  1892. package/node_modules/undici/lib/core/socks5-client.js +407 -0
  1893. package/node_modules/undici/lib/core/socks5-utils.js +203 -0
  1894. package/node_modules/undici/lib/core/symbols.js +75 -0
  1895. package/node_modules/undici/lib/core/tree.js +160 -0
  1896. package/node_modules/undici/lib/core/util.js +992 -0
  1897. package/node_modules/undici/lib/dispatcher/agent.js +158 -0
  1898. package/node_modules/undici/lib/dispatcher/balanced-pool.js +219 -0
  1899. package/node_modules/undici/lib/dispatcher/client-h1.js +1610 -0
  1900. package/node_modules/undici/lib/dispatcher/client-h2.js +995 -0
  1901. package/node_modules/undici/lib/dispatcher/client.js +659 -0
  1902. package/node_modules/undici/lib/dispatcher/dispatcher-base.js +165 -0
  1903. package/node_modules/undici/lib/dispatcher/dispatcher.js +48 -0
  1904. package/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +146 -0
  1905. package/node_modules/undici/lib/dispatcher/fixed-queue.js +135 -0
  1906. package/node_modules/undici/lib/dispatcher/h2c-client.js +51 -0
  1907. package/node_modules/undici/lib/dispatcher/pool-base.js +214 -0
  1908. package/node_modules/undici/lib/dispatcher/pool.js +118 -0
  1909. package/node_modules/undici/lib/dispatcher/proxy-agent.js +318 -0
  1910. package/node_modules/undici/lib/dispatcher/retry-agent.js +35 -0
  1911. package/node_modules/undici/lib/dispatcher/round-robin-pool.js +137 -0
  1912. package/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +249 -0
  1913. package/node_modules/undici/lib/encoding/index.js +33 -0
  1914. package/node_modules/undici/lib/global.js +50 -0
  1915. package/node_modules/undici/lib/handler/cache-handler.js +578 -0
  1916. package/node_modules/undici/lib/handler/cache-revalidation-handler.js +124 -0
  1917. package/node_modules/undici/lib/handler/decorator-handler.js +67 -0
  1918. package/node_modules/undici/lib/handler/deduplication-handler.js +460 -0
  1919. package/node_modules/undici/lib/handler/redirect-handler.js +238 -0
  1920. package/node_modules/undici/lib/handler/retry-handler.js +394 -0
  1921. package/node_modules/undici/lib/handler/unwrap-handler.js +100 -0
  1922. package/node_modules/undici/lib/handler/wrap-handler.js +105 -0
  1923. package/node_modules/undici/lib/interceptor/cache.js +495 -0
  1924. package/node_modules/undici/lib/interceptor/decompress.js +259 -0
  1925. package/node_modules/undici/lib/interceptor/deduplicate.js +117 -0
  1926. package/node_modules/undici/lib/interceptor/dns.js +571 -0
  1927. package/node_modules/undici/lib/interceptor/dump.js +112 -0
  1928. package/node_modules/undici/lib/interceptor/redirect.js +21 -0
  1929. package/node_modules/undici/lib/interceptor/response-error.js +95 -0
  1930. package/node_modules/undici/lib/interceptor/retry.js +19 -0
  1931. package/node_modules/undici/lib/llhttp/.gitkeep +0 -0
  1932. package/node_modules/undici/lib/llhttp/constants.d.ts +195 -0
  1933. package/node_modules/undici/lib/llhttp/constants.js +531 -0
  1934. package/node_modules/undici/lib/llhttp/llhttp-wasm.js +15 -0
  1935. package/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +15 -0
  1936. package/node_modules/undici/lib/llhttp/utils.d.ts +2 -0
  1937. package/node_modules/undici/lib/llhttp/utils.js +12 -0
  1938. package/node_modules/undici/lib/mock/mock-agent.js +232 -0
  1939. package/node_modules/undici/lib/mock/mock-call-history.js +248 -0
  1940. package/node_modules/undici/lib/mock/mock-client.js +68 -0
  1941. package/node_modules/undici/lib/mock/mock-errors.js +29 -0
  1942. package/node_modules/undici/lib/mock/mock-interceptor.js +209 -0
  1943. package/node_modules/undici/lib/mock/mock-pool.js +68 -0
  1944. package/node_modules/undici/lib/mock/mock-symbols.js +32 -0
  1945. package/node_modules/undici/lib/mock/mock-utils.js +486 -0
  1946. package/node_modules/undici/lib/mock/pending-interceptors-formatter.js +43 -0
  1947. package/node_modules/undici/lib/mock/snapshot-agent.js +353 -0
  1948. package/node_modules/undici/lib/mock/snapshot-recorder.js +588 -0
  1949. package/node_modules/undici/lib/mock/snapshot-utils.js +158 -0
  1950. package/node_modules/undici/lib/util/cache.js +407 -0
  1951. package/node_modules/undici/lib/util/date.js +653 -0
  1952. package/node_modules/undici/lib/util/promise.js +28 -0
  1953. package/node_modules/undici/lib/util/runtime-features.js +124 -0
  1954. package/node_modules/undici/lib/util/stats.js +32 -0
  1955. package/node_modules/undici/lib/util/timers.js +425 -0
  1956. package/node_modules/undici/lib/web/cache/cache.js +864 -0
  1957. package/node_modules/undici/lib/web/cache/cachestorage.js +152 -0
  1958. package/node_modules/undici/lib/web/cache/util.js +45 -0
  1959. package/node_modules/undici/lib/web/cookies/constants.js +12 -0
  1960. package/node_modules/undici/lib/web/cookies/index.js +199 -0
  1961. package/node_modules/undici/lib/web/cookies/parse.js +322 -0
  1962. package/node_modules/undici/lib/web/cookies/util.js +282 -0
  1963. package/node_modules/undici/lib/web/eventsource/eventsource-stream.js +399 -0
  1964. package/node_modules/undici/lib/web/eventsource/eventsource.js +501 -0
  1965. package/node_modules/undici/lib/web/eventsource/util.js +29 -0
  1966. package/node_modules/undici/lib/web/fetch/LICENSE +21 -0
  1967. package/node_modules/undici/lib/web/fetch/body.js +509 -0
  1968. package/node_modules/undici/lib/web/fetch/constants.js +131 -0
  1969. package/node_modules/undici/lib/web/fetch/data-url.js +596 -0
  1970. package/node_modules/undici/lib/web/fetch/formdata-parser.js +575 -0
  1971. package/node_modules/undici/lib/web/fetch/formdata.js +259 -0
  1972. package/node_modules/undici/lib/web/fetch/global.js +40 -0
  1973. package/node_modules/undici/lib/web/fetch/headers.js +719 -0
  1974. package/node_modules/undici/lib/web/fetch/index.js +2397 -0
  1975. package/node_modules/undici/lib/web/fetch/request.js +1115 -0
  1976. package/node_modules/undici/lib/web/fetch/response.js +641 -0
  1977. package/node_modules/undici/lib/web/fetch/util.js +1520 -0
  1978. package/node_modules/undici/lib/web/infra/index.js +229 -0
  1979. package/node_modules/undici/lib/web/subresource-integrity/Readme.md +9 -0
  1980. package/node_modules/undici/lib/web/subresource-integrity/subresource-integrity.js +307 -0
  1981. package/node_modules/undici/lib/web/webidl/index.js +1006 -0
  1982. package/node_modules/undici/lib/web/websocket/connection.js +329 -0
  1983. package/node_modules/undici/lib/web/websocket/constants.js +126 -0
  1984. package/node_modules/undici/lib/web/websocket/events.js +331 -0
  1985. package/node_modules/undici/lib/web/websocket/frame.js +133 -0
  1986. package/node_modules/undici/lib/web/websocket/permessage-deflate.js +118 -0
  1987. package/node_modules/undici/lib/web/websocket/receiver.js +450 -0
  1988. package/node_modules/undici/lib/web/websocket/sender.js +109 -0
  1989. package/node_modules/undici/lib/web/websocket/stream/websocketerror.js +104 -0
  1990. package/node_modules/undici/lib/web/websocket/stream/websocketstream.js +497 -0
  1991. package/node_modules/undici/lib/web/websocket/util.js +347 -0
  1992. package/node_modules/undici/lib/web/websocket/websocket.js +751 -0
  1993. package/node_modules/undici/package.json +152 -0
  1994. package/node_modules/undici/scripts/strip-comments.js +10 -0
  1995. package/node_modules/undici/types/README.md +6 -0
  1996. package/node_modules/undici/types/agent.d.ts +32 -0
  1997. package/node_modules/undici/types/api.d.ts +43 -0
  1998. package/node_modules/undici/types/balanced-pool.d.ts +30 -0
  1999. package/node_modules/undici/types/cache-interceptor.d.ts +179 -0
  2000. package/node_modules/undici/types/cache.d.ts +36 -0
  2001. package/node_modules/undici/types/client-stats.d.ts +15 -0
  2002. package/node_modules/undici/types/client.d.ts +123 -0
  2003. package/node_modules/undici/types/connector.d.ts +36 -0
  2004. package/node_modules/undici/types/content-type.d.ts +21 -0
  2005. package/node_modules/undici/types/cookies.d.ts +30 -0
  2006. package/node_modules/undici/types/diagnostics-channel.d.ts +74 -0
  2007. package/node_modules/undici/types/dispatcher.d.ts +273 -0
  2008. package/node_modules/undici/types/env-http-proxy-agent.d.ts +22 -0
  2009. package/node_modules/undici/types/errors.d.ts +177 -0
  2010. package/node_modules/undici/types/eventsource.d.ts +66 -0
  2011. package/node_modules/undici/types/fetch.d.ts +231 -0
  2012. package/node_modules/undici/types/formdata.d.ts +114 -0
  2013. package/node_modules/undici/types/global-dispatcher.d.ts +9 -0
  2014. package/node_modules/undici/types/global-origin.d.ts +7 -0
  2015. package/node_modules/undici/types/h2c-client.d.ts +73 -0
  2016. package/node_modules/undici/types/handlers.d.ts +14 -0
  2017. package/node_modules/undici/types/header.d.ts +160 -0
  2018. package/node_modules/undici/types/index.d.ts +91 -0
  2019. package/node_modules/undici/types/interceptors.d.ts +80 -0
  2020. package/node_modules/undici/types/mock-agent.d.ts +68 -0
  2021. package/node_modules/undici/types/mock-call-history.d.ts +111 -0
  2022. package/node_modules/undici/types/mock-client.d.ts +27 -0
  2023. package/node_modules/undici/types/mock-errors.d.ts +12 -0
  2024. package/node_modules/undici/types/mock-interceptor.d.ts +94 -0
  2025. package/node_modules/undici/types/mock-pool.d.ts +27 -0
  2026. package/node_modules/undici/types/patch.d.ts +29 -0
  2027. package/node_modules/undici/types/pool-stats.d.ts +19 -0
  2028. package/node_modules/undici/types/pool.d.ts +41 -0
  2029. package/node_modules/undici/types/proxy-agent.d.ts +29 -0
  2030. package/node_modules/undici/types/readable.d.ts +68 -0
  2031. package/node_modules/undici/types/retry-agent.d.ts +8 -0
  2032. package/node_modules/undici/types/retry-handler.d.ts +125 -0
  2033. package/node_modules/undici/types/round-robin-pool.d.ts +41 -0
  2034. package/node_modules/undici/types/snapshot-agent.d.ts +109 -0
  2035. package/node_modules/undici/types/socks5-proxy-agent.d.ts +25 -0
  2036. package/node_modules/undici/types/util.d.ts +18 -0
  2037. package/node_modules/undici/types/utility.d.ts +7 -0
  2038. package/node_modules/undici/types/webidl.d.ts +347 -0
  2039. package/node_modules/undici/types/websocket.d.ts +188 -0
  2040. package/node_modules/unpdf/LICENSE +21 -0
  2041. package/node_modules/unpdf/README.md +371 -0
  2042. package/node_modules/unpdf/dist/index.cjs +340 -0
  2043. package/node_modules/unpdf/dist/index.d.cts +152 -0
  2044. package/node_modules/unpdf/dist/index.d.mts +152 -0
  2045. package/node_modules/unpdf/dist/index.d.ts +152 -0
  2046. package/node_modules/unpdf/dist/index.mjs +328 -0
  2047. package/node_modules/unpdf/dist/pdfjs.d.mts +1 -0
  2048. package/node_modules/unpdf/dist/pdfjs.d.ts +1 -0
  2049. package/node_modules/unpdf/dist/pdfjs.mjs +1 -0
  2050. package/node_modules/unpdf/dist/types/src/display/annotation_layer.d.ts +271 -0
  2051. package/node_modules/unpdf/dist/types/src/display/annotation_storage.d.ts +94 -0
  2052. package/node_modules/unpdf/dist/types/src/display/api.d.ts +1595 -0
  2053. package/node_modules/unpdf/dist/types/src/display/api_utils.d.ts +13 -0
  2054. package/node_modules/unpdf/dist/types/src/display/canvas.d.ts +207 -0
  2055. package/node_modules/unpdf/dist/types/src/display/canvas_dependency_tracker.d.ts +160 -0
  2056. package/node_modules/unpdf/dist/types/src/display/canvas_factory.d.ts +27 -0
  2057. package/node_modules/unpdf/dist/types/src/display/cmap_reader_factory.d.ts +25 -0
  2058. package/node_modules/unpdf/dist/types/src/display/content_disposition.d.ts +7 -0
  2059. package/node_modules/unpdf/dist/types/src/display/display_utils.d.ts +280 -0
  2060. package/node_modules/unpdf/dist/types/src/display/draw_layer.d.ts +26 -0
  2061. package/node_modules/unpdf/dist/types/src/display/editor/alt_text.d.ts +34 -0
  2062. package/node_modules/unpdf/dist/types/src/display/editor/annotation_editor_layer.d.ts +232 -0
  2063. package/node_modules/unpdf/dist/types/src/display/editor/color_picker.d.ts +39 -0
  2064. package/node_modules/unpdf/dist/types/src/display/editor/comment.d.ts +47 -0
  2065. package/node_modules/unpdf/dist/types/src/display/editor/draw.d.ts +121 -0
  2066. package/node_modules/unpdf/dist/types/src/display/editor/drawers/contour.d.ts +3 -0
  2067. package/node_modules/unpdf/dist/types/src/display/editor/drawers/freedraw.d.ts +32 -0
  2068. package/node_modules/unpdf/dist/types/src/display/editor/drawers/highlight.d.ts +37 -0
  2069. package/node_modules/unpdf/dist/types/src/display/editor/drawers/inkdraw.d.ts +129 -0
  2070. package/node_modules/unpdf/dist/types/src/display/editor/drawers/outline.d.ts +19 -0
  2071. package/node_modules/unpdf/dist/types/src/display/editor/drawers/signaturedraw.d.ts +79 -0
  2072. package/node_modules/unpdf/dist/types/src/display/editor/editor.d.ts +575 -0
  2073. package/node_modules/unpdf/dist/types/src/display/editor/freetext.d.ts +63 -0
  2074. package/node_modules/unpdf/dist/types/src/display/editor/highlight.d.ts +76 -0
  2075. package/node_modules/unpdf/dist/types/src/display/editor/ink.d.ts +42 -0
  2076. package/node_modules/unpdf/dist/types/src/display/editor/signature.d.ts +77 -0
  2077. package/node_modules/unpdf/dist/types/src/display/editor/stamp.d.ts +49 -0
  2078. package/node_modules/unpdf/dist/types/src/display/editor/toolbar.d.ts +26 -0
  2079. package/node_modules/unpdf/dist/types/src/display/editor/tools.d.ts +448 -0
  2080. package/node_modules/unpdf/dist/types/src/display/fetch_stream.d.ts +60 -0
  2081. package/node_modules/unpdf/dist/types/src/display/filter_factory.d.ts +29 -0
  2082. package/node_modules/unpdf/dist/types/src/display/font_loader.d.ts +65 -0
  2083. package/node_modules/unpdf/dist/types/src/display/metadata.d.ts +10 -0
  2084. package/node_modules/unpdf/dist/types/src/display/network.d.ts +86 -0
  2085. package/node_modules/unpdf/dist/types/src/display/network_utils.d.ts +15 -0
  2086. package/node_modules/unpdf/dist/types/src/display/node_stream.d.ts +54 -0
  2087. package/node_modules/unpdf/dist/types/src/display/node_utils.d.ts +32 -0
  2088. package/node_modules/unpdf/dist/types/src/display/optional_content_config.d.ts +18 -0
  2089. package/node_modules/unpdf/dist/types/src/display/pattern_helper.d.ts +75 -0
  2090. package/node_modules/unpdf/dist/types/src/display/pdf_objects.d.ts +40 -0
  2091. package/node_modules/unpdf/dist/types/src/display/standard_fontdata_factory.d.ts +20 -0
  2092. package/node_modules/unpdf/dist/types/src/display/svg_factory.d.ts +14 -0
  2093. package/node_modules/unpdf/dist/types/src/display/text_layer.d.ts +85 -0
  2094. package/node_modules/unpdf/dist/types/src/display/touch_manager.d.ts +18 -0
  2095. package/node_modules/unpdf/dist/types/src/display/transport_stream.d.ts +67 -0
  2096. package/node_modules/unpdf/dist/types/src/display/wasm_factory.d.ts +20 -0
  2097. package/node_modules/unpdf/dist/types/src/display/worker_options.d.ts +25 -0
  2098. package/node_modules/unpdf/dist/types/src/display/xfa_layer.d.ts +47 -0
  2099. package/node_modules/unpdf/dist/types/src/display/xfa_text.d.ts +21 -0
  2100. package/node_modules/unpdf/dist/types/src/interfaces.d.ts +122 -0
  2101. package/node_modules/unpdf/dist/types/src/pdf.d.ts +63 -0
  2102. package/node_modules/unpdf/dist/types/src/shared/image_utils.d.ts +17 -0
  2103. package/node_modules/unpdf/dist/types/src/shared/message_handler.d.ts +48 -0
  2104. package/node_modules/unpdf/dist/types/src/shared/murmurhash3.d.ts +7 -0
  2105. package/node_modules/unpdf/dist/types/src/shared/obj-bin-transform.d.ts +64 -0
  2106. package/node_modules/unpdf/dist/types/src/shared/scripting_utils.d.ts +18 -0
  2107. package/node_modules/unpdf/dist/types/src/shared/util.d.ts +415 -0
  2108. package/node_modules/unpdf/dist/types/web/annotation_editor_layer_builder.d.ts +65 -0
  2109. package/node_modules/unpdf/dist/types/web/annotation_layer_builder.d.ts +108 -0
  2110. package/node_modules/unpdf/dist/types/web/app_options.d.ts +16 -0
  2111. package/node_modules/unpdf/dist/types/web/autolinker.d.ts +28 -0
  2112. package/node_modules/unpdf/dist/types/web/base_pdf_page_view.d.ts +28 -0
  2113. package/node_modules/unpdf/dist/types/web/comment_manager.d.ts +20 -0
  2114. package/node_modules/unpdf/dist/types/web/download_manager.d.ts +13 -0
  2115. package/node_modules/unpdf/dist/types/web/draw_layer_builder.d.ts +34 -0
  2116. package/node_modules/unpdf/dist/types/web/event_utils.d.ts +77 -0
  2117. package/node_modules/unpdf/dist/types/web/generic_scripting.d.ts +8 -0
  2118. package/node_modules/unpdf/dist/types/web/genericl10n.d.ts +22 -0
  2119. package/node_modules/unpdf/dist/types/web/interfaces.d.ts +174 -0
  2120. package/node_modules/unpdf/dist/types/web/l10n.d.ts +34 -0
  2121. package/node_modules/unpdf/dist/types/web/pdf_find_controller.d.ts +134 -0
  2122. package/node_modules/unpdf/dist/types/web/pdf_find_utils.d.ts +16 -0
  2123. package/node_modules/unpdf/dist/types/web/pdf_history.d.ts +116 -0
  2124. package/node_modules/unpdf/dist/types/web/pdf_link_service.d.ts +147 -0
  2125. package/node_modules/unpdf/dist/types/web/pdf_page_detail_view.d.ts +33 -0
  2126. package/node_modules/unpdf/dist/types/web/pdf_page_view.d.ts +243 -0
  2127. package/node_modules/unpdf/dist/types/web/pdf_rendering_queue.d.ts +54 -0
  2128. package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.component.d.ts +5 -0
  2129. package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.d.ts +57 -0
  2130. package/node_modules/unpdf/dist/types/web/pdf_single_page_viewer.d.ts +7 -0
  2131. package/node_modules/unpdf/dist/types/web/pdf_thumbnail_view.d.ts +132 -0
  2132. package/node_modules/unpdf/dist/types/web/pdf_thumbnail_viewer.d.ts +117 -0
  2133. package/node_modules/unpdf/dist/types/web/pdf_viewer.component.d.ts +23 -0
  2134. package/node_modules/unpdf/dist/types/web/pdf_viewer.d.ts +616 -0
  2135. package/node_modules/unpdf/dist/types/web/struct_tree_layer_builder.d.ts +25 -0
  2136. package/node_modules/unpdf/dist/types/web/text_accessibility.d.ts +44 -0
  2137. package/node_modules/unpdf/dist/types/web/text_highlighter.d.ts +63 -0
  2138. package/node_modules/unpdf/dist/types/web/text_layer_builder.d.ts +65 -0
  2139. package/node_modules/unpdf/dist/types/web/ui_utils.d.ts +273 -0
  2140. package/node_modules/unpdf/dist/types/web/xfa_layer_builder.d.ts +50 -0
  2141. package/node_modules/unpdf/package.json +92 -0
  2142. package/node_modules/whatwg-encoding/LICENSE.txt +7 -0
  2143. package/node_modules/whatwg-encoding/README.md +50 -0
  2144. package/node_modules/whatwg-encoding/lib/labels-to-names.json +217 -0
  2145. package/node_modules/whatwg-encoding/lib/supported-names.json +38 -0
  2146. package/node_modules/whatwg-encoding/lib/whatwg-encoding.js +60 -0
  2147. package/node_modules/whatwg-encoding/package.json +32 -0
  2148. package/node_modules/whatwg-mimetype/LICENSE.txt +7 -0
  2149. package/node_modules/whatwg-mimetype/README.md +101 -0
  2150. package/node_modules/whatwg-mimetype/lib/mime-type-parameters.js +70 -0
  2151. package/node_modules/whatwg-mimetype/lib/mime-type.js +127 -0
  2152. package/node_modules/whatwg-mimetype/lib/parser.js +105 -0
  2153. package/node_modules/whatwg-mimetype/lib/serializer.js +25 -0
  2154. package/node_modules/whatwg-mimetype/lib/utils.js +60 -0
  2155. package/node_modules/whatwg-mimetype/package.json +45 -0
  2156. package/node_modules/wmf/LICENSE +201 -0
  2157. package/node_modules/wmf/README.md +92 -0
  2158. package/node_modules/wmf/dist/wmf.js +2 -0
  2159. package/node_modules/wmf/dist/wmf.js.map +1 -0
  2160. package/node_modules/wmf/dist/wmf.node.js +2 -0
  2161. package/node_modules/wmf/dist/wmf.node.js.map +1 -0
  2162. package/node_modules/wmf/package.json +68 -0
  2163. package/node_modules/word/CONTRIBUTING.md +61 -0
  2164. package/node_modules/word/LICENSE +201 -0
  2165. package/node_modules/word/README.md +2 -0
  2166. package/node_modules/word/package.json +29 -0
  2167. package/node_modules/word/word.js +1 -0
  2168. package/node_modules/xlsx/CHANGELOG.md +264 -0
  2169. package/node_modules/xlsx/LICENSE +201 -0
  2170. package/node_modules/xlsx/README.md +4504 -0
  2171. package/node_modules/xlsx/bin/xlsx.njs +310 -0
  2172. package/node_modules/xlsx/bower.json +22 -0
  2173. package/node_modules/xlsx/dist/LICENSE +201 -0
  2174. package/node_modules/xlsx/dist/cpexcel.full.mjs +1502 -0
  2175. package/node_modules/xlsx/dist/cpexcel.js +1506 -0
  2176. package/node_modules/xlsx/dist/shim.min.js +2 -0
  2177. package/node_modules/xlsx/dist/xlsx.core.min.js +15 -0
  2178. package/node_modules/xlsx/dist/xlsx.core.min.map +1 -0
  2179. package/node_modules/xlsx/dist/xlsx.extendscript.js +24642 -0
  2180. package/node_modules/xlsx/dist/xlsx.full.min.js +22 -0
  2181. package/node_modules/xlsx/dist/xlsx.full.min.map +1 -0
  2182. package/node_modules/xlsx/dist/xlsx.mini.min.js +9 -0
  2183. package/node_modules/xlsx/dist/xlsx.mini.min.map +1 -0
  2184. package/node_modules/xlsx/dist/xlsx.zahl.js +4 -0
  2185. package/node_modules/xlsx/dist/xlsx.zahl.mjs +2 -0
  2186. package/node_modules/xlsx/formats.png +0 -0
  2187. package/node_modules/xlsx/legend.png +0 -0
  2188. package/node_modules/xlsx/package.json +101 -0
  2189. package/node_modules/xlsx/types/index.d.ts +900 -0
  2190. package/node_modules/xlsx/types/tsconfig.json +15 -0
  2191. package/node_modules/xlsx/xlsx.js +24486 -0
  2192. package/node_modules/xlsx/xlsx.mjs +24597 -0
  2193. package/node_modules/xlsx/xlsxworker.js +14 -0
  2194. package/node_modules/xml2js/LICENSE +19 -0
  2195. package/node_modules/xml2js/README.md +507 -0
  2196. package/node_modules/xml2js/lib/bom.js +12 -0
  2197. package/node_modules/xml2js/lib/builder.js +127 -0
  2198. package/node_modules/xml2js/lib/defaults.js +72 -0
  2199. package/node_modules/xml2js/lib/parser.js +395 -0
  2200. package/node_modules/xml2js/lib/processors.js +34 -0
  2201. package/node_modules/xml2js/lib/xml2js.bc.js +28337 -0
  2202. package/node_modules/xml2js/lib/xml2js.js +39 -0
  2203. package/node_modules/xml2js/node_modules/xmlbuilder/CHANGELOG.md +470 -0
  2204. package/node_modules/xml2js/node_modules/xmlbuilder/LICENSE +21 -0
  2205. package/node_modules/xml2js/node_modules/xmlbuilder/README.md +86 -0
  2206. package/node_modules/xml2js/node_modules/xmlbuilder/appveyor.yml +20 -0
  2207. package/node_modules/xml2js/node_modules/xmlbuilder/lib/Derivation.js +10 -0
  2208. package/node_modules/xml2js/node_modules/xmlbuilder/lib/DocumentPosition.js +12 -0
  2209. package/node_modules/xml2js/node_modules/xmlbuilder/lib/NodeType.js +23 -0
  2210. package/node_modules/xml2js/node_modules/xmlbuilder/lib/OperationType.js +11 -0
  2211. package/node_modules/xml2js/node_modules/xmlbuilder/lib/Utility.js +83 -0
  2212. package/node_modules/xml2js/node_modules/xmlbuilder/lib/WriterState.js +10 -0
  2213. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLAttribute.js +108 -0
  2214. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCData.js +36 -0
  2215. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCharacterData.js +79 -0
  2216. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLComment.js +36 -0
  2217. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js +64 -0
  2218. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js +16 -0
  2219. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMImplementation.js +32 -0
  2220. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMStringList.js +28 -0
  2221. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDAttList.js +55 -0
  2222. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDElement.js +38 -0
  2223. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDEntity.js +97 -0
  2224. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDNotation.js +52 -0
  2225. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDeclaration.js +43 -0
  2226. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocType.js +186 -0
  2227. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocument.js +242 -0
  2228. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentCB.js +528 -0
  2229. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentFragment.js +24 -0
  2230. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDummy.js +31 -0
  2231. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLElement.js +298 -0
  2232. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js +58 -0
  2233. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNode.js +785 -0
  2234. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeFilter.js +48 -0
  2235. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeList.js +28 -0
  2236. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js +49 -0
  2237. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLRaw.js +35 -0
  2238. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStreamWriter.js +176 -0
  2239. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringWriter.js +35 -0
  2240. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringifier.js +240 -0
  2241. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLText.js +69 -0
  2242. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLTypeInfo.js +21 -0
  2243. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLUserDataHandler.js +16 -0
  2244. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLWriterBase.js +428 -0
  2245. package/node_modules/xml2js/node_modules/xmlbuilder/lib/index.js +65 -0
  2246. package/node_modules/xml2js/node_modules/xmlbuilder/package.json +39 -0
  2247. package/node_modules/xml2js/node_modules/xmlbuilder/typings/index.d.ts +153 -0
  2248. package/node_modules/xml2js/package.json +93 -0
  2249. package/package.json +55 -2
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["webpack://WMF/webpack/bootstrap","webpack://WMF/./src/Records.ts","webpack://WMF/./src/canvas.ts","webpack://WMF/./src/index.ts","webpack://WMF/./src/util.ts","webpack://WMF/./src/wmf.ts","webpack://WMF/./misc/entry.js"],"names":[],"mappings":"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","file":"wmf.node.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"./misc/entry.js\");\n","/*! wmf.js (C) 2020-present SheetJS LLC -- https://sheetjs.com */\nexport interface WMFRecord {\n\tn: string;\n}\n\nexport interface WMFEscape {\n\tn: string;\n}\n\n/* 2.1.1.1 RecordType Enumeration */\nexport const WMFRecords: {[key: number]: WMFRecord} = {\n\t0x0000: { n: \"META_EOF\" }, // 2.3.2.1\n\t0x0626: { n: \"META_ESCAPE\" }, // 2.3.6.1\n\n\t0x0940: { n: \"META_DIBBITBLT\" }, // 2.3.1.2\n\t0x0B41: { n: \"META_DIBSTRETCHBLT\" }, // 2.3.1.3\n\n\t0x0A32: { n: \"META_EXTTEXTOUT\" }, // 2.3.3.5\n\t0x0325: { n: \"META_POLYLINE\" }, // 2.3.3.14\n\t0x0324: { n: \"META_POLYGON\" }, // 2.3.3.15\n\t0x0538: { n: \"META_POLYPOLYGON\" }, // 2.3.3.16\n\n\t0x02FC: { n: \"META_CREATEBRUSHINDIRECT\" }, // 2.3.4.1\n\t0x02FB: { n: \"META_CREATEFONTINDIRECT\" }, // 2.3.4.2\n\t0x02FA: { n: \"META_CREATEPENINDIRECT\" }, // 2.3.4.5\n\t0x01F0: { n: \"META_DELETEOBJECT\" }, // 2.3.4.7\n\t0x012C: { n: \"META_SELECTCLIPREGION\" }, // 2.3.4.9\n\t0x012D: { n: \"META_SELECTOBJECT\" }, // 2.3.4.10\n\n\t0x0416: { n: \"META_INTERSECTCLIPRECT\" }, // 2.3.5.3\n\t0x0035: { n: \"META_REALIZEPALETTE\" }, // 2.3.5.8\n\t0x0127: { n: \"META_RESTOREDC\" }, // 2.3.5.10\n\t0x001E: { n: \"META_SAVEDC\" }, // 2.3.5.11\n\t0x0102: { n: \"META_SETBKMODE\" }, // 2.3.5.15\n\t0x0103: { n: \"META_SETMAPMODE\" }, // 2.3.5.17\n\t0x0037: { n: \"META_SETPALENTRIES\" }, // 2.3.5.19\n\t0x0106: { n: \"META_SETPOLYFILLMODE\" }, // 2.3.5.20\n\t0x0107: { n: \"META_SETSTRETCHBLTMODE\" }, // 2.3.5.23\n\t0x012E: { n: \"META_SETTEXTALIGN\" }, // 2.3.5.24\n\t0x0209: { n: \"META_SETTEXTCOLOR\" }, // 2.3.5.26\n\t0x020C: { n: \"META_SETWINDOWEXT\" }, // 2.3.5.30\n\t0x020B: { n: \"META_SETWINDOWORG\" }, // 2.3.5.31\n\n\t0xFFFF: { n: \"META_SHEETJS\" }\n};\n\nexport const WMFEscapes: {[key: number]: WMFEscape} = {\n\t0x000F: { n: \"META_ESCAPE_ENHANCED_METAFILE\" }\n};\n\n","/*! wmf.js (C) 2020-present SheetJS LLC -- https://sheetjs.com */\nimport { PreppedBytes, prep_blob } from './util';\nimport { Action, PlaybackDeviceContextState, get_actions_prepped_bytes } from './wmf'\n\nexport const css_color = (clr: number): string => `#${(clr & 0xFF).toString(16).padStart(2, \"0\")}${((clr>>8) & 0xFF).toString(16).padStart(2, \"0\")}${((clr>>16) & 0xFF).toString(16).padStart(2, \"0\")}`\n\nexport const set_ctx_state = (ctx: CanvasRenderingContext2D, state: PlaybackDeviceContextState): void => {\n\tif(!state) return;\n\tlet font = \"\";\n\tif(state.Font) {\n\t\tif(state.Font.Italic) font += \" italic\";\n\t\tif(state.Font.Weight) font += ` ${state.Font.Weight == 700 ? \"bold\" : state.Font.Weight == 400 ? \"\" : state.Font.Weight}`;\n\t\tif(state.Font.Height < 0) font += ` ${-state.Font.Height}px`;\n\t\telse if(state.Font.Height > 0) font += ` ${state.Font.Height}px`;\n\t\tlet name = state.Font.Name || \"\";\n\t\tif(name == \"System\") name = \"Calibri\"; // TODO: default sys font is Segoe UI\n\t\tif(name) font += ` '${name}', sans-serif`;\n\t\tctx.font = font.trim();\n\t}\n};\n\n// TODO: DIB BIT ORDER?\nexport const render_actions_to_context = (out: Action[], ctx: CanvasRenderingContext2D) => {\n\tout.forEach(act => {\n\t\tctx.save();\n\t\tset_ctx_state(ctx, act.s);\n\t\tswitch(act.t) {\n\t\t\tcase \"poly\":\n\t\t\t\tctx.beginPath();\n\t\t\t\tif(act.s.Pen.Color != null) ctx.strokeStyle = css_color(act.s.Pen.Color);\n\t\t\t\tif(act.s.Pen.Width > 0) ctx.lineWidth = act.s.Pen.Width;\n\t\t\t\tif(act.s.Brush.Color != null) ctx.fillStyle = css_color(act.s.Brush.Color);\n\t\t\t\tctx.moveTo(act.p[0][0], act.p[0][1]);\n\t\t\t\tact.p.slice(1).forEach(([x,y]) => {\n\t\t\t\t\tctx.lineTo(x, y);\n\t\t\t\t});\n\t\t\t\tif(act.g) ctx.closePath();\n\t\t\t\tif(act.s.Pen.Style != 5) ctx.stroke();\n\t\t\t\tif(act.s.Brush.Style != 1) ctx.fill();\n\t\t\t\tbreak;\n\t\t\tcase \"text\":\n\t\t\t\tif(act.s && act.s.TextColor) ctx.fillStyle = css_color(act.s.TextColor);\n\t\t\t\tif(act.s.Font.Angle != 0) {\n\t\t\t\t\tctx.translate(act.p[0], act.p[1]);\n\t\t\t\t\tctx.rotate(-act.s.Font.Angle * Math.PI / 180);\n\t\t\t\t\tctx.fillText(act.v, 0, 0);\n\t\t\t\t\tctx.translate(-act.p[0], -act.p[1]);\n\t\t\t\t}\n\t\t\t\telse ctx.fillText(act.v, act.p[0], act.p[1]);\n\t\t\t\tbreak;\n\t\t\tcase \"cpy\": {\n\t\t\t\t// TODO: base on ROP\n\t\t\t\tconst idata = ctx.getImageData(act.src[0][0], act.src[1][0], act.src[0][1], act.src[1][1]);\n\t\t\t\tctx.putImageData(idata, act.dst[0], act.dst[1]);\n\t\t\t} break;\n\t\t\tcase \"str\": {\n\t\t\t\tif(act.data && act.data.BitCount == 24 && act.data.ImageData) {\n\t\t\t\t\tconst _o = new Uint8ClampedArray(act.data.Width * act.data.Height * 4);\n\t\t\t\t\tfor(let i = 0; i < act.data.Width * act.data.Height; ++i) {\n\t\t\t\t\t\tconst j = (i % act.data.Width) + act.data.Width * (act.data.Height - 1 - Math.floor(i / act.data.Width));\n\t\t\t\t\t\t_o[4*i] = act.data.ImageData[3*j+2];\n\t\t\t\t\t\t_o[4*i+1] = act.data.ImageData[3*j+1];\n\t\t\t\t\t\t_o[4*i+2] = act.data.ImageData[3*j];\n\t\t\t\t\t\t_o[4*i+3] = 255;\n\t\t\t\t\t}\n\t\t\t\t\tconst idata = new ImageData(_o, act.data.Width, act.data.Height);\n\t\t\t\t\tctx.putImageData(idata, act.dst[0][0], act.dst[1][0]);\n\t\t\t\t}\n\t\t\t\t// TODO: ROP et al\n\t\t\t}\n\t\t}\n\t\tctx.restore();\n\t});\n}\n\nexport const render_canvas = (out: Action[], image: HTMLCanvasElement): void => {\n\tlet ctx: CanvasRenderingContext2D;\n\n\t/* find first action with window info */\n\tout.forEach(act => {\n\t\tif(ctx) return;\n\t\tif(!act.s) return;\n\t\tif(!act.s.Extent || !act.s.Origin) return;\n\t\timage.width = act.s.Extent[0] - act.s.Origin[0];\n\t\timage.height = act.s.Extent[1] - act.s.Origin[1];\n\t\tctx = image.getContext('2d');\n\t\tctx.save();\n\t\tctx.fillStyle = 'rgb(255,255,255)';\n\t\tctx.fillRect(0, 0, act.s.Extent[0] - act.s.Origin[0], act.s.Extent[1] - act.s.Origin[1])\n\t\tctx.restore();\n\t});\n\n\tif(!ctx) ctx = image.getContext('2d');\n\trender_actions_to_context(out, ctx);\n}\n\nexport const draw_canvas = (data: Buffer | Uint8Array | ArrayBuffer, image: HTMLCanvasElement): void => {\n\tif(data instanceof ArrayBuffer) return draw_canvas(new Uint8Array(data), image);\n\tprep_blob((data as any), 0);\n\tconst out: Action[] = get_actions_prepped_bytes(data as PreppedBytes);\n\treturn render_canvas(out, image);\n};\n","/*! wmf.js (C) 2020-present SheetJS LLC -- https://sheetjs.com */\nimport { PreppedBytes, prep_blob } from './util';\nimport { Action, get_actions_prepped_bytes, image_size_prepped_bytes } from './wmf'\n\nexport { draw_canvas, render_canvas } from './canvas';\n\nexport const get_actions = (data: Buffer | Uint8Array | ArrayBuffer): Action[] => {\n\tif(data instanceof ArrayBuffer) return get_actions(new Uint8Array(data));\n\tprep_blob((data as any), 0);\n\treturn get_actions_prepped_bytes(data as PreppedBytes);\n}\n\nexport const image_size = (data: Buffer | Uint8Array | ArrayBuffer): [number, number] => {\n\tif(data instanceof ArrayBuffer) return image_size(new Uint8Array(data));\n\tprep_blob((data as any), 0);\n\treturn image_size_prepped_bytes(data as PreppedBytes);\n}\n","/*! wmf.js (C) 2020-present SheetJS LLC -- https://sheetjs.com */\nexport type RawBytes = Buffer | number[];\n\nexport type PreppedBytes = RawBytes & {\n l: number;\n read_shift(size: 1): number;\n read_shift(size: 2): number;\n read_shift(size: 2, t: \"i\"): number;\n read_shift(size: 4): number;\n read_shift(size: 4, t: \"i\"): number;\n read_shift(size: 8, t: \"f\"): number;\n read_shift(size: number, t: \"cstr\"): string;\n read_shift(size: number, t: \"cpstr\"): string;\n read_shift(size: number, t: \"_wstr\"): string;\n read_shift(size: number, t?: string): number|string;\n chk(hexstr: string, fld: string): void;\n write_shift(t: number, val: string|number, f?: string): void;\n};\n\n// ---\n\nconst has_buf = !!(typeof Buffer !== 'undefined' && typeof process !== 'undefined' && typeof process.versions !== 'undefined' && process.versions.node);\n\nlet Buffer_from: typeof Buffer.from;\n\nif(typeof Buffer !== 'undefined') {\n let nbfs = !Buffer.from;\n\tif(!nbfs) try {\n Buffer.from(\"foo\", \"utf8\");\n } catch(e) { nbfs = true; }\n\tBuffer_from = nbfs ? ((buf, enc?: string): Buffer => (enc) ? new Buffer(buf, (enc as BufferEncoding)) : new Buffer(buf)) : Buffer.from.bind(Buffer);\n\tif(!Buffer.alloc) Buffer.alloc = function(n: number): Buffer { return new Buffer(n); };\n\tif(!Buffer.allocUnsafe) Buffer.allocUnsafe = function(n: number): Buffer { return new Buffer(n); };\n}\n\nexport { Buffer_from, has_buf };\n\nexport const new_raw_buf = (len: number): Buffer|number[] => has_buf ? Buffer.alloc(len) : new Array(len);\n\nexport const new_unsafe_buf = (len: number): Buffer|number[] => has_buf ? Buffer.allocUnsafe(len) : new Array(len);\n\nexport const _chr = (c: number): string => String.fromCharCode(c);\n\nexport const chr0 = /\\u0000/g; // eslint-disable-line no-control-regex\nexport const chr1 = /[\\u0001-\\u0006]/g; // eslint-disable-line no-control-regex\n\n// ---\n\nconst read_double_le = (b: RawBytes, idx: number): number => {\n\tconst s = 1 - 2 * (b[idx + 7] >>> 7);\n\tlet e = ((b[idx + 7] & 0x7f) << 4) + ((b[idx + 6] >>> 4) & 0x0f);\n\tlet m = (b[idx+6]&0x0f);\n\tfor(let i = 5; i >= 0; --i) m = m * 256 + b[idx + i];\n\tif(e == 0x7ff) return m == 0 ? (s * Infinity) : NaN;\n\tif(e == 0) e = -1022;\n\telse { e -= 1023; m += Math.pow(2,52); }\n\treturn s * Math.pow(2, e - 52) * m;\n};\n\nconst write_double_le = (b: RawBytes, v: number, idx: number): void => {\n\tconst bs = ((((v < 0) || (1/v == -Infinity)) ? 1 : 0) << 7);\n\tlet e = 0, m = 0;\n\tconst av = bs ? (-v) : v;\n\tif(!isFinite(av)) { e = 0x7ff; m = isNaN(v) ? 0x6969 : 0; }\n\telse if(av == 0) e = m = 0;\n\telse {\n\t\te = Math.floor(Math.log(av) / Math.LN2);\n\t\tm = av * Math.pow(2, 52 - e);\n\t\tif((e <= -1023) && (!isFinite(m) || (m < Math.pow(2,52)))) { e = -1022; }\n\t\telse { m -= Math.pow(2,52); e+=1023; }\n\t}\n\tfor(let i = 0; i <= 5; ++i, m/=256) b[idx + i] = m & 0xff;\n\tb[idx + 6] = ((e & 0x0f) << 4) | (m & 0xf);\n\tb[idx + 7] = (e >> 4) | bs;\n};\n\nlet __toBuffer = (bufs/*:Array<Array<RawBytes> >*/): RawBytes => {\n\tconst x: number[] =[];\n\tfor(let i=0; i<bufs[0].length; ++i) if(bufs[0][i])\n\t\tfor(let j=0, L=bufs[0][i].length; j<L; j+=10240) x.push(...bufs[0][i].slice(j,j+10240));\n\treturn x;\n};\nconst ___toBuffer = __toBuffer;\n\nconst __readUInt8 = (b: RawBytes, idx: number): number => b[idx];\nconst __readUInt16LE = (b: RawBytes, idx: number): number => (b[idx+1]*(1<<8))+b[idx];\nconst __readInt16LE = (b: RawBytes, idx: number): number => { const u = (b[idx+1]*(1<<8))+b[idx]; return (u < 0x8000) ? u : ((0xffff - u + 1) * -1); };\nconst __readUInt32LE = (b: RawBytes, idx: number): number => b[idx+3]*(1<<24)+(b[idx+2]<<16)+(b[idx+1]<<8)+b[idx];\nconst __readInt32LE = (b: RawBytes, idx: number): number => (b[idx+3]<<24)|(b[idx+2]<<16)|(b[idx+1]<<8)|b[idx];\nconst __readInt32BE = (b: RawBytes, idx: number): number => (b[idx]<<24)|(b[idx+1]<<16)|(b[idx+2]<<8)|b[idx+3];\n\nlet __utf16le = (b: RawBytes, s: number, e: number): string => {\n\tconst ss: string[] = [];\n\tfor(let i=s; i<e; i+=2) ss.push(String.fromCharCode(__readUInt16LE(b,i)));\n\treturn ss.join(\"\").replace(chr0,'');\n};\nconst ___utf16le = __utf16le;\nlet __hexlify = function(b/*:RawBytes|CFBlob*/,s: number,l: number): string { const ss: string[] = []; for(let i=s; i<s+l; ++i) ss.push((\"0\" + b[i].toString(16)).slice(-2)); return ss.join(\"\"); };\nconst ___hexlify = __hexlify;\nlet __utf8 = function(b/*:RawBytes|CFBlob*/,s: number,e: number): string { const ss=[]; for(let i=s; i<e; i++) ss.push(String.fromCharCode(__readUInt8(b,i))); return ss.join(\"\"); };\nconst ___utf8 = __utf8;\nlet __lpstr = function(b/*:RawBytes|CFBlob*/,i: number): string { const len = __readUInt32LE(b,i); return len > 0 ? __utf8(b, i+4,i+4+len-1) : \"\";};\nconst ___lpstr = __lpstr;\nlet __cpstr = function(b/*:RawBytes|CFBlob*/,i: number): string { const len = __readUInt32LE(b,i); return len > 0 ? __utf8(b, i+4,i+4+len-1) : \"\";};\nconst ___cpstr = __cpstr;\nlet __lpwstr = function(b/*:RawBytes|CFBlob*/,i: number): string { const len = 2*__readUInt32LE(b,i); return len > 0 ? __utf8(b, i+4,i+4+len-1) : \"\";};\nconst ___lpwstr = __lpwstr;\nlet __lpp4, ___lpp4;\n__lpp4 = ___lpp4 = function lpp4_(b/*:RawBytes|CFBlob*/,i: number): string { const len = __readUInt32LE(b,i); return len > 0 ? __utf16le(b, i+4,i+4+len) : \"\";};\nconst ___8lpp4 = function(b/*:RawBytes|CFBlob*/,i: number): string { const len = __readUInt32LE(b,i); return len > 0 ? __utf8(b, i+4,i+4+len) : \"\";};\nlet __8lpp4 = ___8lpp4;\nconst ___double = (b/*:RawBytes|CFBlob*/, idx: number): number => read_double_le(b, idx);\nlet __double = ___double;\n\nif(has_buf) {\n\t__utf16le = (b/*:RawBytes|CFBlob*/,s: number,e: number): string => (!Buffer.isBuffer(b)) ? ___utf16le(b,s,e) : b.toString('utf16le',s,e).replace(chr0,'');\n\t__hexlify = (b/*:RawBytes|CFBlob*/,s: number,l: number): string => Buffer.isBuffer(b) ? b.toString('hex',s,s+l) : ___hexlify(b,s,l);\n\t__lpstr = (b/*:RawBytes|CFBlob*/, i: number): string => { if(!Buffer.isBuffer(b)) return ___lpstr(b, i); const len = b.readUInt32LE(i); return len > 0 ? b.toString('utf8',i+4,i+4+len-1) : \"\";};\n\t__cpstr = (b/*:RawBytes|CFBlob*/, i: number): string => { if(!Buffer.isBuffer(b)) return ___cpstr(b, i); const len = b.readUInt32LE(i); return len > 0 ? b.toString('utf8',i+4,i+4+len-1) : \"\";};\n\t__lpwstr = (b/*:RawBytes|CFBlob*/, i: number): string => { if(!Buffer.isBuffer(b)) return ___lpwstr(b, i); const len = 2*b.readUInt32LE(i); return b.toString('utf16le',i+4,i+4+len-1);};\n\t__lpp4 = (b/*:RawBytes|CFBlob*/, i: number): string => { if(!Buffer.isBuffer(b)) return ___lpp4(b, i); const len = b.readUInt32LE(i); return b.toString('utf16le',i+4,i+4+len);};\n\t__8lpp4 = (b/*:RawBytes|CFBlob*/, i: number): string => { if(!Buffer.isBuffer(b)) return ___8lpp4(b, i); const len = b.readUInt32LE(i); return b.toString('utf8',i+4,i+4+len);};\n\t__utf8 = (b/*:RawBytes|CFBlob*/, s: number, e: number): string => (Buffer.isBuffer(b)) ? b.toString('utf8',s,e) : ___utf8(b,s,e);\n\t__toBuffer = (bufs): RawBytes => (bufs[0].length > 0 && Buffer.isBuffer(bufs[0][0])) ? Buffer.concat(bufs[0]) : ___toBuffer(bufs);\n\t__double = (b/*:RawBytes|CFBlob*/, i: number): number => (Buffer.isBuffer(b)) ? b.readDoubleLE(i) : ___double(b,i);\n}\n\nfunction ReadShift(size: 1): number;\nfunction ReadShift(size: 2): number;\nfunction ReadShift(size: 2, t: \"i\"): number;\nfunction ReadShift(size: 4): number;\nfunction ReadShift(size: 4, t: \"i\"): number;\nfunction ReadShift(size: 8, t: \"f\"): number;\nfunction ReadShift(size: number, t: \"cstr\"): string;\nfunction ReadShift(size: number, t: \"cpstr\"): string;\nfunction ReadShift(size: number, t: \"_wstr\"): string;\nfunction ReadShift(size: number, t?: string): number|string {\n\tlet o=\"\", oI = 0, oR, w, vv, i, loc;\n\tconst oo = [];\n\tswitch(t) {\n\t\tcase 'dbcs':\n\t\t\tloc = this.l;\n\t\t\tif(has_buf && Buffer.isBuffer(this)) o = this.slice(this.l, this.l+2*size).toString(\"utf16le\");\n\t\t\telse for(i = 0; i < size; ++i) { o+=String.fromCharCode(__readUInt16LE(this, loc)); loc+=2; }\n\t\t\tsize *= 2;\n\t\t\tbreak;\n\n\t\tcase 'utf8': o = __utf8(this, this.l, this.l + size); break;\n\t\tcase 'utf16le': size *= 2; o = __utf16le(this, this.l, this.l + size); break;\n\n\t\tcase 'wstr':\n\t\t\treturn ReadShift.call(this, size, 'dbcs');\n\n\t\t/* [MS-OLEDS] 2.1.4 LengthPrefixedAnsiString */\n\t\tcase 'lpstr-ansi': o = __lpstr(this, this.l); size = 4 + __readUInt32LE(this, this.l); break;\n\t\tcase 'lpstr-cp': o = __cpstr(this, this.l); size = 4 + __readUInt32LE(this, this.l); break;\n\t\t/* [MS-OLEDS] 2.1.5 LengthPrefixedUnicodeString */\n\t\tcase 'lpwstr': o = __lpwstr(this, this.l); size = 4 + 2 * __readUInt32LE(this, this.l); break;\n\t\t/* [MS-OFFCRYPTO] 2.1.2 Length-Prefixed Padded Unicode String (UNICODE-LP-P4) */\n\t\tcase 'lpp4': size = 4 + __readUInt32LE(this, this.l); o = __lpp4(this, this.l); if(size & 0x02) size += 2; break;\n\t\t/* [MS-OFFCRYPTO] 2.1.3 Length-Prefixed UTF-8 String (UTF-8-LP-P4) */\n\t\tcase '8lpp4': size = 4 + __readUInt32LE(this, this.l); o = __8lpp4(this, this.l); if(size & 0x03) size += 4 - (size & 0x03); break;\n\n\t\tcase 'cstr': size = 0; o = \"\";\n\t\t\twhile((w=__readUInt8(this, this.l + size++))!==0) oo.push(String.fromCharCode(w));\n\t\t\to = oo.join(\"\"); break;\n\t\tcase '_wstr': size = 0; o = \"\";\n\t\t\twhile((w=__readUInt16LE(this,this.l +size))!==0){oo.push(String.fromCharCode(w));size+=2;}\n\t\t\tsize+=2; o = oo.join(\"\"); break;\n\n\t\t/* sbcs and dbcs support continue records in the SST way TODO codepages */\n\t\tcase 'dbcs-cont': o = \"\"; loc = this.l;\n\t\t\tfor(i = 0; i < size; ++i) {\n\t\t\t\tif(this.lens && this.lens.indexOf(loc) !== -1) {\n\t\t\t\t\tw = __readUInt8(this, loc);\n\t\t\t\t\tthis.l = loc + 1;\n\t\t\t\t\tvv = ReadShift.call(this, size-i, w ? 'dbcs-cont' : 'sbcs-cont');\n\t\t\t\t\treturn oo.join(\"\") + vv;\n\t\t\t\t}\n\t\t\t\too.push(String.fromCharCode(__readUInt16LE(this, loc)));\n\t\t\t\tloc+=2;\n\t\t\t} o = oo.join(\"\"); size *= 2; break;\n\n\t\tcase 'cpstr':\n\t\t/* falls through */\n\t\tcase 'sbcs-cont': o = \"\"; loc = this.l;\n\t\t\tfor(i = 0; i != size; ++i) {\n\t\t\t\tif(this.lens && this.lens.indexOf(loc) !== -1) {\n\t\t\t\t\tw = __readUInt8(this, loc);\n\t\t\t\t\tthis.l = loc + 1;\n\t\t\t\t\tvv = ReadShift.call(this, size-i, w ? 'dbcs-cont' : 'sbcs-cont');\n\t\t\t\t\treturn oo.join(\"\") + vv;\n\t\t\t\t}\n\t\t\t\too.push(String.fromCharCode(__readUInt8(this, loc)));\n\t\t\t\tloc+=1;\n\t\t\t} o = oo.join(\"\"); break;\n\n\t\tdefault:\n\tswitch(size) {\n\t\tcase 1: oI = __readUInt8(this, this.l); this.l++; return oI;\n\t\tcase 2: oI = (t === 'i' ? __readInt16LE : __readUInt16LE)(this, this.l); this.l += 2; return oI;\n\t\tcase 4: case -4:\n\t\t\tif(t === 'i' || ((this[this.l+3] & 0x80)===0)) { oI = ((size > 0) ? __readInt32LE : __readInt32BE)(this, this.l); this.l += 4; return oI; }\n\t\t\telse { oR = __readUInt32LE(this, this.l); this.l += 4; } return oR;\n\t\tcase 8: case -8:\n\t\t\tif(t === 'f') {\n\t\t\t\tif(size == 8) oR = __double(this, this.l);\n\t\t\t\telse oR = __double([this[this.l+7],this[this.l+6],this[this.l+5],this[this.l+4],this[this.l+3],this[this.l+2],this[this.l+1],this[this.l+0]], 0);\n\t\t\t\tthis.l += 8; return oR;\n\t\t\t} else size = 8;\n\t\t/* falls through */\n\t\tcase 16: o = __hexlify(this, this.l, size); break;\n\t}}\n\tthis.l+=size; return o;\n}\n\nconst __writeUInt32LE = (b/*:RawBytes|CFBlob*/, val: number, idx: number): void => { b[idx] = (val & 0xFF); b[idx+1] = ((val >>> 8) & 0xFF); b[idx+2] = ((val >>> 16) & 0xFF); b[idx+3] = ((val >>> 24) & 0xFF); };\nconst __writeInt32LE = (b/*:RawBytes|CFBlob*/, val: number, idx: number): void => { b[idx] = (val & 0xFF); b[idx+1] = ((val >> 8) & 0xFF); b[idx+2] = ((val >> 16) & 0xFF); b[idx+3] = ((val >> 24) & 0xFF); };\nconst __writeUInt16LE = (b/*:RawBytes|CFBlob*/, val: number, idx: number): void => { b[idx] = (val & 0xFF); b[idx+1] = ((val >>> 8) & 0xFF); };\n\nfunction WriteShift(t: number, val: string|number, f?: string): void {\n\tlet size = 0, i = 0;\n\tif(f === 'dbcs') {\n\t\tif(typeof val !== 'string') throw new Error(\"expected string\");\n\t\tfor(i = 0; i != val.length; ++i) __writeUInt16LE(this, val.charCodeAt(i), this.l + 2 * i);\n\t\tsize = 2 * val.length;\n\t} else if(f === 'sbcs') {\n\t\t{\n\t\t\tval = (val as string).replace(/[^\\x00-\\x7F]/g, \"_\"); // eslint-disable-line no-control-regex\n\t\t\tfor(i = 0; i != val.length; ++i) this[this.l + i] = (val.charCodeAt(i) & 0xFF);\n\t\t}\n\t\tsize = val.length;\n\t} else if(f === 'hex') {\n\t\tfor(; i < t; ++i) {\n\t\t\tthis[this.l++] = (parseInt((val as string).slice(2*i, 2*i+2), 16)||0);\n\t\t} return this;\n\t} else if(f === 'utf16le') {\n\t\t\t/*:: if(typeof val !== \"string\") throw new Error(\"unreachable\"); */\n\t\t\tconst end: number = Math.min(this.l + t, this.length);\n\t\t\tfor(i = 0; i < Math.min((val as string).length, t); ++i) {\n\t\t\t\tconst cc = (val as string).charCodeAt(i);\n\t\t\t\tthis[this.l++] = (cc & 0xff);\n\t\t\t\tthis[this.l++] = (cc >> 8);\n\t\t\t}\n\t\t\twhile(this.l < end) this[this.l++] = 0;\n\t\t\treturn this;\n\t} else if(typeof val === 'number') switch(t) {\n\t\tcase 1: size = 1; this[this.l] = val&0xFF; break;\n\t\tcase 2: size = 2; this[this.l] = val&0xFF; val >>>= 8; this[this.l+1] = val&0xFF; break;\n\t\tcase 3: size = 3; this[this.l] = val&0xFF; val >>>= 8; this[this.l+1] = val&0xFF; val >>>= 8; this[this.l+2] = val&0xFF; break;\n\t\tcase 4: size = 4; __writeUInt32LE(this, val, this.l); break;\n\t\tcase 8: size = 8; if(f === 'f') { write_double_le(this, val, this.l); break; }\n\t\t/* falls through */\n\t\tcase 16: break;\n\t\tcase -4: size = 4; __writeInt32LE(this, val, this.l); break;\n\t}\n\tthis.l += size; return this;\n}\n\nfunction CheckField(hexstr: string, fld: string): void {\n\tconst m = __hexlify(this,this.l,hexstr.length>>1);\n\tif(m !== hexstr) throw new Error(fld + 'Expected ' + hexstr + ' saw ' + m);\n\tthis.l += hexstr.length>>1;\n}\n\nconst prep_blob = (blob: PreppedBytes, pos: number): void => {\n\tblob.l = pos;\n\tblob.read_shift = ReadShift;\n\tblob.chk = CheckField;\n\tblob.write_shift = WriteShift;\n};\n\nconst new_buf = (sz: number): PreppedBytes => {\n\tconst o = (new_raw_buf(sz) as PreppedBytes);\n\tprep_blob(o, 0);\n\treturn o;\n};\n\nexport { ReadShift, WriteShift, CheckField, prep_blob, new_buf, __utf16le };\n\n// ---\n\nconst __bconcat = function(bufs/*:Array<RawBytes>*/): Buffer | Uint8Array | number[] {\n let is_all_arrays = true;\n for(let w = 0; w < bufs.length; ++w) if(!Array.isArray(bufs[w])) is_all_arrays = false;\n\tif(is_all_arrays) return [].concat(...bufs);\n\tlet maxlen = 0, i = 0;\n\tfor(i = 0; i < bufs.length; ++i) maxlen += bufs[i].length;\n\tconst o = new Uint8Array(maxlen);\n\tfor(i = 0, maxlen = 0; i < bufs.length; maxlen += bufs[i].length, ++i) o.set(bufs[i], maxlen);\n\treturn o;\n};\nlet bconcat = __bconcat;\n\nif(has_buf) bconcat = (bufs): Buffer | Uint8Array | number[] => Buffer.isBuffer(bufs[0]) ? Buffer.concat(bufs) : [].concat(...bufs);\n\nexport { bconcat };\n","/*! wmf.js (C) 2020-present SheetJS LLC -- https://sheetjs.com */\nimport { PreppedBytes, RawBytes, bconcat, prep_blob } from './util';\nimport { WMFRecords, WMFEscapes } from './Records';\n\nexport interface Brush {\n\t/** Style (MS-WMF 2.1.1.4) */\n\tStyle?: Number;\n\t/** Brush color RGB */\n\tColor?: number;\n\t/** Hatch Type (2.1.1.12 if brush is hatched) */\n\tHatch?: number;\n}\n\nexport interface Pen {\n\tStyle?: number;\n\tWidth?: number;\n\tColor?: number;\n}\n\nexport interface Font {\n\tName?: string;\n\tHeight?: number;\n\tItalic?: boolean;\n\tWeight?: number;\n\tAngle?: number;\n}\n\nexport interface PlaybackDeviceContextState {\n\t/** Mapping mode (MS-WMF 2.1.1.16) */\n\tMapMode?: number;\n\t/** Output window origin (X, Y) */\n\tOrigin?: [number, number];\n\t/** Output window extents (X, Y) */\n\tExtent?: [number, number];\n\t/** Background Mix Mode (MS-WMF 2.1.1.20) */\n\tBkMode?: number;\n\t/** Polygon fill mode (MS-WMF 2.1.1.25) */\n\tPolyFillMode?: number;\n\t/** Bitmap stretching mode (MS-WMF 2.1.1.30) */\n\tStretchMode?: number;\n\t/** Text alignment mode (MS-WMF 2.1.2.3 / 2.1.2.4) */\n\tTextAlignmentMode?: number;\n\t/** Text foreground color RGB */\n\tTextColor?: number;\n\t/** Brush */\n\tBrush?: Brush;\n\t/** Font */\n\tFont?: Font;\n\t/** Pen */\n\tPen?: Pen;\n\t/** Clipping Region (x,y) LT (x,y) RB */\n\tClipRect?: [[number, number], [number, number]];\n}\n\n/** [x, y] */\nexport type Point = [ number, number ];\n\nexport interface ActionCommon {\n\t/** State */\n\ts?: PlaybackDeviceContextState;\n}\n\n/** Draw Text */\nexport interface ActionText extends ActionCommon {\n\t/** Action Type */\n\tt: \"text\";\n\n\t/** Text */\n\tv: string;\n\n\t/** Origin */\n\tp?: Point;\n}\n\n/** Draw Polygon (shape with stroke/fill) / Polyline (stroke only) */\nexport interface ActionPoly extends ActionCommon {\n\t/** Action Type */\n\tt: \"poly\";\n\n\t/** Points */\n\tp: Point[];\n\n\t/** Polygon (true) or Polyline (false) */\n\tg: boolean;\n}\n\nexport interface ActionRaster {\n\t/** Raster Operaton 2.1.1.31 */\n\trop?: number;\n}\n\nexport interface ActionCpy extends ActionCommon, ActionRaster {\n\tt: \"cpy\";\n\n\t/** Source [[X, W], [Y, H]] */\n\tsrc: [[number, number], [number, number]];\n\n\tdst: Point;\n\n\tdata?: any;\n}\n\nexport interface ActionStr extends ActionCommon, ActionRaster {\n\tt: \"str\";\n\n\t/** Source [[X, W], [Y, H]] */\n\tsrc: [[number, number], [number, number]];\n\n\t/** Dest [[X, W], [Y, H]] */\n\tdst: [[number, number], [number, number]];\n\n\tdata?: any;\n}\n\nexport type Action = ActionText | ActionPoly | ActionCpy | ActionStr;\n\nconst parse_emf = (data: PreppedBytes): void => {\n\t//try { require(\"fs\").writeFileSync(\"out.emf\", data); } catch(e) {}\n}\n\n/* 2.2.2.9 */\nconst parse_dib = (data: PreppedBytes) => {\n\tif(data.length == 0) return null;\n\tprep_blob(data, 0);\n\n\t/* DIBHeaderInfo */\n\tconst HeaderSize = data.read_shift(4);\n\tlet Width = 0, Height = 0, Planes = 0, BitCount = 0;\n\tlet Compression = 0, ImageSize = 0, XPelsPerMeter = 0, YPelsPerMeter = 0, ColorUsed = 0, ColorImportant = 0;\n\tif(HeaderSize == 0x0C) {\n\t\tWidth = data.read_shift(2);\n\t\tHeight = data.read_shift(2);\n\t} else {\n\t\tWidth = data.read_shift(4, 'i');\n\t\tHeight = data.read_shift(4, 'i');\n\t}\n\tPlanes = data.read_shift(2);\n\tBitCount = data.read_shift(2);\n\n\tconst out: object = {\n\t\tWidth,\n\t\tHeight,\n\t\tBitCount,\n\t};\n\n\tif(HeaderSize != 0x0C) {\n\t\tCompression = data.read_shift(4);\n\t\tImageSize = data.read_shift(4);\n\t\tXPelsPerMeter = data.read_shift(4, 'i');\n\t\tYPelsPerMeter = data.read_shift(4, 'i');\n\t\tColorUsed = data.read_shift(4);\n\t\tColorImportant = data.read_shift(4);\n\t\tout[\"Compression\"] = Compression;\n\t\tif(BitCount == 24 && ImageSize > Height * 3 * Width) Width = out[\"Width\"] = ImageSize / (Height * 3);\n\t}\n\n\t/* Colors */\n\t/* BitmapBuffer */\n\tif(ImageSize == data.length - data.l) {\n\t\tout[\"ImageData\"] = data.slice(data.l, data.length);\n\t\tprep_blob(out[\"ImageData\"], 0);\n\t}\n\treturn out;\n}\n\nconst add_to_objects = (objects: PlaybackDeviceContextState[], obj: PlaybackDeviceContextState): void => {\n\tfor(var i = 0; i < objects.length; ++i) if(!objects[i]) { objects[i] = obj; return }\n\tobjects.push(obj);\n}\n\nexport const get_actions_prepped_bytes = (data: PreppedBytes): Action[] => {\n\tconst out: Action[] = [];\n\n\t/* 2.3.2.2 META_HEADER */\n\t// Type (2 bytes) must be 1 or 2\n\tlet h = data.read_shift(2);\n\tif(h != 1 && h != 2) throw `Header: Type ${h} must be 1 or 2`;\n\n\t// HeaderSize expected to be 9\n\tif((h = data.read_shift(2)) != 9) throw `Header: HeaderSize ${h} must be 9`;\n\n\t// Version (2 bytes) 1 or 3\n\th = data.read_shift(2);\n\tif(h != 0x0100 && h != 0x0300) throw `Header: Version ${h} must be 0x0100 or 0x0300`;\n\n\t// SizeLow / SizeHigh\n\tdata.l += 4;\n\n\t// #Objects\n\tconst NumberOfObjects = data.read_shift(2);\n\tlet objects: PlaybackDeviceContextState[] = Array.from({length: NumberOfObjects}, () => null);\n\n\t// MaxRecord\n\tdata.l += 4;\n\n\t// NumberOfMembers\n\tdata.l += 2;\n\n\tlet rt = 0;\n\n\t/* used for EMF */\n\tlet escapecnt = 0;\n\tlet CommentRecordCount = 0;\n\tlet RemainingBytes = 0;\n\tlet EnhancedMetafileDataSize = 0;\n\tlet bufs: RawBytes[] = [];\n\n\tlet states: PlaybackDeviceContextState[] = [];\n\tlet state: PlaybackDeviceContextState = {};\n\tlet sidx = -1;\n\n\twhile(data.l < data.length) {\n\t\th = data.read_shift(4);\n\t\tconst end = data.l + h*2 - 4;\n\n\t\trt = data.read_shift(2);\n\t\tlet Record = WMFRecords[rt];\n\t\tif(rt == 0x0000) break; // META_EOF\n\t\tswitch(rt) {\n\t\t\tcase 0x0626: { // META_ESCAPE\n\t\t\t\tconst EscapeFunction = data.read_shift(2);\n\t\t\t\tconst Escape = WMFEscapes[EscapeFunction];\n\t\t\t\t/* 2.3.6 */\n\t\t\t\tswitch(EscapeFunction) {\n\t\t\t\t\tcase 0x000F: { // META_ESCAPE_ENHANCED_METAFILE\n\t\t\t\t\t\tconst ByteCount = data.read_shift(2);\n\t\t\t\t\t\tlet tmp = data.read_shift(4);\n\t\t\t\t\t\tif(tmp != 0x43464D57) throw `Escape: Comment ID 0x${tmp.toString(16)} != 0x43464D57`;\n\t\t\t\t\t\ttmp = data.read_shift(4);\n\t\t\t\t\t\tif(tmp != 0x00000001) throw `Escape: Comment Type 0x${tmp.toString(16)} != 0x00000001`;\n\t\t\t\t\t\ttmp = data.read_shift(4);\n\t\t\t\t\t\tif(tmp != 0x00010000) throw `Escape: Version 0x${tmp.toString(16)} != 0x00010000`;\n\n\t\t\t\t\t\tconst Checksum = data.read_shift(2);\n\n\t\t\t\t\t\tdata.l += 4; // Flags\n\t\t\t\t\t\tif(escapecnt == 0) {\n\t\t\t\t\t\t\tCommentRecordCount = data.read_shift(4); // total number of records\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tconst _CommentRecordCount = data.read_shift(4);\n\t\t\t\t\t\t\tif(_CommentRecordCount != CommentRecordCount) throw `Escape: CommentRecordCount ${_CommentRecordCount} != ${CommentRecordCount}`;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tconst CurrentRecordSize = data.read_shift(4); // size of this record\n\t\t\t\t\t\tconst _RemainingBytes = data.read_shift(4);\n\t\t\t\t\t\tif(escapecnt > 0 && CurrentRecordSize + _RemainingBytes != RemainingBytes) throw `Escape: ${RemainingBytes} != ${CurrentRecordSize} + ${_RemainingBytes}`;\n\t\t\t\t\t\tRemainingBytes = _RemainingBytes;\n\t\t\t\t\t\tconst _EnhancedMetafileDataSize = data.read_shift(4);\n\t\t\t\t\t\tif(escapecnt == 0) {\n\t\t\t\t\t\t\tif(_EnhancedMetafileDataSize != CurrentRecordSize + _RemainingBytes) throw `Escape: ${_EnhancedMetafileDataSize} != ${CurrentRecordSize} + ${_RemainingBytes}`;\n\t\t\t\t\t\t\tEnhancedMetafileDataSize = _EnhancedMetafileDataSize;\n\t\t\t\t\t\t} else if(EnhancedMetafileDataSize != _EnhancedMetafileDataSize) throw `Escape: ${EnhancedMetafileDataSize} != ${_EnhancedMetafileDataSize}`;\n\n\t\t\t\t\t\tif(ByteCount != (end - data.l) + 34) throw `Escape: Sizes ${ByteCount} != ${end - data.l} + 34`\n\t\t\t\t\t\tif(end - data.l != CurrentRecordSize) throw `Escape: CRSize ${CurrentRecordSize} != ${end - data.l}`;\n\t\t\t\t\t\tbufs.push(data.slice(data.l, end));\n\t\t\t\t\t\t++escapecnt;\n\t\t\t\t\t\tif(escapecnt == CommentRecordCount) {\n\t\t\t\t\t\t\tconst prepped: PreppedBytes = bconcat(bufs) as PreppedBytes;\n\t\t\t\t\t\t\tprep_blob(prepped, 0);\n\t\t\t\t\t\t\tparse_emf(prepped);\n\t\t\t\t\t\t}\n\t\t\t\t\t} break;\n\t\t\t\t\tdefault: throw `Escape: Unrecognized META_ESCAPE Type 0x${EscapeFunction.toString(16)}`;\n\t\t\t\t}\n\t\t\t} break;\n\n\t\t\t// #region 2.3.1 Bitmap Record Types\n\n\t\t\tcase 0x0940: { // 2.3.1.2 META_DIBBITBLT\n\t\t\t\tconst has_bitmap = h != (rt>>8)+3;\n\t\t\t\tconst RasterOperation = data.read_shift(4);\n\t\t\t\tconst YSrc = data.read_shift(2, \"i\");\n\t\t\t\tconst XSrc = data.read_shift(2, \"i\");\n\t\t\t\tif(!has_bitmap) data.l += 2;\n\t\t\t\tconst Height = data.read_shift(2, \"i\");\n\t\t\t\tconst Width = data.read_shift(2, \"i\");\n\t\t\t\tconst YDest = data.read_shift(2, \"i\");\n\t\t\t\tconst XDest = data.read_shift(2, \"i\");\n\t\t\t\tconst res: ActionCpy = {\n\t\t\t\t\tt: \"cpy\",\n\t\t\t\t\tsrc: [[XSrc, Width], [YSrc, Height]],\n\t\t\t\t\tdst: [XDest, YDest],\n\t\t\t\t\trop: RasterOperation,\n\t\t\t\t\ts: Object.assign({}, state)\n\t\t\t\t};\n\t\t\t\tif(has_bitmap) {\n\t\t\t\t\tconst DIB = parse_dib(data.slice(data.l, end) as PreppedBytes);\n\t\t\t\t\tres.data = DIB;\n\t\t\t\t}\n\t\t\t\tout.push(res);\n\t\t\t} break;\n\n\t\t\tcase 0x0B41: { // 2.3.1.3 META_DIBSTRETCHBLT\n\t\t\t\tconst has_bitmap = h != (rt>>8)+3;\n\t\t\t\tconst RasterOperation = data.read_shift(4);\n\t\t\t\tconst SrcHeight = data.read_shift(2, \"i\");\n\t\t\t\tconst SrcWidth = data.read_shift(2, \"i\");\n\t\t\t\tconst YSrc = data.read_shift(2, \"i\");\n\t\t\t\tconst XSrc = data.read_shift(2, \"i\");\n\t\t\t\tif(!has_bitmap) data.l += 2;\n\t\t\t\tconst DestHeight = data.read_shift(2, \"i\");\n\t\t\t\tconst DestWidth = data.read_shift(2, \"i\");\n\t\t\t\tconst YDest = data.read_shift(2, \"i\");\n\t\t\t\tconst XDest = data.read_shift(2, \"i\");\n\t\t\t\tconst res: ActionStr = {\n\t\t\t\t\tt: \"str\",\n\t\t\t\t\tsrc: [[XSrc, SrcWidth], [YSrc, SrcHeight]],\n\t\t\t\t\tdst: [[XDest, DestWidth], [YDest, DestHeight]],\n\t\t\t\t\trop: RasterOperation,\n\t\t\t\t\ts: Object.assign({}, state)\n\t\t\t\t};\n\t\t\t\tif(has_bitmap) {\n\t\t\t\t\tconst DIB = parse_dib(data.slice(data.l, end) as PreppedBytes);\n\t\t\t\t\tres.data = DIB;\n\t\t\t\t}\n\t\t\t\tout.push(res);\n\t\t\t} break;\n\n\t\t\t// #endregion\n\n\t\t\t// #region 2.3.3 Drawing Record Types\n\n\t\t\tcase 0x0A32: { // 2.3.3.5 META_EXTTEXTOUT\n\t\t\t\tconst Y = data.read_shift(2);\n\t\t\t\tconst X = data.read_shift(2);\n\t\t\t\tconst StringLength = data.read_shift(2);\n\t\t\t\tconst fwOpts = data.read_shift(2); // 2.1.2.2\n\t\t\t\tif(fwOpts & 0x06) {\n\t\t\t\t\tdata.l += 8; // Rectangle 2.2.2.18 (for clipping/opaquing)\n\t\t\t\t}\n\t\t\t\tconst str = data.read_shift(StringLength, 'cpstr');\n\t\t\t\tif(data.l < end){/* TODO: Dx */}\n\t\t\t\tout.push({t: \"text\", v: str, p: [X, Y], s: Object.assign({}, state)});\n\t\t\t\t/* TODO!! */\n\t\t\t} break;\n\n\t\t\tcase 0x0325: // 2.3.3.14 META_POLYLINE\n\t\t\tcase 0x0324: // 2.3.3.15 META_POLYGON\n\t\t\t{\n\t\t\t\tconst nPoints = data.read_shift(2);\n\t\t\t\tconst points: Array<Point> = [];\n\t\t\t\tfor(let i = 0; i < nPoints; ++i) points.push([data.read_shift(2), data.read_shift(2)])\n\t\t\t\tout.push({t: \"poly\", p: points, g: rt !== 0x0325, s: Object.assign({}, state)});\n\t\t\t} break;\n\n\t\t\tcase 0x0538: { // 2.3.3.16 META_POLYPOLYGON\n\t\t\t\tconst nPolygons = data.read_shift(2);\n\t\t\t\tconst polys: Array<Array<Point> > = [];\n\t\t\t\tconst szs: number[] = [];\n\t\t\t\t/* 2.2.2.17 PolyPolygon */\n\t\t\t\tfor(let i = 0; i < nPolygons; ++i) szs[i] = data.read_shift(2);\n\t\t\t\tfor(let i = 0; i < szs.length; ++i) {\n\t\t\t\t\tpolys[i] = [];\n\t\t\t\t\tfor(let j = 0; j < szs[i]; ++j) polys[i].push([data.read_shift(2), data.read_shift(2)])\n\t\t\t\t\tout.push({t: \"poly\", p: polys[i], g: true, s: Object.assign({}, state)});\n\t\t\t\t}\n\t\t\t} break;\n\n\t\t\t// #endregion\n\n\t\t\t// #region 2.3.4 Object Record Types\n\n\t\t\tcase 0x02FC: { // 2.3.4.1 META_CREATEBRUSHINDIRECT\n\t\t\t\tconst obj: PlaybackDeviceContextState = {};\n\t\t\t\tobj.Brush = {\n\t\t\t\t\tStyle: data.read_shift(2),\n\t\t\t\t\tColor: data.read_shift(4),\n\t\t\t\t\tHatch: data.read_shift(2)\n\t\t\t\t};\n\t\t\t\tadd_to_objects(objects, obj);\n\t\t\t} break;\n\n\t\t\tcase 0x02FB: { // 2.3.4.2 META_CREATEFONTINDIRECT\n\t\t\t\tconst obj: PlaybackDeviceContextState = {};\n\t\t\t\tobj.Font = {};\n\t\t\t\t/* 2.2.1.2 Font TODO!! */\n\t\t\t\tconst Height = data.read_shift(2, \"i\");\n\t\t\t\tconst Width = data.read_shift(2, \"i\");\n\t\t\t\tconst Escapement = data.read_shift(2, \"i\");\n\t\t\t\tconst Orientation = data.read_shift(2, \"i\");\n\t\t\t\tconst Weight = data.read_shift(2, \"i\");\n\t\t\t\tconst Italic = !!data.read_shift(1);\n\t\t\t\tconst Underline = !!data.read_shift(1);\n\t\t\t\tconst StrikeOut = !!data.read_shift(1);\n\t\t\t\tconst CharSet = data.read_shift(1);\n\t\t\t\tconst OutPrecision = data.read_shift(1);\n\t\t\t\tconst ClipPrecision = data.read_shift(1);\n\t\t\t\tconst Quality = data.read_shift(1);\n\t\t\t\tconst PitchAndFamily = data.read_shift(1);\n\t\t\t\tconst Facename = data.read_shift(32, \"cstr\");\n\t\t\t\tobj.Font.Name = Facename;\n\t\t\t\tobj.Font.Height = Height;\n\t\t\t\tobj.Font.Weight = Weight;\n\t\t\t\tobj.Font.Italic = Italic;\n\t\t\t\tobj.Font.Angle = Escapement / 10;\n\t\t\t\tadd_to_objects(objects, obj);\n\t\t\t} break;\n\n\t\t\tcase 0x02FA: { // 2.3.4.5 META_CREATEPENINDIRECT\n\t\t\t\tconst obj: PlaybackDeviceContextState = {};\n\t\t\t\tobj.Pen = {\n\t\t\t\t\tStyle: data.read_shift(2),\n\t\t\t\t\tWidth: data.read_shift(4) & 0xFF,\n\t\t\t\t\tColor: data.read_shift(4)\n\t\t\t\t};\n\t\t\t\tadd_to_objects(objects, obj);\n\t\t\t} break;\n\n\t\t\tcase 0x01F0: { // 2.3.4.7 META_DELETEOBJECT\n\t\t\t\tconst ObjectIndex = data.read_shift(2);\n\t\t\t\tobjects[ObjectIndex] = null;\n\t\t\t} break;\n\n\t\t\tcase 0x012C: { // 2.3.4.9 META_SELECTCLIPREGION\n\t\t\t\tconst Region = data.read_shift(2);\n\t\t\t\t//Object.assign(state, objects[Region]);\n\t\t\t} break;\n\n\t\t\tcase 0x012D: { // 2.3.4.10 META_SELECTOBJECT\n\t\t\t\tconst ObjectIndex = data.read_shift(2);\n\t\t\t\tObject.assign(state, objects[ObjectIndex]);\n\t\t\t\t// TODO!!\n\t\t\t} break;\n\n\t\t\t// #endregion\n\n\t\t\t// #region 2.3.5 State Record Types\n\n\t\t\tcase 0x0416: // 2.3.5.3 META_INTERSECTCLIPRECT\n\t\t\t\tstate.ClipRect = [[0,0],[0,0]];\n\t\t\t\tstate.ClipRect[1][1] = data.read_shift(2);\n\t\t\t\tstate.ClipRect[1][0] = data.read_shift(2);\n\t\t\t\tstate.ClipRect[0][1] = data.read_shift(2);\n\t\t\t\tstate.ClipRect[0][0] = data.read_shift(2);\n\t\t\t\tbreak;\n\n\t\t\tcase 0x0127: { // 2.3.5.10 META_RESTOREDC\n\t\t\t\tconst nSavedDC = data.read_shift(2, 'i');\n\t\t\t\tstate = states[sidx = (nSavedDC >= 0 ? nSavedDC : sidx + nSavedDC)];\n\t\t\t} break;\n\n\t\t\tcase 0x001E: // 2.3.5.11 META_SAVEDC\n\t\t\t\tstates.push(state);\n\t\t\t\tsidx = states.length - 1;\n\t\t\t\tstate = JSON.parse(JSON.stringify(state));\n\t\t\t\tbreak;\n\n\t\t\tcase 0x0102: // 2.3.5.15 META_SETBKMODE\n\t\t\t\tstate.BkMode = data.read_shift(2);\n\t\t\t\tbreak;\n\n\t\t\tcase 0x0103: // 2.3.5.17 META_SETMAPMODE\n\t\t\t\tstate.MapMode = data.read_shift(2);\n\t\t\t\tbreak;\n\n\t\t\tcase 0x0106: // 2.3.5.20 META_SETPOLYFILLMODE\n\t\t\t\tstate.PolyFillMode = data.read_shift(2);\n\t\t\t\tbreak;\n\n\t\t\tcase 0x0107: // 2.3.5.23 META_SETSTRETCHBLTMODE\n\t\t\t\tstate.StretchMode = data.read_shift(2);\n\t\t\t\tbreak;\n\n\t\t\tcase 0x012E: // 2.3.5.24 META_SETTEXTALIGN\n\t\t\t\tstate.TextAlignmentMode = data.read_shift(2);\n\t\t\t\tbreak;\n\n\t\t\tcase 0x0209: // 2.3.5.26 META_SETTEXTCOLOR\n\t\t\t\tstate.TextColor = data.read_shift(4);\n\t\t\t\tbreak;\n\n\t\t\tcase 0x020C: // 2.3.5.30 META_SETWINDOWEXT\n\t\t\t\tstate.Extent = [0, 0];\n\t\t\t\tstate.Extent[1] = data.read_shift(2);\n\t\t\t\tstate.Extent[0] = data.read_shift(2);\n\t\t\t\tbreak;\n\n\t\t\tcase 0x020B: // 2.3.5.31 META_SETWINDOWORG\n\t\t\t\tstate.Origin = [0, 0];\n\t\t\t\tstate.Origin[1] = data.read_shift(2);\n\t\t\t\tstate.Origin[0] = data.read_shift(2);\n\t\t\t\tbreak;\n\n\t\t\t// #endregion\n\n\t\t\tdefault:\n\t\t\t\t//if(!Record) throw `Record: Unrecognized type 0x${rt.toString(16)}`;\n\t\t\t\tconsole.log(Record);\n\t\t}\n\t\tdata.l = end;\n\t}\n\tif(rt !== 0) throw `Record: Last Record Type ${rt} is not EOF type`;\n\treturn out;\n}\n\nexport const image_size_prepped_bytes = (data: PreppedBytes): [number, number] => {\n\t/* 2.3.22 META_HEADER */\n\t// Type (2 bytes) must be 1 or 2\n\tlet h = data.read_shift(2);\n\tif(h != 1 && h != 2) throw `Header: Type ${h} must be 1 or 2`;\n\t// HeaderSize expected to be 9\n\tif((h = data.read_shift(2)) != 9) throw `Header: HeaderSize ${h} must be 9`;\n\t// Version (2 bytes) 1 or 3\n\th = data.read_shift(2);\n\tif(h != 0x0100 && h != 0x0300) throw `Header: Version ${h} must be 0x0100 or 0x0300`;\n\tdata.l = 18;\n\n\tlet rt = 0;\n\n\twhile(data.l < data.length) {\n\t\th = data.read_shift(4);\n\t\tconst end = data.l + h*2 - 4;\n\n\t\trt = data.read_shift(2);\n\t\tif(rt == 0x0000) break; // META_EOF\n\t\tif(rt == 0x020C) {// 2.3.5.30 META_SETWINDOWEXT\n\t\t\tconst extents: [number, number] = [NaN, NaN];\n\t\t\textents[1] = data.read_shift(2);\n\t\t\textents[0] = data.read_shift(2);\n\t\t\treturn extents;\n\t\t}\n\t\tdata.l = end;\n\t}\n\n\treturn [NaN, NaN];\n};","/*! wmf.js (C) 2020-present SheetJS LLC -- https://sheetjs.com */\nvar WMF = require(\"../js/\");\nmodule.exports = WMF;\n"],"sourceRoot":""}
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "wmf",
3
+ "version": "1.0.2",
4
+ "author": "sheetjs",
5
+ "description": "Windows MetaFile (WMF) parser",
6
+ "keywords": [
7
+ "wmf",
8
+ "image",
9
+ "office",
10
+ "word"
11
+ ],
12
+ "bin": {
13
+ },
14
+ "main": "./dist/wmf.node.js",
15
+ "unpkg": "./dist/wmf.js",
16
+ "jsdelivr": "./dist/wmf.js",
17
+ "types": "types",
18
+ "browser": {
19
+ "buffer": false,
20
+ "crypto": false,
21
+ "stream": false,
22
+ "process": false,
23
+ "fs": false
24
+ },
25
+ "dependencies": {
26
+ },
27
+ "devDependencies": {
28
+ "source-map-loader": "^0.2.4",
29
+ "uglifyjs-webpack-plugin": "^2.2.0"
30
+ },
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git://github.com/SheetJS/js-wmf.git"
34
+ },
35
+ "scripts": {
36
+ },
37
+ "config": {
38
+ "blanket": {
39
+ "pattern": "wmf.js"
40
+ }
41
+ },
42
+ "alex": {
43
+ "allow": [
44
+ "special",
45
+ "simple",
46
+ "just",
47
+ "crash",
48
+ "wtf",
49
+ "holes"
50
+ ]
51
+ },
52
+ "homepage": "https://sheetjs.com/",
53
+ "files": [
54
+ "LICENSE",
55
+ "README.md",
56
+ "dist/wmf.js",
57
+ "dist/wmf.node.js",
58
+ "dist/wmf.js.map",
59
+ "dist/wmf.node.js.map"
60
+ ],
61
+ "bugs": {
62
+ "url": "https://github.com/SheetJS/js-wmf/issues"
63
+ },
64
+ "license": "Apache-2.0",
65
+ "engines": {
66
+ "node": ">=0.8"
67
+ }
68
+ }
@@ -0,0 +1,61 @@
1
+ # Contributing
2
+
3
+ The WordJS Libraries should be free and clear to use in your projects. In
4
+ order to maintain that, every contributor must be vigilant.
5
+
6
+ There have been many projects in the past that have been very lax regarding
7
+ licensing, and we are of the opinion that those are ticking timebombs and that
8
+ no corporate product should depend on them.
9
+
10
+
11
+ # Required Reading
12
+
13
+ These are pretty short reads and emphasize the importance of proper licensing:
14
+
15
+ - https://github.com/kennethreitz/tablib/issues/114 (discussion of other tools)
16
+
17
+ - http://www.codinghorror.com/blog/2007/04/pick-a-license-any-license.html
18
+
19
+
20
+ # Raising Issues
21
+
22
+ Issues should generally be accompanied by test files. Since github does not
23
+ support attachments, the best method is to send files to <sheetjs@gmail.com>
24
+ (subject line should contain issue number or message) or to share using some
25
+ storage service. Unless expressly permitted, any attachments will not be
26
+ shared or included in a test suite (although I will ask :)
27
+
28
+ # Pre-Contribution Checklist
29
+
30
+ Before thinking about contributing, make sure that:
31
+
32
+ - You are not, nor have ever been, an employee of Microsoft Corporation.
33
+
34
+ - You have not signed any NDAs or Shared Source Agreements with Microsoft
35
+ Corporation or a subsidiary
36
+
37
+ - You have not consulted any existing relevant codebase (if you have, please
38
+ take note of which codebases were consulted).
39
+
40
+ If you cannot attest to each of these items, the best approach is to raise an
41
+ issue. If it is a particularly high-priority issue, please drop an email to
42
+ <sheetjs@gmail.com> and it will be prioritized.
43
+
44
+
45
+ # Intra-Contribution
46
+
47
+ Keep these in mind as you work:
48
+
49
+ - Your contributions are your original work. Take note of any resources you
50
+ consult in the process (and be extra careful not to use unlicensed code on
51
+ the internet.
52
+
53
+ - You are working on your own time. Unless they explicitly grant permission,
54
+ your employer may be the ultimate owner of your IP
55
+
56
+
57
+ # Post-Contribution
58
+
59
+ Before contributions are merged, you will receive an email (at the address
60
+ associated with the git commit) and will be asked to confirm the aforementioned
61
+ items.
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "{}"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright (C) 2020-present SheetJS LLC
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,2 @@
1
+ # [SheetJS js-word](http://wordjs.com)
2
+
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "word",
3
+ "version": "0.3.0",
4
+ "author": "sheetjs",
5
+ "description": "Word Processing Document library",
6
+ "keywords": [
7
+ "word"
8
+ ],
9
+ "main": "./word",
10
+ "dependencies": {
11
+ },
12
+ "devDependencies": {
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git://github.com/SheetJS/js-word.git"
17
+ },
18
+ "scripts": {
19
+ "test": "echo \"Error: no test specified\" && exit 1"
20
+ },
21
+ "homepage": "https://wordjs.com/",
22
+ "bugs": {
23
+ "url": "https://github.com/SheetJS/js-word/issues"
24
+ },
25
+ "license": "Apache-2.0",
26
+ "engines": {
27
+ "node": ">=0.8"
28
+ }
29
+ }
@@ -0,0 +1 @@
1
+ module.exports = {};