@agwab/pi-workflow 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4660) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +218 -0
  3. package/agents/researcher.md +50 -0
  4. package/agents/scout.md +23 -0
  5. package/dist/agents.d.ts +10 -0
  6. package/dist/agents.js +327 -0
  7. package/dist/artifact-graph-runtime.d.ts +46 -0
  8. package/dist/artifact-graph-runtime.js +728 -0
  9. package/dist/artifact-graph-schema.d.ts +3 -0
  10. package/dist/artifact-graph-schema.js +1389 -0
  11. package/dist/backend.d.ts +18 -0
  12. package/dist/backend.js +19 -0
  13. package/dist/compiler.d.ts +13 -0
  14. package/dist/compiler.js +1247 -0
  15. package/dist/dynamic-control-ops.d.ts +60 -0
  16. package/dist/dynamic-control-ops.js +609 -0
  17. package/dist/dynamic-controller-calls.d.ts +45 -0
  18. package/dist/dynamic-controller-calls.js +384 -0
  19. package/dist/dynamic-controller-errors.d.ts +10 -0
  20. package/dist/dynamic-controller-errors.js +20 -0
  21. package/dist/dynamic-controller-policy.d.ts +30 -0
  22. package/dist/dynamic-controller-policy.js +244 -0
  23. package/dist/dynamic-decision-loop.d.ts +3 -0
  24. package/dist/dynamic-decision-loop.js +244 -0
  25. package/dist/dynamic-decision.d.ts +103 -0
  26. package/dist/dynamic-decision.js +511 -0
  27. package/dist/dynamic-events.d.ts +26 -0
  28. package/dist/dynamic-events.js +130 -0
  29. package/dist/dynamic-generated-task-runtime.d.ts +55 -0
  30. package/dist/dynamic-generated-task-runtime.js +620 -0
  31. package/dist/dynamic-loader.d.ts +25 -0
  32. package/dist/dynamic-loader.js +13 -0
  33. package/dist/dynamic-loop-actions.d.ts +9 -0
  34. package/dist/dynamic-loop-actions.js +148 -0
  35. package/dist/dynamic-loop-prompts.d.ts +14 -0
  36. package/dist/dynamic-loop-prompts.js +102 -0
  37. package/dist/dynamic-loop-types.d.ts +173 -0
  38. package/dist/dynamic-loop-types.js +1 -0
  39. package/dist/dynamic-profiles.d.ts +8 -0
  40. package/dist/dynamic-profiles.js +31 -0
  41. package/dist/dynamic-runtime-bundle.d.ts +2 -0
  42. package/dist/dynamic-runtime-bundle.js +153 -0
  43. package/dist/dynamic-state-index.d.ts +143 -0
  44. package/dist/dynamic-state-index.js +675 -0
  45. package/dist/dynamic-state.d.ts +94 -0
  46. package/dist/dynamic-state.js +516 -0
  47. package/dist/engine-run-graph.d.ts +21 -0
  48. package/dist/engine-run-graph.js +339 -0
  49. package/dist/engine.d.ts +40 -0
  50. package/dist/engine.js +1885 -0
  51. package/dist/extension.d.ts +28 -0
  52. package/dist/extension.js +1014 -0
  53. package/dist/index.d.ts +14 -0
  54. package/dist/index.js +34 -0
  55. package/dist/json-schema.d.ts +35 -0
  56. package/dist/json-schema.js +293 -0
  57. package/dist/loop-runtime.d.ts +4 -0
  58. package/dist/loop-runtime.js +525 -0
  59. package/dist/process-role.d.ts +7 -0
  60. package/dist/process-role.js +30 -0
  61. package/dist/result.d.ts +10 -0
  62. package/dist/result.js +33 -0
  63. package/dist/roles.d.ts +4 -0
  64. package/dist/roles.js +94 -0
  65. package/dist/schema.d.ts +8 -0
  66. package/dist/schema.js +95 -0
  67. package/dist/store.d.ts +56 -0
  68. package/dist/store.js +1159 -0
  69. package/dist/subagent-backend.d.ts +6 -0
  70. package/dist/subagent-backend.js +1118 -0
  71. package/dist/tool-metadata.d.ts +35 -0
  72. package/dist/tool-metadata.js +192 -0
  73. package/dist/types.d.ts +701 -0
  74. package/dist/types.js +25 -0
  75. package/dist/workflow-artifact-extension.d.ts +11 -0
  76. package/dist/workflow-artifact-extension.js +104 -0
  77. package/dist/workflow-artifact-tool.d.ts +136 -0
  78. package/dist/workflow-artifact-tool.js +558 -0
  79. package/dist/workflow-artifacts.d.ts +93 -0
  80. package/dist/workflow-artifacts.js +351 -0
  81. package/dist/workflow-fetch-cache-extension.d.ts +37 -0
  82. package/dist/workflow-fetch-cache-extension.js +240 -0
  83. package/dist/workflow-helpers.d.ts +23 -0
  84. package/dist/workflow-helpers.js +59 -0
  85. package/dist/workflow-output-artifacts.d.ts +93 -0
  86. package/dist/workflow-output-artifacts.js +1052 -0
  87. package/dist/workflow-runtime.d.ts +54 -0
  88. package/dist/workflow-runtime.js +148 -0
  89. package/dist/workflow-source-context-runtime.d.ts +23 -0
  90. package/dist/workflow-source-context-runtime.js +108 -0
  91. package/dist/workflow-specs.d.ts +16 -0
  92. package/dist/workflow-specs.js +198 -0
  93. package/dist/workflow-view.d.ts +94 -0
  94. package/dist/workflow-view.js +1525 -0
  95. package/dist/worktree.d.ts +2 -0
  96. package/dist/worktree.js +410 -0
  97. package/docs/assets/readme/deep-research-flow.png +0 -0
  98. package/docs/assets/readme/deep-review-flow.png +0 -0
  99. package/docs/assets/readme/impact-review-flow.png +0 -0
  100. package/docs/assets/readme/logo.svg +14 -0
  101. package/docs/assets/readme/spec-review-flow.png +0 -0
  102. package/docs/assets/readme/stage-types.png +0 -0
  103. package/docs/assets/readme/workflow-board-runs.png +0 -0
  104. package/docs/assets/readme/workflow-board-stages.png +0 -0
  105. package/docs/assets/readme/workflow-board-task-detail.png +0 -0
  106. package/docs/assets/readme/workflow-board-tasks.png +0 -0
  107. package/docs/release.md +89 -0
  108. package/docs/usage.md +605 -0
  109. package/node_modules/@agwab/pi-subagent/LICENSE +21 -0
  110. package/node_modules/@agwab/pi-subagent/README.md +150 -0
  111. package/node_modules/@agwab/pi-subagent/api.mjs +12 -0
  112. package/node_modules/@agwab/pi-subagent/assets/subagent-panel.png +0 -0
  113. package/node_modules/@agwab/pi-subagent/docs/usage.md +414 -0
  114. package/node_modules/@agwab/pi-subagent/package.json +104 -0
  115. package/node_modules/@agwab/pi-subagent/src/agents.ts +281 -0
  116. package/node_modules/@agwab/pi-subagent/src/api.ts +190 -0
  117. package/node_modules/@agwab/pi-subagent/src/artifacts/index.ts +3 -0
  118. package/node_modules/@agwab/pi-subagent/src/artifacts/registry.ts +728 -0
  119. package/node_modules/@agwab/pi-subagent/src/artifacts/result.ts +212 -0
  120. package/node_modules/@agwab/pi-subagent/src/artifacts/store.ts +175 -0
  121. package/node_modules/@agwab/pi-subagent/src/core/constants.ts +161 -0
  122. package/node_modules/@agwab/pi-subagent/src/core/resolver.ts +20 -0
  123. package/node_modules/@agwab/pi-subagent/src/core/validation.ts +520 -0
  124. package/node_modules/@agwab/pi-subagent/src/index.ts +680 -0
  125. package/node_modules/@agwab/pi-subagent/src/orchestrate/async.ts +188 -0
  126. package/node_modules/@agwab/pi-subagent/src/orchestrate/index.ts +4 -0
  127. package/node_modules/@agwab/pi-subagent/src/orchestrate/interrupt.ts +111 -0
  128. package/node_modules/@agwab/pi-subagent/src/orchestrate/reconcile.ts +98 -0
  129. package/node_modules/@agwab/pi-subagent/src/orchestrate/run.ts +251 -0
  130. package/node_modules/@agwab/pi-subagent/src/orchestrate/status.ts +364 -0
  131. package/node_modules/@agwab/pi-subagent/src/panel.ts +678 -0
  132. package/node_modules/@agwab/pi-subagent/src/runners/headless-model.ts +510 -0
  133. package/node_modules/@agwab/pi-subagent/src/runners/inline.ts +387 -0
  134. package/node_modules/@agwab/pi-subagent/src/runners/tmux.ts +320 -0
  135. package/node_modules/@agwab/pi-subagent/src/runners/tool-call-telemetry.ts +363 -0
  136. package/node_modules/@agwab/pi-subagent/src/sandbox/srt.ts +143 -0
  137. package/node_modules/@agwab/pi-subagent/src/workers/durable-worker.mjs +69 -0
  138. package/node_modules/@agwab/pi-subagent/src/workspace/worktree.ts +182 -0
  139. package/node_modules/@anthropic-ai/sandbox-runtime/LICENSE +201 -0
  140. package/node_modules/@anthropic-ai/sandbox-runtime/README.md +673 -0
  141. package/node_modules/@anthropic-ai/sandbox-runtime/dist/cli.d.ts +3 -0
  142. package/node_modules/@anthropic-ai/sandbox-runtime/dist/cli.d.ts.map +1 -0
  143. package/node_modules/@anthropic-ai/sandbox-runtime/dist/cli.js +253 -0
  144. package/node_modules/@anthropic-ai/sandbox-runtime/dist/cli.js.map +1 -0
  145. package/node_modules/@anthropic-ai/sandbox-runtime/dist/index.d.ts +16 -0
  146. package/node_modules/@anthropic-ai/sandbox-runtime/dist/index.d.ts.map +1 -0
  147. package/node_modules/@anthropic-ai/sandbox-runtime/dist/index.js +12 -0
  148. package/node_modules/@anthropic-ai/sandbox-runtime/dist/index.js.map +1 -0
  149. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/generate-seccomp-filter.d.ts +20 -0
  150. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/generate-seccomp-filter.d.ts.map +1 -0
  151. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/generate-seccomp-filter.js +157 -0
  152. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/generate-seccomp-filter.js.map +1 -0
  153. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/http-proxy.d.ts +40 -0
  154. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/http-proxy.d.ts.map +1 -0
  155. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/http-proxy.js +282 -0
  156. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/http-proxy.js.map +1 -0
  157. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/linux-sandbox-utils.d.ts +175 -0
  158. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/linux-sandbox-utils.d.ts.map +1 -0
  159. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/linux-sandbox-utils.js +984 -0
  160. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/linux-sandbox-utils.js.map +1 -0
  161. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/macos-sandbox-utils.d.ts +44 -0
  162. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/macos-sandbox-utils.d.ts.map +1 -0
  163. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/macos-sandbox-utils.js +680 -0
  164. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/macos-sandbox-utils.js.map +1 -0
  165. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-ca.d.ts +47 -0
  166. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-ca.d.ts.map +1 -0
  167. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-ca.js +153 -0
  168. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-ca.js.map +1 -0
  169. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-leaf.d.ts +28 -0
  170. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-leaf.d.ts.map +1 -0
  171. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-leaf.js +107 -0
  172. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-leaf.js.map +1 -0
  173. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/parent-proxy.d.ts +117 -0
  174. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/parent-proxy.d.ts.map +1 -0
  175. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/parent-proxy.js +438 -0
  176. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/parent-proxy.js.map +1 -0
  177. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/request-filter.d.ts +46 -0
  178. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/request-filter.d.ts.map +1 -0
  179. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/request-filter.js +106 -0
  180. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/request-filter.js.map +1 -0
  181. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-config.d.ts +502 -0
  182. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-config.d.ts.map +1 -0
  183. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-config.js +320 -0
  184. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-config.js.map +1 -0
  185. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-manager.d.ts +49 -0
  186. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-manager.d.ts.map +1 -0
  187. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-manager.js +1023 -0
  188. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-manager.js.map +1 -0
  189. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-schemas.d.ts +57 -0
  190. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-schemas.d.ts.map +1 -0
  191. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-schemas.js +3 -0
  192. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-schemas.js.map +1 -0
  193. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-utils.d.ts +114 -0
  194. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-utils.d.ts.map +1 -0
  195. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-utils.js +472 -0
  196. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-utils.js.map +1 -0
  197. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-violation-store.d.ts +19 -0
  198. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-violation-store.d.ts.map +1 -0
  199. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-violation-store.js +54 -0
  200. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-violation-store.js.map +1 -0
  201. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/socks-proxy.d.ts +20 -0
  202. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/socks-proxy.d.ts.map +1 -0
  203. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/socks-proxy.js +171 -0
  204. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/socks-proxy.js.map +1 -0
  205. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/tls-terminate-proxy.d.ts +70 -0
  206. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/tls-terminate-proxy.d.ts.map +1 -0
  207. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/tls-terminate-proxy.js +217 -0
  208. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/tls-terminate-proxy.js.map +1 -0
  209. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/windows-sandbox-utils.d.ts +222 -0
  210. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/windows-sandbox-utils.d.ts.map +1 -0
  211. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/windows-sandbox-utils.js +433 -0
  212. package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/windows-sandbox-utils.js.map +1 -0
  213. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/config-loader.d.ts +11 -0
  214. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/config-loader.d.ts.map +1 -0
  215. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/config-loader.js +60 -0
  216. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/config-loader.js.map +1 -0
  217. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/debug.d.ts +7 -0
  218. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/debug.d.ts.map +1 -0
  219. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/debug.js +25 -0
  220. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/debug.js.map +1 -0
  221. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/platform.d.ts +15 -0
  222. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/platform.d.ts.map +1 -0
  223. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/platform.js +49 -0
  224. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/platform.js.map +1 -0
  225. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/ripgrep.d.ts +22 -0
  226. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/ripgrep.d.ts.map +1 -0
  227. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/ripgrep.js +45 -0
  228. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/ripgrep.js.map +1 -0
  229. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/which.d.ts +9 -0
  230. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/which.d.ts.map +1 -0
  231. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/which.js +25 -0
  232. package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/which.js.map +1 -0
  233. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/seccomp/arm64/apply-seccomp +0 -0
  234. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/seccomp/build.ts +91 -0
  235. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/seccomp/x64/apply-seccomp +0 -0
  236. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/seccomp-src/apply-seccomp.c +280 -0
  237. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/seccomp-src/seccomp-unix-block.c +148 -0
  238. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/Cargo.lock +361 -0
  239. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/Cargo.toml +46 -0
  240. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/ci/cleanup.ps1 +49 -0
  241. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/ci/smoke-exec.ps1 +446 -0
  242. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/ci/smoke.ps1 +307 -0
  243. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/job.rs +102 -0
  244. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/launch.rs +732 -0
  245. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/lib.rs +20 -0
  246. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/main.rs +669 -0
  247. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/self_protect.rs +169 -0
  248. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/sid.rs +296 -0
  249. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/token.rs +341 -0
  250. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/util.rs +42 -0
  251. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/wfp.rs +992 -0
  252. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/winsta.rs +209 -0
  253. package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/tests/sd_access_check_matrix.rs +259 -0
  254. package/node_modules/@anthropic-ai/sandbox-runtime/package.json +85 -0
  255. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/seccomp/arm64/apply-seccomp +0 -0
  256. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/seccomp/build.ts +91 -0
  257. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/seccomp/x64/apply-seccomp +0 -0
  258. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/seccomp-src/apply-seccomp.c +280 -0
  259. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/seccomp-src/seccomp-unix-block.c +148 -0
  260. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/Cargo.lock +361 -0
  261. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/Cargo.toml +46 -0
  262. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/ci/cleanup.ps1 +49 -0
  263. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/ci/smoke-exec.ps1 +446 -0
  264. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/ci/smoke.ps1 +307 -0
  265. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/job.rs +102 -0
  266. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/launch.rs +732 -0
  267. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/lib.rs +20 -0
  268. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/main.rs +669 -0
  269. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/self_protect.rs +169 -0
  270. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/sid.rs +296 -0
  271. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/token.rs +341 -0
  272. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/util.rs +42 -0
  273. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/wfp.rs +992 -0
  274. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/winsta.rs +209 -0
  275. package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/tests/sd_access_check_matrix.rs +259 -0
  276. package/node_modules/@mixmark-io/domino/.gitmodules +6 -0
  277. package/node_modules/@mixmark-io/domino/.mocharc.json +8 -0
  278. package/node_modules/@mixmark-io/domino/.nvmrc +1 -0
  279. package/node_modules/@mixmark-io/domino/.yarn/plugins/@yarnpkg/plugin-version.cjs +550 -0
  280. package/node_modules/@mixmark-io/domino/.yarn/versions/78b6ef77.yml +0 -0
  281. package/node_modules/@mixmark-io/domino/CHANGELOG.md +294 -0
  282. package/node_modules/@mixmark-io/domino/CONTRIBUTING.md +4 -0
  283. package/node_modules/@mixmark-io/domino/LICENSE +25 -0
  284. package/node_modules/@mixmark-io/domino/README.md +141 -0
  285. package/node_modules/@mixmark-io/domino/lib/CSSStyleDeclaration.js +234 -0
  286. package/node_modules/@mixmark-io/domino/lib/CharacterData.js +120 -0
  287. package/node_modules/@mixmark-io/domino/lib/ChildNode.js +119 -0
  288. package/node_modules/@mixmark-io/domino/lib/Comment.js +40 -0
  289. package/node_modules/@mixmark-io/domino/lib/ContainerNode.js +80 -0
  290. package/node_modules/@mixmark-io/domino/lib/CustomEvent.js +12 -0
  291. package/node_modules/@mixmark-io/domino/lib/DOMException.js +134 -0
  292. package/node_modules/@mixmark-io/domino/lib/DOMImplementation.js +94 -0
  293. package/node_modules/@mixmark-io/domino/lib/DOMTokenList.js +186 -0
  294. package/node_modules/@mixmark-io/domino/lib/Document.js +884 -0
  295. package/node_modules/@mixmark-io/domino/lib/DocumentFragment.js +71 -0
  296. package/node_modules/@mixmark-io/domino/lib/DocumentType.js +36 -0
  297. package/node_modules/@mixmark-io/domino/lib/Element.js +1228 -0
  298. package/node_modules/@mixmark-io/domino/lib/Event.js +66 -0
  299. package/node_modules/@mixmark-io/domino/lib/EventTarget.js +298 -0
  300. package/node_modules/@mixmark-io/domino/lib/FilteredElementList.js +92 -0
  301. package/node_modules/@mixmark-io/domino/lib/HTMLParser.js +7254 -0
  302. package/node_modules/@mixmark-io/domino/lib/Leaf.js +37 -0
  303. package/node_modules/@mixmark-io/domino/lib/LinkedList.js +44 -0
  304. package/node_modules/@mixmark-io/domino/lib/Location.js +56 -0
  305. package/node_modules/@mixmark-io/domino/lib/MouseEvent.js +52 -0
  306. package/node_modules/@mixmark-io/domino/lib/MutationConstants.js +9 -0
  307. package/node_modules/@mixmark-io/domino/lib/NamedNodeMap.js +41 -0
  308. package/node_modules/@mixmark-io/domino/lib/NavigatorID.js +17 -0
  309. package/node_modules/@mixmark-io/domino/lib/Node.js +764 -0
  310. package/node_modules/@mixmark-io/domino/lib/NodeFilter.js +24 -0
  311. package/node_modules/@mixmark-io/domino/lib/NodeIterator.js +217 -0
  312. package/node_modules/@mixmark-io/domino/lib/NodeList.es5.js +15 -0
  313. package/node_modules/@mixmark-io/domino/lib/NodeList.es6.js +12 -0
  314. package/node_modules/@mixmark-io/domino/lib/NodeList.js +13 -0
  315. package/node_modules/@mixmark-io/domino/lib/NodeTraversal.js +87 -0
  316. package/node_modules/@mixmark-io/domino/lib/NodeUtils.js +246 -0
  317. package/node_modules/@mixmark-io/domino/lib/NonDocumentTypeChildNode.js +26 -0
  318. package/node_modules/@mixmark-io/domino/lib/ProcessingInstruction.js +44 -0
  319. package/node_modules/@mixmark-io/domino/lib/Text.js +75 -0
  320. package/node_modules/@mixmark-io/domino/lib/TreeWalker.js +336 -0
  321. package/node_modules/@mixmark-io/domino/lib/UIEvent.js +19 -0
  322. package/node_modules/@mixmark-io/domino/lib/URL.js +194 -0
  323. package/node_modules/@mixmark-io/domino/lib/URLUtils.js +270 -0
  324. package/node_modules/@mixmark-io/domino/lib/Window.js +60 -0
  325. package/node_modules/@mixmark-io/domino/lib/WindowTimers.js +11 -0
  326. package/node_modules/@mixmark-io/domino/lib/attributes.js +152 -0
  327. package/node_modules/@mixmark-io/domino/lib/config.js +7 -0
  328. package/node_modules/@mixmark-io/domino/lib/defineElement.js +71 -0
  329. package/node_modules/@mixmark-io/domino/lib/events.js +7 -0
  330. package/node_modules/@mixmark-io/domino/lib/htmlelts.js +1499 -0
  331. package/node_modules/@mixmark-io/domino/lib/impl.js +27 -0
  332. package/node_modules/@mixmark-io/domino/lib/index.d.ts +5 -0
  333. package/node_modules/@mixmark-io/domino/lib/index.js +80 -0
  334. package/node_modules/@mixmark-io/domino/lib/select.js +933 -0
  335. package/node_modules/@mixmark-io/domino/lib/style_parser.js +106 -0
  336. package/node_modules/@mixmark-io/domino/lib/svg.js +59 -0
  337. package/node_modules/@mixmark-io/domino/lib/utils.js +85 -0
  338. package/node_modules/@mixmark-io/domino/lib/xmlnames.js +91 -0
  339. package/node_modules/@mixmark-io/domino/package.json +22 -0
  340. package/node_modules/@mixmark-io/domino/test/domino.js +1500 -0
  341. package/node_modules/@mixmark-io/domino/test/fixture/doc.html +13 -0
  342. package/node_modules/@mixmark-io/domino/test/fixture/jquery-1.9.1.js +9597 -0
  343. package/node_modules/@mixmark-io/domino/test/fixture/jquery-2.2.0.js +9831 -0
  344. package/node_modules/@mixmark-io/domino/test/html5lib-tests.json +80692 -0
  345. package/node_modules/@mixmark-io/domino/test/index.js +2 -0
  346. package/node_modules/@mixmark-io/domino/test/parsing.js +66 -0
  347. package/node_modules/@mixmark-io/domino/test/tools/update-entities.js +90 -0
  348. package/node_modules/@mixmark-io/domino/test/tools/update-html5lib-tests.js +355 -0
  349. package/node_modules/@mixmark-io/domino/test/w3c/README.md +13 -0
  350. package/node_modules/@mixmark-io/domino/test/w3c/harness/DomTestCase.js +438 -0
  351. package/node_modules/@mixmark-io/domino/test/w3c/harness/index.js +95 -0
  352. package/node_modules/@mixmark-io/domino/test/w3c/index.js +12 -0
  353. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentgetdoctypenodtd.js +110 -0
  354. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentinvalidcharacterexceptioncreatepi.js +143 -0
  355. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentinvalidcharacterexceptioncreatepi1.js +140 -0
  356. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/.cvsignore +0 -0
  357. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/hc_nodtdstaff.html +10 -0
  358. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/hc_staff.html +48 -0
  359. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/staff.dtd +17 -0
  360. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataappenddata.js +124 -0
  361. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataappenddatagetdata.js +123 -0
  362. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatabegining.js +122 -0
  363. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedataend.js +123 -0
  364. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedataexceedslength.js +125 -0
  365. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatagetlengthanddata.js +132 -0
  366. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatamiddle.js +123 -0
  367. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatagetdata.js +124 -0
  368. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatagetlength.js +119 -0
  369. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedatacountnegative.js +131 -0
  370. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedataoffsetgreater.js +131 -0
  371. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedataoffsetnegative.js +130 -0
  372. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrinsertdataoffsetgreater.js +130 -0
  373. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrinsertdataoffsetnegative.js +129 -0
  374. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedatacountnegative.js +132 -0
  375. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedataoffsetgreater.js +131 -0
  376. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedataoffsetnegative.js +131 -0
  377. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringcountnegative.js +131 -0
  378. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringnegativeoffset.js +130 -0
  379. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringoffsetgreater.js +131 -0
  380. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdatabeginning.js +122 -0
  381. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdataend.js +123 -0
  382. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdatamiddle.js +123 -0
  383. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedatabegining.js +122 -0
  384. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataend.js +123 -0
  385. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataexceedslengthofarg.js +124 -0
  386. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataexceedslengthofdata.js +122 -0
  387. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedatamiddle.js +123 -0
  388. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasetnodevalue.js +122 -0
  389. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasubstringexceedsvalue.js +120 -0
  390. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasubstringvalue.js +119 -0
  391. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_commentgetcomment.js +144 -0
  392. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatecomment.js +120 -0
  393. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatedocumentfragment.js +126 -0
  394. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreateelement.js +121 -0
  395. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreateelementcasesensitive.js +132 -0
  396. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatetextnode.js +120 -0
  397. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetdoctype.js +149 -0
  398. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnamelength.js +110 -0
  399. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnametotallength.js +221 -0
  400. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnamevalue.js +120 -0
  401. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetimplementation.js +126 -0
  402. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetrootnode.js +123 -0
  403. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentinvalidcharacterexceptioncreateelement.js +124 -0
  404. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentinvalidcharacterexceptioncreateelement1.js +117 -0
  405. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturenoversion.js +126 -0
  406. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturenull.js +129 -0
  407. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturexml.js +125 -0
  408. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementaddnewattribute.js +117 -0
  409. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementchangeattributevalue.js +119 -0
  410. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagname.js +112 -0
  411. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnameaccessnodelist.js +144 -0
  412. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnamenomatch.js +110 -0
  413. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnamespecialvalue.js +134 -0
  414. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgettagname.js +123 -0
  415. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementinvalidcharacterexception.js +125 -0
  416. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementinvalidcharacterexception1.js +119 -0
  417. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementnormalize.js +126 -0
  418. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementremoveattribute.js +113 -0
  419. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrieveallattributes.js +144 -0
  420. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrieveattrvalue.js +113 -0
  421. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrievetagname.js +118 -0
  422. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_entitiesremovenameditem1.js +133 -0
  423. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_entitiessetnameditem1.js +144 -0
  424. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_namednodemapchildnoderange.js +141 -0
  425. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_namednodemapnumberofnodes.js +127 -0
  426. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchild.js +123 -0
  427. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildchildexists.js +160 -0
  428. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchilddocfragment.js +158 -0
  429. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildgetnodename.js +123 -0
  430. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildnewchilddiffdocument.js +145 -0
  431. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildnodeancestor.js +132 -0
  432. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeattributenodeattribute.js +120 -0
  433. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodes.js +149 -0
  434. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodesappendchild.js +159 -0
  435. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodesempty.js +123 -0
  436. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecloneattributescopied.js +149 -0
  437. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonefalsenocopytext.js +122 -0
  438. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonegetparentnull.js +117 -0
  439. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonenodefalse.js +126 -0
  440. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonenodetrue.js +145 -0
  441. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonetruecopytext.js +121 -0
  442. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodeattributes.js +135 -0
  443. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodename.js +134 -0
  444. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodetype.js +133 -0
  445. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodevalue.js +133 -0
  446. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodename.js +114 -0
  447. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodetype.js +114 -0
  448. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodevalue.js +120 -0
  449. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodeattribute.js +111 -0
  450. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodename.js +111 -0
  451. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodetype.js +110 -0
  452. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodevalue.js +112 -0
  453. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodeattributes.js +145 -0
  454. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodename.js +125 -0
  455. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodetype.js +112 -0
  456. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodevalue.js +109 -0
  457. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetfirstchild.js +130 -0
  458. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetfirstchildnull.js +117 -0
  459. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetlastchild.js +117 -0
  460. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetlastchildnull.js +118 -0
  461. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetnextsibling.js +117 -0
  462. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetnextsiblingnull.js +124 -0
  463. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetownerdocument.js +129 -0
  464. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetownerdocumentnull.js +115 -0
  465. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetprevioussibling.js +117 -0
  466. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetprevioussiblingnull.js +124 -0
  467. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodehaschildnodes.js +113 -0
  468. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodehaschildnodesfalse.js +117 -0
  469. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbefore.js +153 -0
  470. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforedocfragment.js +141 -0
  471. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenewchilddiffdocument.js +148 -0
  472. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenewchildexists.js +151 -0
  473. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenodeancestor.js +135 -0
  474. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenodename.js +126 -0
  475. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforerefchildnonexistent.js +133 -0
  476. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforerefchildnull.js +131 -0
  477. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexequalzero.js +135 -0
  478. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexgetlength.js +129 -0
  479. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexgetlengthofemptylist.js +122 -0
  480. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexnotzero.js +133 -0
  481. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistreturnfirstitem.js +129 -0
  482. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistreturnlastitem.js +133 -0
  483. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelisttraverselist.js +149 -0
  484. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeparentnode.js +117 -0
  485. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeparentnodenull.js +114 -0
  486. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechild.js +123 -0
  487. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildgetnodename.js +128 -0
  488. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildnode.js +160 -0
  489. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildoldchildnonexistent.js +129 -0
  490. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechild.js +127 -0
  491. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnewchilddiffdocument.js +148 -0
  492. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnewchildexists.js +155 -0
  493. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnodeancestor.js +135 -0
  494. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnodename.js +126 -0
  495. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildoldchildnonexistent.js +131 -0
  496. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodeattribute.js +118 -0
  497. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodename.js +113 -0
  498. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodetype.js +124 -0
  499. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodevalue.js +118 -0
  500. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue01.js +114 -0
  501. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue02.js +114 -0
  502. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue04.js +132 -0
  503. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue05.js +114 -0
  504. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue06.js +112 -0
  505. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue07.js +134 -0
  506. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue08.js +134 -0
  507. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_notationsremovenameditem1.js +133 -0
  508. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_notationssetnameditem1.js +144 -0
  509. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textindexsizeerrnegativeoffset.js +130 -0
  510. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textindexsizeerroffsetoutofbounds.js +131 -0
  511. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textparseintolistofelements.js +169 -0
  512. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextfour.js +122 -0
  513. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextone.js +126 -0
  514. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextthree.js +124 -0
  515. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittexttwo.js +123 -0
  516. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textwithnomarkup.js +122 -0
  517. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/documentinvalidcharacterexceptioncreateentref.js +143 -0
  518. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/documentinvalidcharacterexceptioncreateentref1.js +140 -0
  519. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild1.js +132 -0
  520. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild2.js +127 -0
  521. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild3.js +138 -0
  522. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild4.js +152 -0
  523. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild5.js +141 -0
  524. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild6.js +127 -0
  525. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrchildnodes1.js +124 -0
  526. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrchildnodes2.js +130 -0
  527. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrclonenode1.js +132 -0
  528. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatedocumentfragment.js +138 -0
  529. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatetextnode.js +127 -0
  530. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatetextnode2.js +127 -0
  531. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attreffectivevalue.js +118 -0
  532. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrfirstchild.js +127 -0
  533. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrgetvalue1.js +117 -0
  534. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrgetvalue2.js +146 -0
  535. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrhaschildnodes.js +114 -0
  536. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore1.js +140 -0
  537. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore2.js +141 -0
  538. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore3.js +146 -0
  539. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore4.js +147 -0
  540. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore5.js +153 -0
  541. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore6.js +142 -0
  542. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore7.js +160 -0
  543. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrlastchild.js +127 -0
  544. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrname.js +123 -0
  545. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrnextsiblingnull.js +118 -0
  546. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrnormalize.js +133 -0
  547. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrparentnodenull.js +118 -0
  548. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrprevioussiblingnull.js +118 -0
  549. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrremovechild1.js +131 -0
  550. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrremovechild2.js +126 -0
  551. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrreplacechild1.js +135 -0
  552. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrreplacechild2.js +141 -0
  553. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrsetvalue1.js +135 -0
  554. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrsetvalue2.js +138 -0
  555. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrspecifiedvalue.js +121 -0
  556. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrspecifiedvaluechanged.js +123 -0
  557. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentcreateattribute.js +122 -0
  558. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentinvalidcharacterexceptioncreateattribute.js +124 -0
  559. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentinvalidcharacterexceptioncreateattribute1.js +117 -0
  560. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementassociatedattribute.js +119 -0
  561. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementcreatenewattribute.js +124 -0
  562. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetattributenode.js +114 -0
  563. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetattributenodenull.js +115 -0
  564. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetelementempty.js +123 -0
  565. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementinuseattributeerr.js +131 -0
  566. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementnormalize2.js +129 -0
  567. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementnotfounderr.js +130 -0
  568. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementremoveattributeaftercreate.js +124 -0
  569. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementremoveattributenode.js +119 -0
  570. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceattributewithself.js +117 -0
  571. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceexistingattribute.js +122 -0
  572. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceexistingattributegevalue.js +123 -0
  573. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementsetattributenodenull.js +120 -0
  574. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementwrongdocumenterr.js +147 -0
  575. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapgetnameditem.js +121 -0
  576. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapinuseattributeerr.js +139 -0
  577. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapnotfounderr.js +131 -0
  578. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapremovenameditem.js +124 -0
  579. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnattrnode.js +126 -0
  580. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnfirstitem.js +150 -0
  581. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnlastitem.js +152 -0
  582. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnnull.js +121 -0
  583. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditem.js +131 -0
  584. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemreturnvalue.js +132 -0
  585. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemthatexists.js +134 -0
  586. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemwithnewvalue.js +126 -0
  587. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapwrongdocumenterr.js +149 -0
  588. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeappendchildinvalidnodetype.js +130 -0
  589. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodename.js +115 -0
  590. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodetype.js +123 -0
  591. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodevalue.js +118 -0
  592. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeinsertbeforeinvalidnodetype.js +136 -0
  593. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodereplacechildinvalidnodetype.js +136 -0
  594. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodevalue03.js +138 -0
  595. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement01.js +114 -0
  596. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement04.js +113 -0
  597. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement05.js +113 -0
  598. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement07.js +113 -0
  599. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement10.js +114 -0
  600. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement11.js +113 -0
  601. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement12.js +113 -0
  602. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement13.js +107 -0
  603. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement14.js +107 -0
  604. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement01.js +114 -0
  605. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement02.js +114 -0
  606. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement03.js +114 -0
  607. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement04.js +113 -0
  608. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement05.js +113 -0
  609. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement06.js +113 -0
  610. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement07.js +114 -0
  611. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement08.js +113 -0
  612. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement01.js +116 -0
  613. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement02.js +114 -0
  614. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement03.js +114 -0
  615. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement04.js +114 -0
  616. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement05.js +114 -0
  617. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement06.js +114 -0
  618. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement07.js +113 -0
  619. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement08.js +113 -0
  620. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument01.js +109 -0
  621. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument05.js +114 -0
  622. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument15.js +115 -0
  623. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument16.js +114 -0
  624. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument17.js +119 -0
  625. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument18.js +102 -0
  626. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument19.js +129 -0
  627. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument20.js +129 -0
  628. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument21.js +138 -0
  629. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement01.js +113 -0
  630. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement02.js +113 -0
  631. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement03.js +113 -0
  632. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement04.js +113 -0
  633. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement05.js +113 -0
  634. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement06.js +113 -0
  635. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement07.js +113 -0
  636. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement08.js +113 -0
  637. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement09.js +113 -0
  638. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement10.js +113 -0
  639. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement100.js +113 -0
  640. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement101.js +113 -0
  641. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement102.js +113 -0
  642. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement103.js +113 -0
  643. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement104.js +113 -0
  644. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement105.js +113 -0
  645. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement106.js +113 -0
  646. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement107.js +113 -0
  647. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement108.js +113 -0
  648. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement109.js +113 -0
  649. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement11.js +113 -0
  650. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement110.js +113 -0
  651. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement111.js +113 -0
  652. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement112.js +113 -0
  653. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement113.js +113 -0
  654. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement114.js +113 -0
  655. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement115.js +113 -0
  656. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement116.js +113 -0
  657. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement117.js +113 -0
  658. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement118.js +113 -0
  659. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement119.js +113 -0
  660. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement12.js +113 -0
  661. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement120.js +113 -0
  662. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement121.js +113 -0
  663. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement122.js +113 -0
  664. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement123.js +113 -0
  665. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement124.js +113 -0
  666. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement125.js +113 -0
  667. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement126.js +113 -0
  668. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement127.js +113 -0
  669. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement128.js +113 -0
  670. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement129.js +113 -0
  671. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement13.js +113 -0
  672. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement130.js +113 -0
  673. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement131.js +113 -0
  674. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement132.js +113 -0
  675. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement133.js +113 -0
  676. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement134.js +113 -0
  677. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement135.js +113 -0
  678. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement136.js +113 -0
  679. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement137.js +113 -0
  680. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement138.js +113 -0
  681. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement139.js +113 -0
  682. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement14.js +113 -0
  683. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement140.js +113 -0
  684. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement141.js +113 -0
  685. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement142.js +113 -0
  686. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement143.js +113 -0
  687. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement144.js +113 -0
  688. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement145.js +113 -0
  689. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement15.js +113 -0
  690. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement16.js +113 -0
  691. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement17.js +113 -0
  692. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement18.js +113 -0
  693. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement19.js +113 -0
  694. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement20.js +113 -0
  695. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement21.js +113 -0
  696. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement22.js +113 -0
  697. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement23.js +113 -0
  698. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement24.js +113 -0
  699. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement25.js +113 -0
  700. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement26.js +113 -0
  701. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement27.js +113 -0
  702. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement28.js +113 -0
  703. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement29.js +113 -0
  704. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement30.js +113 -0
  705. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement31.js +113 -0
  706. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement32.js +113 -0
  707. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement33.js +113 -0
  708. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement34.js +113 -0
  709. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement35.js +113 -0
  710. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement36.js +113 -0
  711. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement37.js +113 -0
  712. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement38.js +113 -0
  713. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement39.js +113 -0
  714. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement40.js +113 -0
  715. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement41.js +113 -0
  716. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement42.js +113 -0
  717. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement43.js +113 -0
  718. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement44.js +113 -0
  719. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement45.js +113 -0
  720. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement46.js +113 -0
  721. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement47.js +113 -0
  722. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement48.js +113 -0
  723. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement49.js +113 -0
  724. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement50.js +113 -0
  725. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement51.js +113 -0
  726. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement52.js +113 -0
  727. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement53.js +113 -0
  728. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement54.js +113 -0
  729. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement55.js +113 -0
  730. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement56.js +113 -0
  731. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement57.js +113 -0
  732. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement58.js +113 -0
  733. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement59.js +113 -0
  734. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement60.js +113 -0
  735. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement61.js +113 -0
  736. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement62.js +113 -0
  737. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement63.js +113 -0
  738. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement64.js +113 -0
  739. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement65.js +113 -0
  740. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement66.js +113 -0
  741. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement67.js +113 -0
  742. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement68.js +113 -0
  743. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement69.js +113 -0
  744. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement70.js +113 -0
  745. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement71.js +113 -0
  746. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement72.js +113 -0
  747. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement73.js +113 -0
  748. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement74.js +113 -0
  749. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement75.js +113 -0
  750. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement76.js +113 -0
  751. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement77.js +113 -0
  752. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement78.js +113 -0
  753. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement79.js +113 -0
  754. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement80.js +113 -0
  755. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement81.js +113 -0
  756. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement82.js +113 -0
  757. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement83.js +113 -0
  758. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement84.js +113 -0
  759. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement85.js +113 -0
  760. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement86.js +113 -0
  761. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement87.js +113 -0
  762. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement88.js +113 -0
  763. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement89.js +113 -0
  764. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement90.js +113 -0
  765. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement91.js +113 -0
  766. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement92.js +113 -0
  767. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement93.js +113 -0
  768. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement94.js +113 -0
  769. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement95.js +113 -0
  770. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement96.js +113 -0
  771. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement97.js +113 -0
  772. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement98.js +113 -0
  773. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement99.js +113 -0
  774. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFieldSetElement01.js +116 -0
  775. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFieldSetElement02.js +114 -0
  776. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement03.js +113 -0
  777. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement04.js +114 -0
  778. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement05.js +113 -0
  779. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement06.js +113 -0
  780. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement07.js +113 -0
  781. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement08.js +113 -0
  782. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement03.js +114 -0
  783. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement07.js +115 -0
  784. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement09.js +114 -0
  785. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement10.js +114 -0
  786. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement05.js +125 -0
  787. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement06.js +128 -0
  788. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement07.js +113 -0
  789. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement09.js +113 -0
  790. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement11.js +128 -0
  791. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement12.js +127 -0
  792. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement01.js +115 -0
  793. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement02.js +115 -0
  794. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement03.js +116 -0
  795. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement04.js +115 -0
  796. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement05.js +115 -0
  797. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement07.js +115 -0
  798. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement08.js +115 -0
  799. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement09.js +114 -0
  800. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement10.js +115 -0
  801. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement11.js +115 -0
  802. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement12.js +115 -0
  803. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement13.js +130 -0
  804. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement14.js +115 -0
  805. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement15.js +115 -0
  806. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement16.js +114 -0
  807. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement18.js +115 -0
  808. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement21.js +114 -0
  809. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLIElement02.js +113 -0
  810. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement01.js +109 -0
  811. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement02.js +114 -0
  812. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement03.js +114 -0
  813. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement04.js +115 -0
  814. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement01.js +113 -0
  815. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement03.js +113 -0
  816. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement04.js +113 -0
  817. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement05.js +113 -0
  818. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement06.js +113 -0
  819. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement08.js +113 -0
  820. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMapElement02.js +113 -0
  821. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement01.js +113 -0
  822. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement02.js +113 -0
  823. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement03.js +113 -0
  824. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement04.js +113 -0
  825. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement01.js +114 -0
  826. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement02.js +113 -0
  827. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement03.js +114 -0
  828. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement04.js +113 -0
  829. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOListElement02.js +113 -0
  830. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOListElement03.js +113 -0
  831. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement01.js +116 -0
  832. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement08.js +114 -0
  833. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement10.js +115 -0
  834. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement11.js +129 -0
  835. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement13.js +115 -0
  836. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement14.js +115 -0
  837. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement15.js +114 -0
  838. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement16.js +129 -0
  839. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement17.js +114 -0
  840. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement18.js +115 -0
  841. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement19.js +114 -0
  842. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptGroupElement01.js +114 -0
  843. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptGroupElement02.js +113 -0
  844. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement01.js +117 -0
  845. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement02.js +115 -0
  846. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement03.js +115 -0
  847. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement06.js +115 -0
  848. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement07.js +115 -0
  849. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement08.js +115 -0
  850. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLParamElement02.js +113 -0
  851. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLQuoteElement01.js +114 -0
  852. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLQuoteElement02.js +115 -0
  853. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement01.js +113 -0
  854. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement02.js +114 -0
  855. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement03.js +114 -0
  856. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement04.js +113 -0
  857. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement05.js +113 -0
  858. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement06.js +109 -0
  859. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement07.js +109 -0
  860. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement03.js +118 -0
  861. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement06.js +117 -0
  862. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement07.js +115 -0
  863. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement08.js +134 -0
  864. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement09.js +115 -0
  865. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement10.js +115 -0
  866. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement11.js +115 -0
  867. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement12.js +114 -0
  868. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement13.js +115 -0
  869. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement01.js +113 -0
  870. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement02.js +113 -0
  871. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement03.js +113 -0
  872. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement15.js +115 -0
  873. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement16.js +115 -0
  874. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement23.js +115 -0
  875. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement24.js +115 -0
  876. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement25.js +114 -0
  877. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableColElement07.js +115 -0
  878. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableColElement08.js +115 -0
  879. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement02.js +115 -0
  880. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement04.js +115 -0
  881. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement06.js +115 -0
  882. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement07.js +132 -0
  883. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement12.js +114 -0
  884. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableRowElement05.js +117 -0
  885. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement13.js +117 -0
  886. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement14.js +117 -0
  887. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement15.js +117 -0
  888. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement02.js +117 -0
  889. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement03.js +115 -0
  890. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement04.js +115 -0
  891. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement05.js +114 -0
  892. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement06.js +115 -0
  893. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement07.js +115 -0
  894. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement08.js +114 -0
  895. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement09.js +114 -0
  896. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement10.js +115 -0
  897. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTitleElement01.js +113 -0
  898. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor01.js +112 -0
  899. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor04.js +112 -0
  900. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor05.js +112 -0
  901. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area01.js +111 -0
  902. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area02.js +111 -0
  903. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area03.js +111 -0
  904. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area04.js +111 -0
  905. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button01.js +111 -0
  906. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button02.js +115 -0
  907. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button03.js +115 -0
  908. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button04.js +115 -0
  909. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button05.js +112 -0
  910. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button06.js +112 -0
  911. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button07.js +112 -0
  912. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button08.js +112 -0
  913. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button09.js +112 -0
  914. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/doc01.js +106 -0
  915. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/.cvsignore +6 -0
  916. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/HTMLDocument04.html +36 -0
  917. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/anchor.html +12 -0
  918. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/anchor2.html +13 -0
  919. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/applet.html +12 -0
  920. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/applet2.html +12 -0
  921. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/area.html +14 -0
  922. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/area2.html +15 -0
  923. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/base.html +11 -0
  924. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/base2.html +15 -0
  925. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/basefont.html +12 -0
  926. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/body.html +10 -0
  927. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/br.html +12 -0
  928. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/button.html +21 -0
  929. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/collection.html +79 -0
  930. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/directory.html +14 -0
  931. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/div.html +10 -0
  932. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/dl.html +15 -0
  933. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/document.html +36 -0
  934. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/element.html +81 -0
  935. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/fieldset.html +23 -0
  936. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/font.html +10 -0
  937. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form.html +17 -0
  938. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form2.html +17 -0
  939. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form3.html +17 -0
  940. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/frame.html +14 -0
  941. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/frameset.html +14 -0
  942. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/head.html +11 -0
  943. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/heading.html +16 -0
  944. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/hr.html +11 -0
  945. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/html.html +12 -0
  946. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/iframe.html +10 -0
  947. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/img.html +13 -0
  948. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/input.html +60 -0
  949. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/isindex.html +14 -0
  950. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/label.html +21 -0
  951. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/legend.html +22 -0
  952. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/li.html +23 -0
  953. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/link.html +15 -0
  954. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/link2.html +15 -0
  955. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/map.html +16 -0
  956. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/menu.html +15 -0
  957. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/meta.html +13 -0
  958. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/mod.html +15 -0
  959. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/object.html +18 -0
  960. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/object2.html +17 -0
  961. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/olist.html +32 -0
  962. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/optgroup.html +25 -0
  963. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/option.html +36 -0
  964. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/paragraph.html +13 -0
  965. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/param.html +14 -0
  966. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/pre.html +17 -0
  967. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/quote.html +16 -0
  968. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/script.html +11 -0
  969. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/select.html +44 -0
  970. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/style.html +12 -0
  971. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/table.html +78 -0
  972. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/table1.html +12 -0
  973. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecaption.html +25 -0
  974. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecell.html +23 -0
  975. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecol.html +35 -0
  976. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablerow.html +59 -0
  977. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablesection.html +62 -0
  978. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/textarea.html +26 -0
  979. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/title.html +13 -0
  980. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/ulist.html +36 -0
  981. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/hasFeature01.js +96 -0
  982. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument02.js +111 -0
  983. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument03.js +111 -0
  984. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument04.js +110 -0
  985. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument07.js +113 -0
  986. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument09.js +114 -0
  987. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument10.js +113 -0
  988. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument12.js +109 -0
  989. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement01.js +117 -0
  990. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement09.js +107 -0
  991. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement10.js +107 -0
  992. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement19.js +107 -0
  993. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement20.js +107 -0
  994. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement22.js +108 -0
  995. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement01.js +115 -0
  996. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement02.js +115 -0
  997. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement04.js +114 -0
  998. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement05.js +114 -0
  999. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement14.js +107 -0
  1000. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement15.js +107 -0
  1001. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement16.js +115 -0
  1002. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement17.js +115 -0
  1003. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement18.js +133 -0
  1004. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement19.js +137 -0
  1005. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement08.js +129 -0
  1006. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement09.js +132 -0
  1007. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement19.js +123 -0
  1008. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement20.js +122 -0
  1009. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement21.js +139 -0
  1010. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement22.js +123 -0
  1011. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement23.js +122 -0
  1012. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement24.js +139 -0
  1013. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement25.js +121 -0
  1014. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement26.js +125 -0
  1015. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement27.js +119 -0
  1016. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement28.js +133 -0
  1017. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement29.js +137 -0
  1018. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement30.js +144 -0
  1019. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement31.js +138 -0
  1020. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement32.js +125 -0
  1021. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement33.js +124 -0
  1022. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableRowElement01.js +117 -0
  1023. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement13.js +107 -0
  1024. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement14.js +107 -0
  1025. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement15.js +107 -0
  1026. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object01.js +112 -0
  1027. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object06.js +113 -0
  1028. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object07.js +111 -0
  1029. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object08.js +126 -0
  1030. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object10.js +112 -0
  1031. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object11.js +112 -0
  1032. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object12.js +111 -0
  1033. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object13.js +126 -0
  1034. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object14.js +111 -0
  1035. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement02.js +114 -0
  1036. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement03.js +114 -0
  1037. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement06.js +113 -0
  1038. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement08.js +113 -0
  1039. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement09.js +113 -0
  1040. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement01.js +114 -0
  1041. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement02.js +114 -0
  1042. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement03.js +113 -0
  1043. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement04.js +113 -0
  1044. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement05.js +113 -0
  1045. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement06.js +113 -0
  1046. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement07.js +126 -0
  1047. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement08.js +113 -0
  1048. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement09.js +127 -0
  1049. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement10.js +113 -0
  1050. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement11.js +114 -0
  1051. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBRElement01.js +113 -0
  1052. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement01.js +113 -0
  1053. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement02.js +113 -0
  1054. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement03.js +125 -0
  1055. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement01.js +113 -0
  1056. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement02.js +114 -0
  1057. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement03.js +113 -0
  1058. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement04.js +114 -0
  1059. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement05.js +113 -0
  1060. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement06.js +114 -0
  1061. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection01.js +121 -0
  1062. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection02.js +121 -0
  1063. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection03.js +121 -0
  1064. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection04.js +133 -0
  1065. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection05.js +118 -0
  1066. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection06.js +122 -0
  1067. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection07.js +121 -0
  1068. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection08.js +121 -0
  1069. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection09.js +118 -0
  1070. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection10.js +123 -0
  1071. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection11.js +123 -0
  1072. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection12.js +121 -0
  1073. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDirectoryElement01.js +114 -0
  1074. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDivElement01.js +113 -0
  1075. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDlistElement01.js +114 -0
  1076. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument08.js +114 -0
  1077. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument11.js +114 -0
  1078. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument13.js +109 -0
  1079. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument14.js +110 -0
  1080. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement01.js +113 -0
  1081. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement02.js +114 -0
  1082. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement03.js +113 -0
  1083. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFormElement02.js +115 -0
  1084. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement01.js +116 -0
  1085. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement02.js +115 -0
  1086. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement03.js +114 -0
  1087. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement04.js +114 -0
  1088. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement05.js +115 -0
  1089. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement06.js +115 -0
  1090. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement07.js +115 -0
  1091. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement08.js +114 -0
  1092. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameSetElement01.js +115 -0
  1093. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameSetElement02.js +115 -0
  1094. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement01.js +113 -0
  1095. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement02.js +114 -0
  1096. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement03.js +113 -0
  1097. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement04.js +113 -0
  1098. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadElement01.js +113 -0
  1099. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement01.js +113 -0
  1100. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement02.js +113 -0
  1101. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement03.js +113 -0
  1102. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement04.js +113 -0
  1103. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement05.js +113 -0
  1104. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement06.js +113 -0
  1105. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHtmlElement01.js +124 -0
  1106. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement01.js +115 -0
  1107. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement02.js +116 -0
  1108. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement04.js +115 -0
  1109. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement05.js +114 -0
  1110. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement06.js +114 -0
  1111. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement08.js +115 -0
  1112. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement01.js +113 -0
  1113. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement02.js +114 -0
  1114. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement03.js +114 -0
  1115. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement04.js +113 -0
  1116. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement08.js +114 -0
  1117. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement10.js +113 -0
  1118. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement14.js +115 -0
  1119. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLInputElement06.js +115 -0
  1120. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLInputElement17.js +114 -0
  1121. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement01.js +122 -0
  1122. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement02.js +119 -0
  1123. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement03.js +114 -0
  1124. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLIElement01.js +113 -0
  1125. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement01.js +117 -0
  1126. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement02.js +114 -0
  1127. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement03.js +114 -0
  1128. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement04.js +113 -0
  1129. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement02.js +114 -0
  1130. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement07.js +113 -0
  1131. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement09.js +113 -0
  1132. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLMapElement01.js +116 -0
  1133. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLMenuElement01.js +114 -0
  1134. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOListElement01.js +114 -0
  1135. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement02.js +114 -0
  1136. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement03.js +115 -0
  1137. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement04.js +114 -0
  1138. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement05.js +114 -0
  1139. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement06.js +115 -0
  1140. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement07.js +115 -0
  1141. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement09.js +115 -0
  1142. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement12.js +115 -0
  1143. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement04.js +114 -0
  1144. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement05.js +115 -0
  1145. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement09.js +114 -0
  1146. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParagraphElement01.js +113 -0
  1147. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement01.js +113 -0
  1148. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement03.js +114 -0
  1149. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement04.js +114 -0
  1150. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLPreElement01.js +113 -0
  1151. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCaptionElement01.js +114 -0
  1152. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement01.js +114 -0
  1153. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement02.js +114 -0
  1154. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement03.js +114 -0
  1155. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement04.js +114 -0
  1156. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement05.js +115 -0
  1157. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement06.js +115 -0
  1158. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement07.js +115 -0
  1159. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement08.js +115 -0
  1160. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement09.js +115 -0
  1161. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement10.js +115 -0
  1162. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement11.js +115 -0
  1163. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement12.js +115 -0
  1164. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement13.js +115 -0
  1165. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement14.js +115 -0
  1166. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement17.js +115 -0
  1167. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement18.js +115 -0
  1168. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement19.js +114 -0
  1169. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement20.js +114 -0
  1170. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement21.js +114 -0
  1171. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement22.js +114 -0
  1172. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement26.js +114 -0
  1173. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement27.js +114 -0
  1174. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement28.js +114 -0
  1175. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement29.js +114 -0
  1176. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement30.js +114 -0
  1177. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement01.js +115 -0
  1178. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement02.js +115 -0
  1179. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement03.js +115 -0
  1180. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement04.js +115 -0
  1181. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement05.js +114 -0
  1182. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement06.js +114 -0
  1183. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement09.js +115 -0
  1184. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement10.js +115 -0
  1185. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement11.js +114 -0
  1186. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement12.js +114 -0
  1187. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement01.js +117 -0
  1188. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement03.js +117 -0
  1189. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement05.js +117 -0
  1190. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement10.js +115 -0
  1191. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement11.js +114 -0
  1192. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement13.js +115 -0
  1193. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement14.js +115 -0
  1194. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement15.js +114 -0
  1195. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement16.js +114 -0
  1196. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement17.js +115 -0
  1197. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement18.js +114 -0
  1198. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement02.js +115 -0
  1199. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement03.js +115 -0
  1200. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement04.js +115 -0
  1201. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement06.js +115 -0
  1202. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement07.js +114 -0
  1203. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement08.js +114 -0
  1204. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement09.js +114 -0
  1205. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement10.js +115 -0
  1206. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement11.js +144 -0
  1207. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement12.js +143 -0
  1208. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement13.js +144 -0
  1209. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement14.js +144 -0
  1210. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement01.js +115 -0
  1211. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement02.js +115 -0
  1212. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement03.js +115 -0
  1213. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement04.js +115 -0
  1214. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement05.js +115 -0
  1215. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement06.js +115 -0
  1216. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement07.js +114 -0
  1217. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement08.js +114 -0
  1218. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement09.js +114 -0
  1219. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement10.js +115 -0
  1220. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement11.js +115 -0
  1221. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement12.js +115 -0
  1222. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement16.js +126 -0
  1223. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement17.js +126 -0
  1224. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement18.js +126 -0
  1225. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement19.js +127 -0
  1226. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement20.js +127 -0
  1227. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement21.js +128 -0
  1228. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement22.js +125 -0
  1229. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement23.js +125 -0
  1230. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement24.js +125 -0
  1231. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement01.js +115 -0
  1232. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement11.js +115 -0
  1233. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement12.js +115 -0
  1234. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLUListElement01.js +114 -0
  1235. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLUListElement02.js +113 -0
  1236. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor02.js +112 -0
  1237. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor03.js +112 -0
  1238. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor06.js +112 -0
  1239. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/basefont01.js +111 -0
  1240. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/body01.js +112 -0
  1241. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/dlist01.js +111 -0
  1242. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object02.js +112 -0
  1243. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object03.js +112 -0
  1244. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object04.js +112 -0
  1245. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object05.js +112 -0
  1246. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object09.js +112 -0
  1247. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object15.js +112 -0
  1248. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table02.js +115 -0
  1249. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table03.js +115 -0
  1250. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table04.js +115 -0
  1251. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table06.js +115 -0
  1252. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table07.js +118 -0
  1253. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table08.js +115 -0
  1254. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table09.js +115 -0
  1255. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table10.js +115 -0
  1256. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table12.js +115 -0
  1257. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table15.js +118 -0
  1258. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table17.js +115 -0
  1259. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table18.js +112 -0
  1260. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table19.js +113 -0
  1261. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table20.js +112 -0
  1262. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table21.js +112 -0
  1263. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table22.js +112 -0
  1264. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table23.js +112 -0
  1265. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table24.js +112 -0
  1266. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table26.js +111 -0
  1267. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table27.js +112 -0
  1268. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table29.js +112 -0
  1269. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table30.js +112 -0
  1270. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table31.js +112 -0
  1271. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table32.js +112 -0
  1272. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table33.js +112 -0
  1273. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table35.js +112 -0
  1274. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table36.js +112 -0
  1275. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table37.js +111 -0
  1276. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table38.js +112 -0
  1277. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table39.js +112 -0
  1278. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table40.js +112 -0
  1279. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table41.js +112 -0
  1280. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table42.js +112 -0
  1281. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table43.js +112 -0
  1282. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table44.js +112 -0
  1283. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table45.js +112 -0
  1284. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table46.js +112 -0
  1285. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table47.js +112 -0
  1286. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table48.js +112 -0
  1287. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table49.js +112 -0
  1288. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table50.js +112 -0
  1289. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table52.js +112 -0
  1290. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table53.js +112 -0
  1291. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table01.js +112 -0
  1292. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table25.js +112 -0
  1293. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table28.js +112 -0
  1294. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table34.js +112 -0
  1295. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table51.js +112 -0
  1296. package/node_modules/@mixmark-io/domino/test/web-platform-blocklist.json +4688 -0
  1297. package/node_modules/@mixmark-io/domino/test/web-platform-tests.js +353 -0
  1298. package/node_modules/@mixmark-io/domino/test/xss.js +361 -0
  1299. package/node_modules/@mozilla/readability/.eslintrc.js +213 -0
  1300. package/node_modules/@mozilla/readability/CHANGELOG.md +79 -0
  1301. package/node_modules/@mozilla/readability/CODE_OF_CONDUCT.md +15 -0
  1302. package/node_modules/@mozilla/readability/CONTRIBUTING.md +74 -0
  1303. package/node_modules/@mozilla/readability/JSDOMParser.js +1197 -0
  1304. package/node_modules/@mozilla/readability/LICENSE.md +13 -0
  1305. package/node_modules/@mozilla/readability/README.md +127 -0
  1306. package/node_modules/@mozilla/readability/Readability-readerable.js +108 -0
  1307. package/node_modules/@mozilla/readability/Readability.js +2314 -0
  1308. package/node_modules/@mozilla/readability/SECURITY.md +8 -0
  1309. package/node_modules/@mozilla/readability/index.d.ts +64 -0
  1310. package/node_modules/@mozilla/readability/index.js +8 -0
  1311. package/node_modules/@mozilla/readability/package.json +37 -0
  1312. package/node_modules/@pondwader/socks5-server/.DS_Store +0 -0
  1313. package/node_modules/@pondwader/socks5-server/.github/workflows/ci.yml +27 -0
  1314. package/node_modules/@pondwader/socks5-server/LICENSE +20 -0
  1315. package/node_modules/@pondwader/socks5-server/README.md +151 -0
  1316. package/node_modules/@pondwader/socks5-server/dist/index.d.mts +87 -0
  1317. package/node_modules/@pondwader/socks5-server/dist/index.d.ts +87 -0
  1318. package/node_modules/@pondwader/socks5-server/dist/index.js +346 -0
  1319. package/node_modules/@pondwader/socks5-server/dist/index.mjs +307 -0
  1320. package/node_modules/@pondwader/socks5-server/package.json +31 -0
  1321. package/node_modules/boolbase/README.md +10 -0
  1322. package/node_modules/boolbase/index.js +8 -0
  1323. package/node_modules/boolbase/package.json +23 -0
  1324. package/node_modules/commander/.DS_Store +0 -0
  1325. package/node_modules/commander/LICENSE +22 -0
  1326. package/node_modules/commander/Readme.md +1157 -0
  1327. package/node_modules/commander/esm.mjs +16 -0
  1328. package/node_modules/commander/index.js +24 -0
  1329. package/node_modules/commander/lib/argument.js +149 -0
  1330. package/node_modules/commander/lib/command.js +2509 -0
  1331. package/node_modules/commander/lib/error.js +39 -0
  1332. package/node_modules/commander/lib/help.js +520 -0
  1333. package/node_modules/commander/lib/option.js +330 -0
  1334. package/node_modules/commander/lib/suggestSimilar.js +101 -0
  1335. package/node_modules/commander/package-support.json +16 -0
  1336. package/node_modules/commander/package.json +84 -0
  1337. package/node_modules/commander/typings/esm.d.mts +3 -0
  1338. package/node_modules/commander/typings/index.d.ts +969 -0
  1339. package/node_modules/css-select/LICENSE +11 -0
  1340. package/node_modules/css-select/README.md +264 -0
  1341. package/node_modules/css-select/lib/attributes.d.ts +7 -0
  1342. package/node_modules/css-select/lib/attributes.d.ts.map +1 -0
  1343. package/node_modules/css-select/lib/attributes.js +236 -0
  1344. package/node_modules/css-select/lib/attributes.js.map +1 -0
  1345. package/node_modules/css-select/lib/compile.d.ts +13 -0
  1346. package/node_modules/css-select/lib/compile.d.ts.map +1 -0
  1347. package/node_modules/css-select/lib/compile.js +151 -0
  1348. package/node_modules/css-select/lib/compile.js.map +1 -0
  1349. package/node_modules/css-select/lib/esm/attributes.d.ts +7 -0
  1350. package/node_modules/css-select/lib/esm/attributes.d.ts.map +1 -0
  1351. package/node_modules/css-select/lib/esm/attributes.js +222 -0
  1352. package/node_modules/css-select/lib/esm/attributes.js.map +1 -0
  1353. package/node_modules/css-select/lib/esm/compile.d.ts +13 -0
  1354. package/node_modules/css-select/lib/esm/compile.d.ts.map +1 -0
  1355. package/node_modules/css-select/lib/esm/compile.js +115 -0
  1356. package/node_modules/css-select/lib/esm/compile.js.map +1 -0
  1357. package/node_modules/css-select/lib/esm/general.d.ts +3 -0
  1358. package/node_modules/css-select/lib/esm/general.d.ts.map +1 -0
  1359. package/node_modules/css-select/lib/esm/general.js +144 -0
  1360. package/node_modules/css-select/lib/esm/general.js.map +1 -0
  1361. package/node_modules/css-select/lib/esm/helpers/cache.d.ts +12 -0
  1362. package/node_modules/css-select/lib/esm/helpers/cache.d.ts.map +1 -0
  1363. package/node_modules/css-select/lib/esm/helpers/cache.js +41 -0
  1364. package/node_modules/css-select/lib/esm/helpers/cache.js.map +1 -0
  1365. package/node_modules/css-select/lib/esm/helpers/querying.d.ts +24 -0
  1366. package/node_modules/css-select/lib/esm/helpers/querying.d.ts.map +1 -0
  1367. package/node_modules/css-select/lib/esm/helpers/querying.js +105 -0
  1368. package/node_modules/css-select/lib/esm/helpers/querying.js.map +1 -0
  1369. package/node_modules/css-select/lib/esm/helpers/selectors.d.ts +20 -0
  1370. package/node_modules/css-select/lib/esm/helpers/selectors.d.ts.map +1 -0
  1371. package/node_modules/css-select/lib/esm/helpers/selectors.js +103 -0
  1372. package/node_modules/css-select/lib/esm/helpers/selectors.js.map +1 -0
  1373. package/node_modules/css-select/lib/esm/index.d.ts +50 -0
  1374. package/node_modules/css-select/lib/esm/index.d.ts.map +1 -0
  1375. package/node_modules/css-select/lib/esm/index.js +115 -0
  1376. package/node_modules/css-select/lib/esm/index.js.map +1 -0
  1377. package/node_modules/css-select/lib/esm/package.json +1 -0
  1378. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts +5 -0
  1379. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts.map +1 -0
  1380. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js +35 -0
  1381. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js.map +1 -0
  1382. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts +4 -0
  1383. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts.map +1 -0
  1384. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js +143 -0
  1385. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js.map +1 -0
  1386. package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts +8 -0
  1387. package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts.map +1 -0
  1388. package/node_modules/css-select/lib/esm/pseudo-selectors/index.js +40 -0
  1389. package/node_modules/css-select/lib/esm/pseudo-selectors/index.js.map +1 -0
  1390. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts +6 -0
  1391. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts.map +1 -0
  1392. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js +79 -0
  1393. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js.map +1 -0
  1394. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts +9 -0
  1395. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts.map +1 -0
  1396. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js +94 -0
  1397. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js.map +1 -0
  1398. package/node_modules/css-select/lib/esm/sort.d.ts +12 -0
  1399. package/node_modules/css-select/lib/esm/sort.d.ts.map +1 -0
  1400. package/node_modules/css-select/lib/esm/sort.js +79 -0
  1401. package/node_modules/css-select/lib/esm/sort.js.map +1 -0
  1402. package/node_modules/css-select/lib/esm/types.d.ts +167 -0
  1403. package/node_modules/css-select/lib/esm/types.d.ts.map +1 -0
  1404. package/node_modules/css-select/lib/esm/types.js +2 -0
  1405. package/node_modules/css-select/lib/esm/types.js.map +1 -0
  1406. package/node_modules/css-select/lib/general.d.ts +3 -0
  1407. package/node_modules/css-select/lib/general.d.ts.map +1 -0
  1408. package/node_modules/css-select/lib/general.js +148 -0
  1409. package/node_modules/css-select/lib/general.js.map +1 -0
  1410. package/node_modules/css-select/lib/helpers/cache.d.ts +12 -0
  1411. package/node_modules/css-select/lib/helpers/cache.d.ts.map +1 -0
  1412. package/node_modules/css-select/lib/helpers/cache.js +45 -0
  1413. package/node_modules/css-select/lib/helpers/cache.js.map +1 -0
  1414. package/node_modules/css-select/lib/helpers/querying.d.ts +24 -0
  1415. package/node_modules/css-select/lib/helpers/querying.d.ts.map +1 -0
  1416. package/node_modules/css-select/lib/helpers/querying.js +111 -0
  1417. package/node_modules/css-select/lib/helpers/querying.js.map +1 -0
  1418. package/node_modules/css-select/lib/helpers/selectors.d.ts +20 -0
  1419. package/node_modules/css-select/lib/helpers/selectors.d.ts.map +1 -0
  1420. package/node_modules/css-select/lib/helpers/selectors.js +111 -0
  1421. package/node_modules/css-select/lib/helpers/selectors.js.map +1 -0
  1422. package/node_modules/css-select/lib/index.d.ts +50 -0
  1423. package/node_modules/css-select/lib/index.d.ts.map +1 -0
  1424. package/node_modules/css-select/lib/index.js +154 -0
  1425. package/node_modules/css-select/lib/index.js.map +1 -0
  1426. package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts +5 -0
  1427. package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts.map +1 -0
  1428. package/node_modules/css-select/lib/pseudo-selectors/aliases.js +34 -0
  1429. package/node_modules/css-select/lib/pseudo-selectors/aliases.js.map +1 -0
  1430. package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts +4 -0
  1431. package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts.map +1 -0
  1432. package/node_modules/css-select/lib/pseudo-selectors/filters.js +157 -0
  1433. package/node_modules/css-select/lib/pseudo-selectors/filters.js.map +1 -0
  1434. package/node_modules/css-select/lib/pseudo-selectors/index.d.ts +8 -0
  1435. package/node_modules/css-select/lib/pseudo-selectors/index.d.ts.map +1 -0
  1436. package/node_modules/css-select/lib/pseudo-selectors/index.js +46 -0
  1437. package/node_modules/css-select/lib/pseudo-selectors/index.js.map +1 -0
  1438. package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts +6 -0
  1439. package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts.map +1 -0
  1440. package/node_modules/css-select/lib/pseudo-selectors/pseudos.js +93 -0
  1441. package/node_modules/css-select/lib/pseudo-selectors/pseudos.js.map +1 -0
  1442. package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts +9 -0
  1443. package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts.map +1 -0
  1444. package/node_modules/css-select/lib/pseudo-selectors/subselects.js +112 -0
  1445. package/node_modules/css-select/lib/pseudo-selectors/subselects.js.map +1 -0
  1446. package/node_modules/css-select/lib/sort.d.ts +12 -0
  1447. package/node_modules/css-select/lib/sort.d.ts.map +1 -0
  1448. package/node_modules/css-select/lib/sort.js +84 -0
  1449. package/node_modules/css-select/lib/sort.js.map +1 -0
  1450. package/node_modules/css-select/lib/types.d.ts +167 -0
  1451. package/node_modules/css-select/lib/types.d.ts.map +1 -0
  1452. package/node_modules/css-select/lib/types.js +3 -0
  1453. package/node_modules/css-select/lib/types.js.map +1 -0
  1454. package/node_modules/css-select/package.json +81 -0
  1455. package/node_modules/css-what/LICENSE +11 -0
  1456. package/node_modules/css-what/lib/commonjs/index.d.ts +4 -0
  1457. package/node_modules/css-what/lib/commonjs/index.d.ts.map +1 -0
  1458. package/node_modules/css-what/lib/commonjs/index.js +23 -0
  1459. package/node_modules/css-what/lib/commonjs/parse.d.ts +20 -0
  1460. package/node_modules/css-what/lib/commonjs/parse.d.ts.map +1 -0
  1461. package/node_modules/css-what/lib/commonjs/parse.js +425 -0
  1462. package/node_modules/css-what/lib/commonjs/stringify.d.ts +8 -0
  1463. package/node_modules/css-what/lib/commonjs/stringify.d.ts.map +1 -0
  1464. package/node_modules/css-what/lib/commonjs/stringify.js +138 -0
  1465. package/node_modules/css-what/lib/commonjs/types.d.ts +70 -0
  1466. package/node_modules/css-what/lib/commonjs/types.d.ts.map +1 -0
  1467. package/node_modules/css-what/lib/commonjs/types.js +42 -0
  1468. package/node_modules/css-what/lib/es/index.d.ts +4 -0
  1469. package/node_modules/css-what/lib/es/index.d.ts.map +1 -0
  1470. package/node_modules/css-what/lib/es/index.js +3 -0
  1471. package/node_modules/css-what/lib/es/parse.d.ts +20 -0
  1472. package/node_modules/css-what/lib/es/parse.d.ts.map +1 -0
  1473. package/node_modules/css-what/lib/es/parse.js +420 -0
  1474. package/node_modules/css-what/lib/es/stringify.d.ts +8 -0
  1475. package/node_modules/css-what/lib/es/stringify.d.ts.map +1 -0
  1476. package/node_modules/css-what/lib/es/stringify.js +126 -0
  1477. package/node_modules/css-what/lib/es/types.d.ts +70 -0
  1478. package/node_modules/css-what/lib/es/types.d.ts.map +1 -0
  1479. package/node_modules/css-what/lib/es/types.js +39 -0
  1480. package/node_modules/css-what/package.json +59 -0
  1481. package/node_modules/css-what/readme.md +69 -0
  1482. package/node_modules/cssom/LICENSE.txt +20 -0
  1483. package/node_modules/cssom/README.mdown +67 -0
  1484. package/node_modules/cssom/lib/CSSConditionRule.js +25 -0
  1485. package/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
  1486. package/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
  1487. package/node_modules/cssom/lib/CSSGroupingRule.js +68 -0
  1488. package/node_modules/cssom/lib/CSSHostRule.js +37 -0
  1489. package/node_modules/cssom/lib/CSSImportRule.js +132 -0
  1490. package/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
  1491. package/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
  1492. package/node_modules/cssom/lib/CSSMediaRule.js +53 -0
  1493. package/node_modules/cssom/lib/CSSOM.js +3 -0
  1494. package/node_modules/cssom/lib/CSSRule.js +43 -0
  1495. package/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
  1496. package/node_modules/cssom/lib/CSSStyleRule.js +190 -0
  1497. package/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
  1498. package/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
  1499. package/node_modules/cssom/lib/CSSValue.js +43 -0
  1500. package/node_modules/cssom/lib/CSSValueExpression.js +344 -0
  1501. package/node_modules/cssom/lib/MatcherList.js +62 -0
  1502. package/node_modules/cssom/lib/MediaList.js +61 -0
  1503. package/node_modules/cssom/lib/StyleSheet.js +17 -0
  1504. package/node_modules/cssom/lib/clone.js +74 -0
  1505. package/node_modules/cssom/lib/index.js +23 -0
  1506. package/node_modules/cssom/lib/parse.js +465 -0
  1507. package/node_modules/cssom/package.json +18 -0
  1508. package/node_modules/dom-serializer/LICENSE +11 -0
  1509. package/node_modules/dom-serializer/README.md +109 -0
  1510. package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts +3 -0
  1511. package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts.map +1 -0
  1512. package/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
  1513. package/node_modules/dom-serializer/lib/esm/index.d.ts +52 -0
  1514. package/node_modules/dom-serializer/lib/esm/index.d.ts.map +1 -0
  1515. package/node_modules/dom-serializer/lib/esm/index.js +190 -0
  1516. package/node_modules/dom-serializer/lib/esm/package.json +1 -0
  1517. package/node_modules/dom-serializer/lib/foreignNames.d.ts +3 -0
  1518. package/node_modules/dom-serializer/lib/foreignNames.d.ts.map +1 -0
  1519. package/node_modules/dom-serializer/lib/foreignNames.js +103 -0
  1520. package/node_modules/dom-serializer/lib/index.d.ts +52 -0
  1521. package/node_modules/dom-serializer/lib/index.d.ts.map +1 -0
  1522. package/node_modules/dom-serializer/lib/index.js +229 -0
  1523. package/node_modules/dom-serializer/package.json +69 -0
  1524. package/node_modules/domelementtype/LICENSE +11 -0
  1525. package/node_modules/domelementtype/lib/esm/index.d.ts +48 -0
  1526. package/node_modules/domelementtype/lib/esm/index.d.ts.map +1 -0
  1527. package/node_modules/domelementtype/lib/esm/index.js +51 -0
  1528. package/node_modules/domelementtype/lib/esm/package.json +1 -0
  1529. package/node_modules/domelementtype/lib/index.d.ts +48 -0
  1530. package/node_modules/domelementtype/lib/index.d.ts.map +1 -0
  1531. package/node_modules/domelementtype/lib/index.js +55 -0
  1532. package/node_modules/domelementtype/package.json +54 -0
  1533. package/node_modules/domelementtype/readme.md +1 -0
  1534. package/node_modules/domhandler/LICENSE +11 -0
  1535. package/node_modules/domhandler/lib/esm/index.d.ts +76 -0
  1536. package/node_modules/domhandler/lib/esm/index.d.ts.map +1 -0
  1537. package/node_modules/domhandler/lib/esm/index.js +146 -0
  1538. package/node_modules/domhandler/lib/esm/node.d.ts +245 -0
  1539. package/node_modules/domhandler/lib/esm/node.d.ts.map +1 -0
  1540. package/node_modules/domhandler/lib/esm/node.js +338 -0
  1541. package/node_modules/domhandler/lib/esm/package.json +1 -0
  1542. package/node_modules/domhandler/lib/index.d.ts +76 -0
  1543. package/node_modules/domhandler/lib/index.d.ts.map +1 -0
  1544. package/node_modules/domhandler/lib/index.js +165 -0
  1545. package/node_modules/domhandler/lib/node.d.ts +245 -0
  1546. package/node_modules/domhandler/lib/node.d.ts.map +1 -0
  1547. package/node_modules/domhandler/lib/node.js +474 -0
  1548. package/node_modules/domhandler/package.json +73 -0
  1549. package/node_modules/domhandler/readme.md +92 -0
  1550. package/node_modules/domutils/LICENSE +11 -0
  1551. package/node_modules/domutils/lib/esm/feeds.d.ts +71 -0
  1552. package/node_modules/domutils/lib/esm/feeds.d.ts.map +1 -0
  1553. package/node_modules/domutils/lib/esm/feeds.js +183 -0
  1554. package/node_modules/domutils/lib/esm/feeds.js.map +1 -0
  1555. package/node_modules/domutils/lib/esm/helpers.d.ts +59 -0
  1556. package/node_modules/domutils/lib/esm/helpers.d.ts.map +1 -0
  1557. package/node_modules/domutils/lib/esm/helpers.js +136 -0
  1558. package/node_modules/domutils/lib/esm/helpers.js.map +1 -0
  1559. package/node_modules/domutils/lib/esm/index.d.ts +10 -0
  1560. package/node_modules/domutils/lib/esm/index.d.ts.map +1 -0
  1561. package/node_modules/domutils/lib/esm/index.js +10 -0
  1562. package/node_modules/domutils/lib/esm/index.js.map +1 -0
  1563. package/node_modules/domutils/lib/esm/legacy.d.ts +79 -0
  1564. package/node_modules/domutils/lib/esm/legacy.d.ts.map +1 -0
  1565. package/node_modules/domutils/lib/esm/legacy.js +152 -0
  1566. package/node_modules/domutils/lib/esm/legacy.js.map +1 -0
  1567. package/node_modules/domutils/lib/esm/manipulation.d.ts +49 -0
  1568. package/node_modules/domutils/lib/esm/manipulation.d.ts.map +1 -0
  1569. package/node_modules/domutils/lib/esm/manipulation.js +134 -0
  1570. package/node_modules/domutils/lib/esm/manipulation.js.map +1 -0
  1571. package/node_modules/domutils/lib/esm/package.json +1 -0
  1572. package/node_modules/domutils/lib/esm/querying.d.ts +64 -0
  1573. package/node_modules/domutils/lib/esm/querying.d.ts.map +1 -0
  1574. package/node_modules/domutils/lib/esm/querying.js +142 -0
  1575. package/node_modules/domutils/lib/esm/querying.js.map +1 -0
  1576. package/node_modules/domutils/lib/esm/stringify.d.ts +46 -0
  1577. package/node_modules/domutils/lib/esm/stringify.d.ts.map +1 -0
  1578. package/node_modules/domutils/lib/esm/stringify.js +81 -0
  1579. package/node_modules/domutils/lib/esm/stringify.js.map +1 -0
  1580. package/node_modules/domutils/lib/esm/traversal.d.ts +67 -0
  1581. package/node_modules/domutils/lib/esm/traversal.d.ts.map +1 -0
  1582. package/node_modules/domutils/lib/esm/traversal.js +112 -0
  1583. package/node_modules/domutils/lib/esm/traversal.js.map +1 -0
  1584. package/node_modules/domutils/lib/feeds.d.ts +71 -0
  1585. package/node_modules/domutils/lib/feeds.d.ts.map +1 -0
  1586. package/node_modules/domutils/lib/feeds.js +190 -0
  1587. package/node_modules/domutils/lib/feeds.js.map +1 -0
  1588. package/node_modules/domutils/lib/helpers.d.ts +59 -0
  1589. package/node_modules/domutils/lib/helpers.d.ts.map +1 -0
  1590. package/node_modules/domutils/lib/helpers.js +142 -0
  1591. package/node_modules/domutils/lib/helpers.js.map +1 -0
  1592. package/node_modules/domutils/lib/index.d.ts +10 -0
  1593. package/node_modules/domutils/lib/index.d.ts.map +1 -0
  1594. package/node_modules/domutils/lib/index.js +33 -0
  1595. package/node_modules/domutils/lib/index.js.map +1 -0
  1596. package/node_modules/domutils/lib/legacy.d.ts +79 -0
  1597. package/node_modules/domutils/lib/legacy.d.ts.map +1 -0
  1598. package/node_modules/domutils/lib/legacy.js +168 -0
  1599. package/node_modules/domutils/lib/legacy.js.map +1 -0
  1600. package/node_modules/domutils/lib/manipulation.d.ts +49 -0
  1601. package/node_modules/domutils/lib/manipulation.d.ts.map +1 -0
  1602. package/node_modules/domutils/lib/manipulation.js +142 -0
  1603. package/node_modules/domutils/lib/manipulation.js.map +1 -0
  1604. package/node_modules/domutils/lib/querying.d.ts +64 -0
  1605. package/node_modules/domutils/lib/querying.d.ts.map +1 -0
  1606. package/node_modules/domutils/lib/querying.js +155 -0
  1607. package/node_modules/domutils/lib/querying.js.map +1 -0
  1608. package/node_modules/domutils/lib/stringify.d.ts +46 -0
  1609. package/node_modules/domutils/lib/stringify.d.ts.map +1 -0
  1610. package/node_modules/domutils/lib/stringify.js +91 -0
  1611. package/node_modules/domutils/lib/stringify.js.map +1 -0
  1612. package/node_modules/domutils/lib/traversal.d.ts +67 -0
  1613. package/node_modules/domutils/lib/traversal.d.ts.map +1 -0
  1614. package/node_modules/domutils/lib/traversal.js +125 -0
  1615. package/node_modules/domutils/lib/traversal.js.map +1 -0
  1616. package/node_modules/domutils/package.json +79 -0
  1617. package/node_modules/domutils/readme.md +31 -0
  1618. package/node_modules/entities/LICENSE +11 -0
  1619. package/node_modules/entities/lib/decode.d.ts +211 -0
  1620. package/node_modules/entities/lib/decode.d.ts.map +1 -0
  1621. package/node_modules/entities/lib/decode.js +536 -0
  1622. package/node_modules/entities/lib/decode.js.map +1 -0
  1623. package/node_modules/entities/lib/decode_codepoint.d.ts +19 -0
  1624. package/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
  1625. package/node_modules/entities/lib/decode_codepoint.js +76 -0
  1626. package/node_modules/entities/lib/decode_codepoint.js.map +1 -0
  1627. package/node_modules/entities/lib/encode.d.ts +22 -0
  1628. package/node_modules/entities/lib/encode.d.ts.map +1 -0
  1629. package/node_modules/entities/lib/encode.js +77 -0
  1630. package/node_modules/entities/lib/encode.js.map +1 -0
  1631. package/node_modules/entities/lib/escape.d.ts +43 -0
  1632. package/node_modules/entities/lib/escape.d.ts.map +1 -0
  1633. package/node_modules/entities/lib/escape.js +122 -0
  1634. package/node_modules/entities/lib/escape.js.map +1 -0
  1635. package/node_modules/entities/lib/esm/decode.d.ts +211 -0
  1636. package/node_modules/entities/lib/esm/decode.d.ts.map +1 -0
  1637. package/node_modules/entities/lib/esm/decode.js +496 -0
  1638. package/node_modules/entities/lib/esm/decode.js.map +1 -0
  1639. package/node_modules/entities/lib/esm/decode_codepoint.d.ts +19 -0
  1640. package/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +1 -0
  1641. package/node_modules/entities/lib/esm/decode_codepoint.js +71 -0
  1642. package/node_modules/entities/lib/esm/decode_codepoint.js.map +1 -0
  1643. package/node_modules/entities/lib/esm/encode.d.ts +22 -0
  1644. package/node_modules/entities/lib/esm/encode.d.ts.map +1 -0
  1645. package/node_modules/entities/lib/esm/encode.js +69 -0
  1646. package/node_modules/entities/lib/esm/encode.js.map +1 -0
  1647. package/node_modules/entities/lib/esm/escape.d.ts +43 -0
  1648. package/node_modules/entities/lib/esm/escape.d.ts.map +1 -0
  1649. package/node_modules/entities/lib/esm/escape.js +116 -0
  1650. package/node_modules/entities/lib/esm/escape.js.map +1 -0
  1651. package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +3 -0
  1652. package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +1 -0
  1653. package/node_modules/entities/lib/esm/generated/decode-data-html.js +7 -0
  1654. package/node_modules/entities/lib/esm/generated/decode-data-html.js.map +1 -0
  1655. package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +3 -0
  1656. package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +1 -0
  1657. package/node_modules/entities/lib/esm/generated/decode-data-xml.js +7 -0
  1658. package/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +1 -0
  1659. package/node_modules/entities/lib/esm/generated/encode-html.d.ts +8 -0
  1660. package/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +1 -0
  1661. package/node_modules/entities/lib/esm/generated/encode-html.js +10 -0
  1662. package/node_modules/entities/lib/esm/generated/encode-html.js.map +1 -0
  1663. package/node_modules/entities/lib/esm/index.d.ts +96 -0
  1664. package/node_modules/entities/lib/esm/index.d.ts.map +1 -0
  1665. package/node_modules/entities/lib/esm/index.js +99 -0
  1666. package/node_modules/entities/lib/esm/index.js.map +1 -0
  1667. package/node_modules/entities/lib/esm/package.json +1 -0
  1668. package/node_modules/entities/lib/generated/decode-data-html.d.ts +3 -0
  1669. package/node_modules/entities/lib/generated/decode-data-html.d.ts.map +1 -0
  1670. package/node_modules/entities/lib/generated/decode-data-html.js +9 -0
  1671. package/node_modules/entities/lib/generated/decode-data-html.js.map +1 -0
  1672. package/node_modules/entities/lib/generated/decode-data-xml.d.ts +3 -0
  1673. package/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +1 -0
  1674. package/node_modules/entities/lib/generated/decode-data-xml.js +9 -0
  1675. package/node_modules/entities/lib/generated/decode-data-xml.js.map +1 -0
  1676. package/node_modules/entities/lib/generated/encode-html.d.ts +8 -0
  1677. package/node_modules/entities/lib/generated/encode-html.d.ts.map +1 -0
  1678. package/node_modules/entities/lib/generated/encode-html.js +12 -0
  1679. package/node_modules/entities/lib/generated/encode-html.js.map +1 -0
  1680. package/node_modules/entities/lib/index.d.ts +96 -0
  1681. package/node_modules/entities/lib/index.d.ts.map +1 -0
  1682. package/node_modules/entities/lib/index.js +126 -0
  1683. package/node_modules/entities/lib/index.js.map +1 -0
  1684. package/node_modules/entities/package.json +90 -0
  1685. package/node_modules/entities/readme.md +122 -0
  1686. package/node_modules/html-escaper/LICENSE.txt +19 -0
  1687. package/node_modules/html-escaper/README.md +110 -0
  1688. package/node_modules/html-escaper/cjs/index.js +74 -0
  1689. package/node_modules/html-escaper/cjs/package.json +1 -0
  1690. package/node_modules/html-escaper/esm/index.js +71 -0
  1691. package/node_modules/html-escaper/index.js +81 -0
  1692. package/node_modules/html-escaper/min.js +1 -0
  1693. package/node_modules/html-escaper/package.json +47 -0
  1694. package/node_modules/html-escaper/test/index.js +23 -0
  1695. package/node_modules/html-escaper/test/package.json +1 -0
  1696. package/node_modules/htmlparser2/LICENSE +18 -0
  1697. package/node_modules/htmlparser2/README.md +171 -0
  1698. package/node_modules/htmlparser2/lib/Parser.d.ts +198 -0
  1699. package/node_modules/htmlparser2/lib/Parser.d.ts.map +1 -0
  1700. package/node_modules/htmlparser2/lib/Parser.js +519 -0
  1701. package/node_modules/htmlparser2/lib/Parser.js.map +1 -0
  1702. package/node_modules/htmlparser2/lib/Tokenizer.d.ts +126 -0
  1703. package/node_modules/htmlparser2/lib/Tokenizer.d.ts.map +1 -0
  1704. package/node_modules/htmlparser2/lib/Tokenizer.js +791 -0
  1705. package/node_modules/htmlparser2/lib/Tokenizer.js.map +1 -0
  1706. package/node_modules/htmlparser2/lib/WritableStream.d.ts +17 -0
  1707. package/node_modules/htmlparser2/lib/WritableStream.d.ts.map +1 -0
  1708. package/node_modules/htmlparser2/lib/WritableStream.js +54 -0
  1709. package/node_modules/htmlparser2/lib/WritableStream.js.map +1 -0
  1710. package/node_modules/htmlparser2/lib/esm/Parser.d.ts +198 -0
  1711. package/node_modules/htmlparser2/lib/esm/Parser.d.ts.map +1 -0
  1712. package/node_modules/htmlparser2/lib/esm/Parser.js +490 -0
  1713. package/node_modules/htmlparser2/lib/esm/Parser.js.map +1 -0
  1714. package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts +126 -0
  1715. package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts.map +1 -0
  1716. package/node_modules/htmlparser2/lib/esm/Tokenizer.js +784 -0
  1717. package/node_modules/htmlparser2/lib/esm/Tokenizer.js.map +1 -0
  1718. package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts +17 -0
  1719. package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts.map +1 -0
  1720. package/node_modules/htmlparser2/lib/esm/WritableStream.js +32 -0
  1721. package/node_modules/htmlparser2/lib/esm/WritableStream.js.map +1 -0
  1722. package/node_modules/htmlparser2/lib/esm/index.d.ts +54 -0
  1723. package/node_modules/htmlparser2/lib/esm/index.d.ts.map +1 -0
  1724. package/node_modules/htmlparser2/lib/esm/index.js +74 -0
  1725. package/node_modules/htmlparser2/lib/esm/index.js.map +1 -0
  1726. package/node_modules/htmlparser2/lib/esm/package.json +1 -0
  1727. package/node_modules/htmlparser2/lib/index.d.ts +54 -0
  1728. package/node_modules/htmlparser2/lib/index.d.ts.map +1 -0
  1729. package/node_modules/htmlparser2/lib/index.js +114 -0
  1730. package/node_modules/htmlparser2/lib/index.js.map +1 -0
  1731. package/node_modules/htmlparser2/package.json +97 -0
  1732. package/node_modules/jiti/.DS_Store +0 -0
  1733. package/node_modules/jiti/LICENSE +21 -0
  1734. package/node_modules/jiti/README.md +258 -0
  1735. package/node_modules/jiti/dist/babel.cjs +257 -0
  1736. package/node_modules/jiti/dist/jiti.cjs +1 -0
  1737. package/node_modules/jiti/lib/jiti-cli.mjs +34 -0
  1738. package/node_modules/jiti/lib/jiti-hooks.mjs +124 -0
  1739. package/node_modules/jiti/lib/jiti-native.mjs +121 -0
  1740. package/node_modules/jiti/lib/jiti-register.d.mts +1 -0
  1741. package/node_modules/jiti/lib/jiti-register.mjs +4 -0
  1742. package/node_modules/jiti/lib/jiti-static.mjs +23 -0
  1743. package/node_modules/jiti/lib/jiti.cjs +30 -0
  1744. package/node_modules/jiti/lib/jiti.d.cts +8 -0
  1745. package/node_modules/jiti/lib/jiti.d.mts +8 -0
  1746. package/node_modules/jiti/lib/jiti.mjs +29 -0
  1747. package/node_modules/jiti/lib/types.d.ts +420 -0
  1748. package/node_modules/jiti/package.json +146 -0
  1749. package/node_modules/linkedom/.github/workflows/node.js.yml +31 -0
  1750. package/node_modules/linkedom/LICENSE +15 -0
  1751. package/node_modules/linkedom/README.md +307 -0
  1752. package/node_modules/linkedom/cjs/cached.js +153 -0
  1753. package/node_modules/linkedom/cjs/dom/parser.js +41 -0
  1754. package/node_modules/linkedom/cjs/dom/string-map.js +47 -0
  1755. package/node_modules/linkedom/cjs/dom/token-list.js +103 -0
  1756. package/node_modules/linkedom/cjs/html/anchor-element.js +35 -0
  1757. package/node_modules/linkedom/cjs/html/area-element.js +12 -0
  1758. package/node_modules/linkedom/cjs/html/audio-element.js +12 -0
  1759. package/node_modules/linkedom/cjs/html/base-element.js +12 -0
  1760. package/node_modules/linkedom/cjs/html/body-element.js +12 -0
  1761. package/node_modules/linkedom/cjs/html/br-element.js +12 -0
  1762. package/node_modules/linkedom/cjs/html/button-element.js +31 -0
  1763. package/node_modules/linkedom/cjs/html/canvas-element.js +53 -0
  1764. package/node_modules/linkedom/cjs/html/d-list-element.js +12 -0
  1765. package/node_modules/linkedom/cjs/html/data-element.js +12 -0
  1766. package/node_modules/linkedom/cjs/html/data-list-element.js +12 -0
  1767. package/node_modules/linkedom/cjs/html/details-element.js +12 -0
  1768. package/node_modules/linkedom/cjs/html/directory-element.js +12 -0
  1769. package/node_modules/linkedom/cjs/html/div-element.js +12 -0
  1770. package/node_modules/linkedom/cjs/html/document.js +105 -0
  1771. package/node_modules/linkedom/cjs/html/element.js +321 -0
  1772. package/node_modules/linkedom/cjs/html/embed-element.js +12 -0
  1773. package/node_modules/linkedom/cjs/html/field-set-element.js +12 -0
  1774. package/node_modules/linkedom/cjs/html/font-element.js +12 -0
  1775. package/node_modules/linkedom/cjs/html/form-element.js +12 -0
  1776. package/node_modules/linkedom/cjs/html/frame-element.js +12 -0
  1777. package/node_modules/linkedom/cjs/html/frame-set-element.js +12 -0
  1778. package/node_modules/linkedom/cjs/html/head-element.js +12 -0
  1779. package/node_modules/linkedom/cjs/html/heading-element.js +19 -0
  1780. package/node_modules/linkedom/cjs/html/hr-element.js +12 -0
  1781. package/node_modules/linkedom/cjs/html/html-element.js +12 -0
  1782. package/node_modules/linkedom/cjs/html/i-frame-element.js +43 -0
  1783. package/node_modules/linkedom/cjs/html/image-element.js +43 -0
  1784. package/node_modules/linkedom/cjs/html/input-element.js +40 -0
  1785. package/node_modules/linkedom/cjs/html/label-element.js +12 -0
  1786. package/node_modules/linkedom/cjs/html/legend-element.js +12 -0
  1787. package/node_modules/linkedom/cjs/html/li-element.js +12 -0
  1788. package/node_modules/linkedom/cjs/html/link-element.js +41 -0
  1789. package/node_modules/linkedom/cjs/html/map-element.js +12 -0
  1790. package/node_modules/linkedom/cjs/html/marquee-element.js +12 -0
  1791. package/node_modules/linkedom/cjs/html/media-element.js +12 -0
  1792. package/node_modules/linkedom/cjs/html/menu-element.js +12 -0
  1793. package/node_modules/linkedom/cjs/html/meta-element.js +36 -0
  1794. package/node_modules/linkedom/cjs/html/meter-element.js +12 -0
  1795. package/node_modules/linkedom/cjs/html/mod-element.js +12 -0
  1796. package/node_modules/linkedom/cjs/html/o-list-element.js +12 -0
  1797. package/node_modules/linkedom/cjs/html/object-element.js +12 -0
  1798. package/node_modules/linkedom/cjs/html/opt-group-element.js +12 -0
  1799. package/node_modules/linkedom/cjs/html/option-element.js +32 -0
  1800. package/node_modules/linkedom/cjs/html/output-element.js +12 -0
  1801. package/node_modules/linkedom/cjs/html/paragraph-element.js +12 -0
  1802. package/node_modules/linkedom/cjs/html/param-element.js +12 -0
  1803. package/node_modules/linkedom/cjs/html/picture-element.js +12 -0
  1804. package/node_modules/linkedom/cjs/html/pre-element.js +12 -0
  1805. package/node_modules/linkedom/cjs/html/progress-element.js +12 -0
  1806. package/node_modules/linkedom/cjs/html/quote-element.js +12 -0
  1807. package/node_modules/linkedom/cjs/html/script-element.js +80 -0
  1808. package/node_modules/linkedom/cjs/html/select-element.js +45 -0
  1809. package/node_modules/linkedom/cjs/html/slot-element.js +62 -0
  1810. package/node_modules/linkedom/cjs/html/source-element.js +34 -0
  1811. package/node_modules/linkedom/cjs/html/span-element.js +12 -0
  1812. package/node_modules/linkedom/cjs/html/style-element.js +53 -0
  1813. package/node_modules/linkedom/cjs/html/table-caption-element.js +12 -0
  1814. package/node_modules/linkedom/cjs/html/table-cell-element.js +12 -0
  1815. package/node_modules/linkedom/cjs/html/table-element.js +12 -0
  1816. package/node_modules/linkedom/cjs/html/table-row-element.js +12 -0
  1817. package/node_modules/linkedom/cjs/html/template-element.js +31 -0
  1818. package/node_modules/linkedom/cjs/html/text-area-element.js +37 -0
  1819. package/node_modules/linkedom/cjs/html/text-element.js +16 -0
  1820. package/node_modules/linkedom/cjs/html/time-element.js +12 -0
  1821. package/node_modules/linkedom/cjs/html/title-element.js +19 -0
  1822. package/node_modules/linkedom/cjs/html/track-element.js +12 -0
  1823. package/node_modules/linkedom/cjs/html/u-list-element.js +12 -0
  1824. package/node_modules/linkedom/cjs/html/unknown-element.js +12 -0
  1825. package/node_modules/linkedom/cjs/html/video-element.js +12 -0
  1826. package/node_modules/linkedom/cjs/index.js +48 -0
  1827. package/node_modules/linkedom/cjs/interface/attr.js +59 -0
  1828. package/node_modules/linkedom/cjs/interface/cdata-section.js +22 -0
  1829. package/node_modules/linkedom/cjs/interface/character-data.js +86 -0
  1830. package/node_modules/linkedom/cjs/interface/comment.js +22 -0
  1831. package/node_modules/linkedom/cjs/interface/css-style-declaration.js +130 -0
  1832. package/node_modules/linkedom/cjs/interface/custom-element-registry.js +212 -0
  1833. package/node_modules/linkedom/cjs/interface/custom-event.js +21 -0
  1834. package/node_modules/linkedom/cjs/interface/document-fragment.js +13 -0
  1835. package/node_modules/linkedom/cjs/interface/document-type.js +43 -0
  1836. package/node_modules/linkedom/cjs/interface/document.js +290 -0
  1837. package/node_modules/linkedom/cjs/interface/element.js +513 -0
  1838. package/node_modules/linkedom/cjs/interface/event-target.js +89 -0
  1839. package/node_modules/linkedom/cjs/interface/event.js +65 -0
  1840. package/node_modules/linkedom/cjs/interface/html-collection.js +4 -0
  1841. package/node_modules/linkedom/cjs/interface/image.js +23 -0
  1842. package/node_modules/linkedom/cjs/interface/input-event.js +24 -0
  1843. package/node_modules/linkedom/cjs/interface/mutation-observer.js +176 -0
  1844. package/node_modules/linkedom/cjs/interface/named-node-map.js +44 -0
  1845. package/node_modules/linkedom/cjs/interface/node-filter.js +17 -0
  1846. package/node_modules/linkedom/cjs/interface/node-list.js +10 -0
  1847. package/node_modules/linkedom/cjs/interface/node.js +206 -0
  1848. package/node_modules/linkedom/cjs/interface/range.js +131 -0
  1849. package/node_modules/linkedom/cjs/interface/shadow-root.js +22 -0
  1850. package/node_modules/linkedom/cjs/interface/text.js +44 -0
  1851. package/node_modules/linkedom/cjs/interface/tree-walker.js +60 -0
  1852. package/node_modules/linkedom/cjs/mixin/child-node.js +67 -0
  1853. package/node_modules/linkedom/cjs/mixin/inner-html.js +39 -0
  1854. package/node_modules/linkedom/cjs/mixin/non-document-type-child-node.js +23 -0
  1855. package/node_modules/linkedom/cjs/mixin/non-element-parent-node.js +44 -0
  1856. package/node_modules/linkedom/cjs/mixin/parent-node.js +295 -0
  1857. package/node_modules/linkedom/cjs/package.json +1 -0
  1858. package/node_modules/linkedom/cjs/shared/attributes.js +111 -0
  1859. package/node_modules/linkedom/cjs/shared/cache.js +33 -0
  1860. package/node_modules/linkedom/cjs/shared/constants.js +56 -0
  1861. package/node_modules/linkedom/cjs/shared/facades.js +91 -0
  1862. package/node_modules/linkedom/cjs/shared/html-classes.js +210 -0
  1863. package/node_modules/linkedom/cjs/shared/jsdon.js +79 -0
  1864. package/node_modules/linkedom/cjs/shared/matches.js +121 -0
  1865. package/node_modules/linkedom/cjs/shared/mime.js +33 -0
  1866. package/node_modules/linkedom/cjs/shared/node.js +53 -0
  1867. package/node_modules/linkedom/cjs/shared/object.js +18 -0
  1868. package/node_modules/linkedom/cjs/shared/parse-from-string.js +125 -0
  1869. package/node_modules/linkedom/cjs/shared/parse-json.js +134 -0
  1870. package/node_modules/linkedom/cjs/shared/register-html-class.js +11 -0
  1871. package/node_modules/linkedom/cjs/shared/shadow-roots.js +3 -0
  1872. package/node_modules/linkedom/cjs/shared/symbols.js +88 -0
  1873. package/node_modules/linkedom/cjs/shared/text-escaper.js +24 -0
  1874. package/node_modules/linkedom/cjs/shared/utils.js +49 -0
  1875. package/node_modules/linkedom/cjs/svg/document.js +14 -0
  1876. package/node_modules/linkedom/cjs/svg/element.js +60 -0
  1877. package/node_modules/linkedom/cjs/xml/document.js +14 -0
  1878. package/node_modules/linkedom/commonjs/canvas-shim.cjs +16 -0
  1879. package/node_modules/linkedom/commonjs/canvas.cjs +7 -0
  1880. package/node_modules/linkedom/commonjs/perf_hooks.cjs +9 -0
  1881. package/node_modules/linkedom/esm/cached.js +151 -0
  1882. package/node_modules/linkedom/esm/dom/parser.js +39 -0
  1883. package/node_modules/linkedom/esm/dom/string-map.js +45 -0
  1884. package/node_modules/linkedom/esm/dom/token-list.js +101 -0
  1885. package/node_modules/linkedom/esm/html/anchor-element.js +34 -0
  1886. package/node_modules/linkedom/esm/html/area-element.js +10 -0
  1887. package/node_modules/linkedom/esm/html/audio-element.js +10 -0
  1888. package/node_modules/linkedom/esm/html/base-element.js +10 -0
  1889. package/node_modules/linkedom/esm/html/body-element.js +10 -0
  1890. package/node_modules/linkedom/esm/html/br-element.js +10 -0
  1891. package/node_modules/linkedom/esm/html/button-element.js +30 -0
  1892. package/node_modules/linkedom/esm/html/canvas-element.js +52 -0
  1893. package/node_modules/linkedom/esm/html/d-list-element.js +10 -0
  1894. package/node_modules/linkedom/esm/html/data-element.js +10 -0
  1895. package/node_modules/linkedom/esm/html/data-list-element.js +10 -0
  1896. package/node_modules/linkedom/esm/html/details-element.js +10 -0
  1897. package/node_modules/linkedom/esm/html/directory-element.js +10 -0
  1898. package/node_modules/linkedom/esm/html/div-element.js +10 -0
  1899. package/node_modules/linkedom/esm/html/document.js +103 -0
  1900. package/node_modules/linkedom/esm/html/element.js +319 -0
  1901. package/node_modules/linkedom/esm/html/embed-element.js +10 -0
  1902. package/node_modules/linkedom/esm/html/field-set-element.js +10 -0
  1903. package/node_modules/linkedom/esm/html/font-element.js +10 -0
  1904. package/node_modules/linkedom/esm/html/form-element.js +10 -0
  1905. package/node_modules/linkedom/esm/html/frame-element.js +10 -0
  1906. package/node_modules/linkedom/esm/html/frame-set-element.js +10 -0
  1907. package/node_modules/linkedom/esm/html/head-element.js +10 -0
  1908. package/node_modules/linkedom/esm/html/heading-element.js +18 -0
  1909. package/node_modules/linkedom/esm/html/hr-element.js +10 -0
  1910. package/node_modules/linkedom/esm/html/html-element.js +10 -0
  1911. package/node_modules/linkedom/esm/html/i-frame-element.js +42 -0
  1912. package/node_modules/linkedom/esm/html/image-element.js +42 -0
  1913. package/node_modules/linkedom/esm/html/input-element.js +39 -0
  1914. package/node_modules/linkedom/esm/html/label-element.js +10 -0
  1915. package/node_modules/linkedom/esm/html/legend-element.js +10 -0
  1916. package/node_modules/linkedom/esm/html/li-element.js +10 -0
  1917. package/node_modules/linkedom/esm/html/link-element.js +40 -0
  1918. package/node_modules/linkedom/esm/html/map-element.js +10 -0
  1919. package/node_modules/linkedom/esm/html/marquee-element.js +10 -0
  1920. package/node_modules/linkedom/esm/html/media-element.js +10 -0
  1921. package/node_modules/linkedom/esm/html/menu-element.js +10 -0
  1922. package/node_modules/linkedom/esm/html/meta-element.js +34 -0
  1923. package/node_modules/linkedom/esm/html/meter-element.js +10 -0
  1924. package/node_modules/linkedom/esm/html/mod-element.js +10 -0
  1925. package/node_modules/linkedom/esm/html/o-list-element.js +10 -0
  1926. package/node_modules/linkedom/esm/html/object-element.js +10 -0
  1927. package/node_modules/linkedom/esm/html/opt-group-element.js +10 -0
  1928. package/node_modules/linkedom/esm/html/option-element.js +31 -0
  1929. package/node_modules/linkedom/esm/html/output-element.js +10 -0
  1930. package/node_modules/linkedom/esm/html/paragraph-element.js +10 -0
  1931. package/node_modules/linkedom/esm/html/param-element.js +10 -0
  1932. package/node_modules/linkedom/esm/html/picture-element.js +10 -0
  1933. package/node_modules/linkedom/esm/html/pre-element.js +10 -0
  1934. package/node_modules/linkedom/esm/html/progress-element.js +10 -0
  1935. package/node_modules/linkedom/esm/html/quote-element.js +10 -0
  1936. package/node_modules/linkedom/esm/html/script-element.js +79 -0
  1937. package/node_modules/linkedom/esm/html/select-element.js +44 -0
  1938. package/node_modules/linkedom/esm/html/slot-element.js +61 -0
  1939. package/node_modules/linkedom/esm/html/source-element.js +33 -0
  1940. package/node_modules/linkedom/esm/html/span-element.js +10 -0
  1941. package/node_modules/linkedom/esm/html/style-element.js +52 -0
  1942. package/node_modules/linkedom/esm/html/table-caption-element.js +10 -0
  1943. package/node_modules/linkedom/esm/html/table-cell-element.js +10 -0
  1944. package/node_modules/linkedom/esm/html/table-element.js +10 -0
  1945. package/node_modules/linkedom/esm/html/table-row-element.js +10 -0
  1946. package/node_modules/linkedom/esm/html/template-element.js +30 -0
  1947. package/node_modules/linkedom/esm/html/text-area-element.js +36 -0
  1948. package/node_modules/linkedom/esm/html/text-element.js +14 -0
  1949. package/node_modules/linkedom/esm/html/time-element.js +10 -0
  1950. package/node_modules/linkedom/esm/html/title-element.js +18 -0
  1951. package/node_modules/linkedom/esm/html/track-element.js +10 -0
  1952. package/node_modules/linkedom/esm/html/u-list-element.js +10 -0
  1953. package/node_modules/linkedom/esm/html/unknown-element.js +10 -0
  1954. package/node_modules/linkedom/esm/html/video-element.js +10 -0
  1955. package/node_modules/linkedom/esm/index.js +28 -0
  1956. package/node_modules/linkedom/esm/interface/attr.js +57 -0
  1957. package/node_modules/linkedom/esm/interface/cdata-section.js +20 -0
  1958. package/node_modules/linkedom/esm/interface/character-data.js +84 -0
  1959. package/node_modules/linkedom/esm/interface/comment.js +20 -0
  1960. package/node_modules/linkedom/esm/interface/css-style-declaration.js +128 -0
  1961. package/node_modules/linkedom/esm/interface/custom-element-registry.js +205 -0
  1962. package/node_modules/linkedom/esm/interface/custom-event.js +19 -0
  1963. package/node_modules/linkedom/esm/interface/document-fragment.js +11 -0
  1964. package/node_modules/linkedom/esm/interface/document-type.js +41 -0
  1965. package/node_modules/linkedom/esm/interface/document.js +289 -0
  1966. package/node_modules/linkedom/esm/interface/element.js +514 -0
  1967. package/node_modules/linkedom/esm/interface/event-target.js +88 -0
  1968. package/node_modules/linkedom/esm/interface/event.js +64 -0
  1969. package/node_modules/linkedom/esm/interface/html-collection.js +3 -0
  1970. package/node_modules/linkedom/esm/interface/image.js +21 -0
  1971. package/node_modules/linkedom/esm/interface/input-event.js +22 -0
  1972. package/node_modules/linkedom/esm/interface/mutation-observer.js +172 -0
  1973. package/node_modules/linkedom/esm/interface/named-node-map.js +42 -0
  1974. package/node_modules/linkedom/esm/interface/node-filter.js +15 -0
  1975. package/node_modules/linkedom/esm/interface/node-list.js +8 -0
  1976. package/node_modules/linkedom/esm/interface/node.js +204 -0
  1977. package/node_modules/linkedom/esm/interface/range.js +129 -0
  1978. package/node_modules/linkedom/esm/interface/shadow-root.js +20 -0
  1979. package/node_modules/linkedom/esm/interface/text.js +42 -0
  1980. package/node_modules/linkedom/esm/interface/tree-walker.js +58 -0
  1981. package/node_modules/linkedom/esm/mixin/child-node.js +62 -0
  1982. package/node_modules/linkedom/esm/mixin/inner-html.js +36 -0
  1983. package/node_modules/linkedom/esm/mixin/non-document-type-child-node.js +20 -0
  1984. package/node_modules/linkedom/esm/mixin/non-element-parent-node.js +42 -0
  1985. package/node_modules/linkedom/esm/mixin/parent-node.js +293 -0
  1986. package/node_modules/linkedom/esm/shared/attributes.js +104 -0
  1987. package/node_modules/linkedom/esm/shared/cache.js +26 -0
  1988. package/node_modules/linkedom/esm/shared/constants.js +33 -0
  1989. package/node_modules/linkedom/esm/shared/facades.js +77 -0
  1990. package/node_modules/linkedom/esm/shared/html-classes.js +210 -0
  1991. package/node_modules/linkedom/esm/shared/jsdon.js +73 -0
  1992. package/node_modules/linkedom/esm/shared/matches.js +118 -0
  1993. package/node_modules/linkedom/esm/shared/mime.js +31 -0
  1994. package/node_modules/linkedom/esm/shared/node.js +48 -0
  1995. package/node_modules/linkedom/esm/shared/object.js +19 -0
  1996. package/node_modules/linkedom/esm/shared/parse-from-string.js +122 -0
  1997. package/node_modules/linkedom/esm/shared/parse-json.js +131 -0
  1998. package/node_modules/linkedom/esm/shared/register-html-class.js +8 -0
  1999. package/node_modules/linkedom/esm/shared/shadow-roots.js +1 -0
  2000. package/node_modules/linkedom/esm/shared/symbols.js +65 -0
  2001. package/node_modules/linkedom/esm/shared/text-escaper.js +22 -0
  2002. package/node_modules/linkedom/esm/shared/utils.js +40 -0
  2003. package/node_modules/linkedom/esm/svg/document.js +12 -0
  2004. package/node_modules/linkedom/esm/svg/element.js +58 -0
  2005. package/node_modules/linkedom/esm/xml/document.js +12 -0
  2006. package/node_modules/linkedom/package.json +84 -0
  2007. package/node_modules/linkedom/tsconfig.json +13 -0
  2008. package/node_modules/linkedom/types/commonjs/canvas-shim.d.cts +9 -0
  2009. package/node_modules/linkedom/types/commonjs/canvas.d.cts +2 -0
  2010. package/node_modules/linkedom/types/commonjs/perf_hooks.d.cts +1 -0
  2011. package/node_modules/linkedom/types/dom/parser.d.ts +24 -0
  2012. package/node_modules/linkedom/types/dom/string-map.d.ts +9 -0
  2013. package/node_modules/linkedom/types/dom/token-list.d.ts +32 -0
  2014. package/node_modules/linkedom/types/esm/dom/parser.d.ts +24 -0
  2015. package/node_modules/linkedom/types/esm/dom/string-map.d.ts +9 -0
  2016. package/node_modules/linkedom/types/esm/dom/token-list.d.ts +36 -0
  2017. package/node_modules/linkedom/types/esm/html/anchor-element.d.ts +14 -0
  2018. package/node_modules/linkedom/types/esm/html/area-element.d.ts +6 -0
  2019. package/node_modules/linkedom/types/esm/html/audio-element.d.ts +6 -0
  2020. package/node_modules/linkedom/types/esm/html/base-element.d.ts +6 -0
  2021. package/node_modules/linkedom/types/esm/html/body-element.d.ts +6 -0
  2022. package/node_modules/linkedom/types/esm/html/br-element.d.ts +6 -0
  2023. package/node_modules/linkedom/types/esm/html/button-element.d.ts +12 -0
  2024. package/node_modules/linkedom/types/esm/html/canvas-element.d.ts +14 -0
  2025. package/node_modules/linkedom/types/esm/html/d-list-element.d.ts +6 -0
  2026. package/node_modules/linkedom/types/esm/html/data-element.d.ts +6 -0
  2027. package/node_modules/linkedom/types/esm/html/data-list-element.d.ts +6 -0
  2028. package/node_modules/linkedom/types/esm/html/details-element.d.ts +6 -0
  2029. package/node_modules/linkedom/types/esm/html/directory-element.d.ts +6 -0
  2030. package/node_modules/linkedom/types/esm/html/div-element.d.ts +6 -0
  2031. package/node_modules/linkedom/types/esm/html/document.d.ts +23 -0
  2032. package/node_modules/linkedom/types/esm/html/element.d.ts +168 -0
  2033. package/node_modules/linkedom/types/esm/html/embed-element.d.ts +6 -0
  2034. package/node_modules/linkedom/types/esm/html/field-set-element.d.ts +6 -0
  2035. package/node_modules/linkedom/types/esm/html/font-element.d.ts +6 -0
  2036. package/node_modules/linkedom/types/esm/html/form-element.d.ts +6 -0
  2037. package/node_modules/linkedom/types/esm/html/frame-element.d.ts +6 -0
  2038. package/node_modules/linkedom/types/esm/html/frame-set-element.d.ts +6 -0
  2039. package/node_modules/linkedom/types/esm/html/head-element.d.ts +6 -0
  2040. package/node_modules/linkedom/types/esm/html/heading-element.d.ts +6 -0
  2041. package/node_modules/linkedom/types/esm/html/hr-element.d.ts +6 -0
  2042. package/node_modules/linkedom/types/esm/html/html-element.d.ts +6 -0
  2043. package/node_modules/linkedom/types/esm/html/i-frame-element.d.ts +20 -0
  2044. package/node_modules/linkedom/types/esm/html/image-element.d.ts +18 -0
  2045. package/node_modules/linkedom/types/esm/html/input-element.d.ts +18 -0
  2046. package/node_modules/linkedom/types/esm/html/label-element.d.ts +6 -0
  2047. package/node_modules/linkedom/types/esm/html/legend-element.d.ts +6 -0
  2048. package/node_modules/linkedom/types/esm/html/li-element.d.ts +6 -0
  2049. package/node_modules/linkedom/types/esm/html/link-element.d.ts +18 -0
  2050. package/node_modules/linkedom/types/esm/html/map-element.d.ts +6 -0
  2051. package/node_modules/linkedom/types/esm/html/marquee-element.d.ts +6 -0
  2052. package/node_modules/linkedom/types/esm/html/media-element.d.ts +6 -0
  2053. package/node_modules/linkedom/types/esm/html/menu-element.d.ts +6 -0
  2054. package/node_modules/linkedom/types/esm/html/meta-element.d.ts +16 -0
  2055. package/node_modules/linkedom/types/esm/html/meter-element.d.ts +6 -0
  2056. package/node_modules/linkedom/types/esm/html/mod-element.d.ts +6 -0
  2057. package/node_modules/linkedom/types/esm/html/o-list-element.d.ts +6 -0
  2058. package/node_modules/linkedom/types/esm/html/object-element.d.ts +6 -0
  2059. package/node_modules/linkedom/types/esm/html/opt-group-element.d.ts +6 -0
  2060. package/node_modules/linkedom/types/esm/html/option-element.d.ts +10 -0
  2061. package/node_modules/linkedom/types/esm/html/output-element.d.ts +6 -0
  2062. package/node_modules/linkedom/types/esm/html/paragraph-element.d.ts +6 -0
  2063. package/node_modules/linkedom/types/esm/html/param-element.d.ts +6 -0
  2064. package/node_modules/linkedom/types/esm/html/picture-element.d.ts +6 -0
  2065. package/node_modules/linkedom/types/esm/html/pre-element.d.ts +6 -0
  2066. package/node_modules/linkedom/types/esm/html/progress-element.d.ts +6 -0
  2067. package/node_modules/linkedom/types/esm/html/quote-element.d.ts +6 -0
  2068. package/node_modules/linkedom/types/esm/html/script-element.d.ts +22 -0
  2069. package/node_modules/linkedom/types/esm/html/select-element.d.ts +13 -0
  2070. package/node_modules/linkedom/types/esm/html/slot-element.d.ts +11 -0
  2071. package/node_modules/linkedom/types/esm/html/source-element.d.ts +14 -0
  2072. package/node_modules/linkedom/types/esm/html/span-element.d.ts +6 -0
  2073. package/node_modules/linkedom/types/esm/html/style-element.d.ts +11 -0
  2074. package/node_modules/linkedom/types/esm/html/table-caption-element.d.ts +6 -0
  2075. package/node_modules/linkedom/types/esm/html/table-cell-element.d.ts +6 -0
  2076. package/node_modules/linkedom/types/esm/html/table-element.d.ts +6 -0
  2077. package/node_modules/linkedom/types/esm/html/table-row-element.d.ts +6 -0
  2078. package/node_modules/linkedom/types/esm/html/template-element.d.ts +10 -0
  2079. package/node_modules/linkedom/types/esm/html/text-area-element.d.ts +16 -0
  2080. package/node_modules/linkedom/types/esm/html/text-element.d.ts +4 -0
  2081. package/node_modules/linkedom/types/esm/html/time-element.d.ts +6 -0
  2082. package/node_modules/linkedom/types/esm/html/title-element.d.ts +6 -0
  2083. package/node_modules/linkedom/types/esm/html/track-element.d.ts +6 -0
  2084. package/node_modules/linkedom/types/esm/html/u-list-element.d.ts +6 -0
  2085. package/node_modules/linkedom/types/esm/html/unknown-element.d.ts +6 -0
  2086. package/node_modules/linkedom/types/esm/html/video-element.d.ts +6 -0
  2087. package/node_modules/linkedom/types/esm/index.d.ts +13 -0
  2088. package/node_modules/linkedom/types/esm/interface/attr.d.ts +17 -0
  2089. package/node_modules/linkedom/types/esm/interface/cdata-section.d.ts +8 -0
  2090. package/node_modules/linkedom/types/esm/interface/character-data.d.ts +26 -0
  2091. package/node_modules/linkedom/types/esm/interface/comment.d.ts +8 -0
  2092. package/node_modules/linkedom/types/esm/interface/css-style-declaration.d.ts +19 -0
  2093. package/node_modules/linkedom/types/esm/interface/custom-element-registry.d.ts +54 -0
  2094. package/node_modules/linkedom/types/esm/interface/custom-event.d.ts +7 -0
  2095. package/node_modules/linkedom/types/esm/interface/document-fragment.d.ts +7 -0
  2096. package/node_modules/linkedom/types/esm/interface/document-type.d.ts +12 -0
  2097. package/node_modules/linkedom/types/esm/interface/document.d.ts +71 -0
  2098. package/node_modules/linkedom/types/esm/interface/element.d.ts +81 -0
  2099. package/node_modules/linkedom/types/esm/interface/event-target.d.ts +13 -0
  2100. package/node_modules/linkedom/types/esm/interface/event.d.ts +32 -0
  2101. package/node_modules/linkedom/types/esm/interface/image.d.ts +214 -0
  2102. package/node_modules/linkedom/types/esm/interface/input-event.d.ts +11 -0
  2103. package/node_modules/linkedom/types/esm/interface/mutation-observer.d.ts +40 -0
  2104. package/node_modules/linkedom/types/esm/interface/named-node-map.d.ts +14 -0
  2105. package/node_modules/linkedom/types/esm/interface/node-filter.d.ts +7 -0
  2106. package/node_modules/linkedom/types/esm/interface/node-list.d.ts +9 -0
  2107. package/node_modules/linkedom/types/esm/interface/node.d.ts +86 -0
  2108. package/node_modules/linkedom/types/esm/interface/range.d.ts +23 -0
  2109. package/node_modules/linkedom/types/esm/interface/shadow-root.d.ts +10 -0
  2110. package/node_modules/linkedom/types/esm/interface/text.d.ts +9 -0
  2111. package/node_modules/linkedom/types/esm/interface/tree-walker.d.ts +15 -0
  2112. package/node_modules/linkedom/types/esm/mixin/child-node.d.ts +4 -0
  2113. package/node_modules/linkedom/types/esm/mixin/inner-html.d.ts +2 -0
  2114. package/node_modules/linkedom/types/esm/mixin/non-document-type-child-node.d.ts +2 -0
  2115. package/node_modules/linkedom/types/esm/mixin/non-element-parent-node.d.ts +6 -0
  2116. package/node_modules/linkedom/types/esm/mixin/parent-node.d.ts +57 -0
  2117. package/node_modules/linkedom/types/esm/shared/attributes.d.ts +15 -0
  2118. package/node_modules/linkedom/types/esm/shared/constants.d.ts +22 -0
  2119. package/node_modules/linkedom/types/esm/shared/facades.d.ts +25 -0
  2120. package/node_modules/linkedom/types/esm/shared/html-classes.d.ts +139 -0
  2121. package/node_modules/linkedom/types/esm/shared/jsdon.d.ts +9 -0
  2122. package/node_modules/linkedom/types/esm/shared/matches.d.ts +2 -0
  2123. package/node_modules/linkedom/types/esm/shared/mime.d.ts +35 -0
  2124. package/node_modules/linkedom/types/esm/shared/node.d.ts +12 -0
  2125. package/node_modules/linkedom/types/esm/shared/object.d.ts +25 -0
  2126. package/node_modules/linkedom/types/esm/shared/parse-from-string.d.ts +2 -0
  2127. package/node_modules/linkedom/types/esm/shared/parse-json.d.ts +7 -0
  2128. package/node_modules/linkedom/types/esm/shared/register-html-class.d.ts +2 -0
  2129. package/node_modules/linkedom/types/esm/shared/shadow-roots.d.ts +1 -0
  2130. package/node_modules/linkedom/types/esm/shared/symbols.d.ts +22 -0
  2131. package/node_modules/linkedom/types/esm/shared/text-escaper.d.ts +1 -0
  2132. package/node_modules/linkedom/types/esm/shared/utils.d.ts +15 -0
  2133. package/node_modules/linkedom/types/esm/svg/document.d.ts +7 -0
  2134. package/node_modules/linkedom/types/esm/svg/element.d.ts +8 -0
  2135. package/node_modules/linkedom/types/esm/xml/document.d.ts +7 -0
  2136. package/node_modules/linkedom/types/html/anchor-element.d.ts +14 -0
  2137. package/node_modules/linkedom/types/html/area-element.d.ts +6 -0
  2138. package/node_modules/linkedom/types/html/audio-element.d.ts +6 -0
  2139. package/node_modules/linkedom/types/html/base-element.d.ts +6 -0
  2140. package/node_modules/linkedom/types/html/body-element.d.ts +6 -0
  2141. package/node_modules/linkedom/types/html/br-element.d.ts +6 -0
  2142. package/node_modules/linkedom/types/html/button-element.d.ts +12 -0
  2143. package/node_modules/linkedom/types/html/canvas-element.d.ts +14 -0
  2144. package/node_modules/linkedom/types/html/d-list-element.d.ts +6 -0
  2145. package/node_modules/linkedom/types/html/data-element.d.ts +6 -0
  2146. package/node_modules/linkedom/types/html/data-list-element.d.ts +6 -0
  2147. package/node_modules/linkedom/types/html/details-element.d.ts +6 -0
  2148. package/node_modules/linkedom/types/html/directory-element.d.ts +6 -0
  2149. package/node_modules/linkedom/types/html/div-element.d.ts +6 -0
  2150. package/node_modules/linkedom/types/html/document.d.ts +22 -0
  2151. package/node_modules/linkedom/types/html/element.d.ts +168 -0
  2152. package/node_modules/linkedom/types/html/embed-element.d.ts +6 -0
  2153. package/node_modules/linkedom/types/html/field-set-element.d.ts +6 -0
  2154. package/node_modules/linkedom/types/html/font-element.d.ts +6 -0
  2155. package/node_modules/linkedom/types/html/form-element.d.ts +6 -0
  2156. package/node_modules/linkedom/types/html/frame-element.d.ts +6 -0
  2157. package/node_modules/linkedom/types/html/frame-set-element.d.ts +6 -0
  2158. package/node_modules/linkedom/types/html/head-element.d.ts +6 -0
  2159. package/node_modules/linkedom/types/html/heading-element.d.ts +6 -0
  2160. package/node_modules/linkedom/types/html/hr-element.d.ts +6 -0
  2161. package/node_modules/linkedom/types/html/html-element.d.ts +6 -0
  2162. package/node_modules/linkedom/types/html/i-frame-element.d.ts +6 -0
  2163. package/node_modules/linkedom/types/html/image-element.d.ts +18 -0
  2164. package/node_modules/linkedom/types/html/input-element.d.ts +16 -0
  2165. package/node_modules/linkedom/types/html/label-element.d.ts +6 -0
  2166. package/node_modules/linkedom/types/html/legend-element.d.ts +6 -0
  2167. package/node_modules/linkedom/types/html/li-element.d.ts +6 -0
  2168. package/node_modules/linkedom/types/html/link-element.d.ts +18 -0
  2169. package/node_modules/linkedom/types/html/map-element.d.ts +6 -0
  2170. package/node_modules/linkedom/types/html/marquee-element.d.ts +6 -0
  2171. package/node_modules/linkedom/types/html/media-element.d.ts +6 -0
  2172. package/node_modules/linkedom/types/html/menu-element.d.ts +6 -0
  2173. package/node_modules/linkedom/types/html/meta-element.d.ts +6 -0
  2174. package/node_modules/linkedom/types/html/meter-element.d.ts +6 -0
  2175. package/node_modules/linkedom/types/html/mod-element.d.ts +6 -0
  2176. package/node_modules/linkedom/types/html/o-list-element.d.ts +6 -0
  2177. package/node_modules/linkedom/types/html/object-element.d.ts +6 -0
  2178. package/node_modules/linkedom/types/html/opt-group-element.d.ts +6 -0
  2179. package/node_modules/linkedom/types/html/option-element.d.ts +6 -0
  2180. package/node_modules/linkedom/types/html/output-element.d.ts +6 -0
  2181. package/node_modules/linkedom/types/html/paragraph-element.d.ts +6 -0
  2182. package/node_modules/linkedom/types/html/param-element.d.ts +6 -0
  2183. package/node_modules/linkedom/types/html/picture-element.d.ts +6 -0
  2184. package/node_modules/linkedom/types/html/pre-element.d.ts +6 -0
  2185. package/node_modules/linkedom/types/html/progress-element.d.ts +6 -0
  2186. package/node_modules/linkedom/types/html/quote-element.d.ts +6 -0
  2187. package/node_modules/linkedom/types/html/script-element.d.ts +6 -0
  2188. package/node_modules/linkedom/types/html/select-element.d.ts +12 -0
  2189. package/node_modules/linkedom/types/html/slot-element.d.ts +6 -0
  2190. package/node_modules/linkedom/types/html/source-element.d.ts +14 -0
  2191. package/node_modules/linkedom/types/html/span-element.d.ts +6 -0
  2192. package/node_modules/linkedom/types/html/style-element.d.ts +9 -0
  2193. package/node_modules/linkedom/types/html/table-caption-element.d.ts +6 -0
  2194. package/node_modules/linkedom/types/html/table-cell-element.d.ts +6 -0
  2195. package/node_modules/linkedom/types/html/table-element.d.ts +6 -0
  2196. package/node_modules/linkedom/types/html/table-row-element.d.ts +6 -0
  2197. package/node_modules/linkedom/types/html/template-element.d.ts +10 -0
  2198. package/node_modules/linkedom/types/html/text-area-element.d.ts +16 -0
  2199. package/node_modules/linkedom/types/html/text-element.d.ts +3 -0
  2200. package/node_modules/linkedom/types/html/time-element.d.ts +6 -0
  2201. package/node_modules/linkedom/types/html/title-element.d.ts +6 -0
  2202. package/node_modules/linkedom/types/html/track-element.d.ts +6 -0
  2203. package/node_modules/linkedom/types/html/u-list-element.d.ts +6 -0
  2204. package/node_modules/linkedom/types/html/unknown-element.d.ts +6 -0
  2205. package/node_modules/linkedom/types/html/video-element.d.ts +6 -0
  2206. package/node_modules/linkedom/types/index.d.ts +12 -0
  2207. package/node_modules/linkedom/types/interface/attr.d.ts +16 -0
  2208. package/node_modules/linkedom/types/interface/character-data.d.ts +22 -0
  2209. package/node_modules/linkedom/types/interface/comment.d.ts +7 -0
  2210. package/node_modules/linkedom/types/interface/css-style-declaration.d.ts +10 -0
  2211. package/node_modules/linkedom/types/interface/custom-element-registry.d.ts +54 -0
  2212. package/node_modules/linkedom/types/interface/custom-event.d.ts +37 -0
  2213. package/node_modules/linkedom/types/interface/document-fragment.d.ts +7 -0
  2214. package/node_modules/linkedom/types/interface/document-type.d.ts +11 -0
  2215. package/node_modules/linkedom/types/interface/document.d.ts +60 -0
  2216. package/node_modules/linkedom/types/interface/element.d.ts +72 -0
  2217. package/node_modules/linkedom/types/interface/event-target.d.ts +13 -0
  2218. package/node_modules/linkedom/types/interface/event.d.ts +32 -0
  2219. package/node_modules/linkedom/types/interface/image.d.ts +199 -0
  2220. package/node_modules/linkedom/types/interface/input-event.d.ts +11 -0
  2221. package/node_modules/linkedom/types/interface/mutation-observer.d.ts +40 -0
  2222. package/node_modules/linkedom/types/interface/named-node-map.d.ts +14 -0
  2223. package/node_modules/linkedom/types/interface/node-list.d.ts +9 -0
  2224. package/node_modules/linkedom/types/interface/node.d.ts +78 -0
  2225. package/node_modules/linkedom/types/interface/range.d.ts +22 -0
  2226. package/node_modules/linkedom/types/interface/shadow-root.d.ts +9 -0
  2227. package/node_modules/linkedom/types/interface/text.d.ts +8 -0
  2228. package/node_modules/linkedom/types/interface/tree-walker.d.ts +15 -0
  2229. package/node_modules/linkedom/types/mixin/child-node.d.ts +4 -0
  2230. package/node_modules/linkedom/types/mixin/inner-html.d.ts +2 -0
  2231. package/node_modules/linkedom/types/mixin/non-document-type-child-node.d.ts +2 -0
  2232. package/node_modules/linkedom/types/mixin/non-element-parent-node.d.ts +5 -0
  2233. package/node_modules/linkedom/types/mixin/parent-node.d.ts +47 -0
  2234. package/node_modules/linkedom/types/shared/attributes.d.ts +21 -0
  2235. package/node_modules/linkedom/types/shared/cache.d.ts +7 -0
  2236. package/node_modules/linkedom/types/shared/constants.d.ts +19 -0
  2237. package/node_modules/linkedom/types/shared/facades.d.ts +23 -0
  2238. package/node_modules/linkedom/types/shared/html-classes.d.ts +139 -0
  2239. package/node_modules/linkedom/types/shared/jsdon.d.ts +9 -0
  2240. package/node_modules/linkedom/types/shared/matches.d.ts +2 -0
  2241. package/node_modules/linkedom/types/shared/mime.d.ts +35 -0
  2242. package/node_modules/linkedom/types/shared/node.d.ts +12 -0
  2243. package/node_modules/linkedom/types/shared/object.d.ts +25 -0
  2244. package/node_modules/linkedom/types/shared/parse-from-string.d.ts +2 -0
  2245. package/node_modules/linkedom/types/shared/parse-json.d.ts +7 -0
  2246. package/node_modules/linkedom/types/shared/register-html-class.d.ts +2 -0
  2247. package/node_modules/linkedom/types/shared/symbols.d.ts +20 -0
  2248. package/node_modules/linkedom/types/shared/text-escaper.d.ts +1 -0
  2249. package/node_modules/linkedom/types/shared/utils.d.ts +15 -0
  2250. package/node_modules/linkedom/types/svg/document.d.ts +7 -0
  2251. package/node_modules/linkedom/types/svg/element.d.ts +8 -0
  2252. package/node_modules/linkedom/types/xml/document.d.ts +7 -0
  2253. package/node_modules/linkedom/worker.js +12526 -0
  2254. package/node_modules/node-forge/.DS_Store +0 -0
  2255. package/node_modules/node-forge/LICENSE +331 -0
  2256. package/node_modules/node-forge/README.md +2071 -0
  2257. package/node_modules/node-forge/dist/forge.all.min.js +2 -0
  2258. package/node_modules/node-forge/dist/forge.all.min.js.map +1 -0
  2259. package/node_modules/node-forge/dist/forge.min.js +2 -0
  2260. package/node_modules/node-forge/dist/forge.min.js.map +1 -0
  2261. package/node_modules/node-forge/dist/prime.worker.min.js +2 -0
  2262. package/node_modules/node-forge/dist/prime.worker.min.js.map +1 -0
  2263. package/node_modules/node-forge/flash/swf/SocketPool.swf +0 -0
  2264. package/node_modules/node-forge/lib/aes.js +1091 -0
  2265. package/node_modules/node-forge/lib/aesCipherSuites.js +282 -0
  2266. package/node_modules/node-forge/lib/asn1-validator.js +91 -0
  2267. package/node_modules/node-forge/lib/asn1.js +1503 -0
  2268. package/node_modules/node-forge/lib/baseN.js +186 -0
  2269. package/node_modules/node-forge/lib/cipher.js +230 -0
  2270. package/node_modules/node-forge/lib/cipherModes.js +999 -0
  2271. package/node_modules/node-forge/lib/des.js +496 -0
  2272. package/node_modules/node-forge/lib/ed25519.js +1091 -0
  2273. package/node_modules/node-forge/lib/forge.js +13 -0
  2274. package/node_modules/node-forge/lib/form.js +149 -0
  2275. package/node_modules/node-forge/lib/hmac.js +146 -0
  2276. package/node_modules/node-forge/lib/http.js +1346 -0
  2277. package/node_modules/node-forge/lib/index.all.js +16 -0
  2278. package/node_modules/node-forge/lib/index.js +33 -0
  2279. package/node_modules/node-forge/lib/jsbn.js +1294 -0
  2280. package/node_modules/node-forge/lib/kem.js +168 -0
  2281. package/node_modules/node-forge/lib/log.js +319 -0
  2282. package/node_modules/node-forge/lib/md.all.js +13 -0
  2283. package/node_modules/node-forge/lib/md.js +11 -0
  2284. package/node_modules/node-forge/lib/md5.js +289 -0
  2285. package/node_modules/node-forge/lib/mgf.js +12 -0
  2286. package/node_modules/node-forge/lib/mgf1.js +57 -0
  2287. package/node_modules/node-forge/lib/oids.js +180 -0
  2288. package/node_modules/node-forge/lib/pbe.js +1023 -0
  2289. package/node_modules/node-forge/lib/pbkdf2.js +211 -0
  2290. package/node_modules/node-forge/lib/pem.js +237 -0
  2291. package/node_modules/node-forge/lib/pkcs1.js +276 -0
  2292. package/node_modules/node-forge/lib/pkcs12.js +1078 -0
  2293. package/node_modules/node-forge/lib/pkcs7.js +1260 -0
  2294. package/node_modules/node-forge/lib/pkcs7asn1.js +410 -0
  2295. package/node_modules/node-forge/lib/pki.js +102 -0
  2296. package/node_modules/node-forge/lib/prime.js +297 -0
  2297. package/node_modules/node-forge/lib/prime.worker.js +168 -0
  2298. package/node_modules/node-forge/lib/prng.js +419 -0
  2299. package/node_modules/node-forge/lib/pss.js +241 -0
  2300. package/node_modules/node-forge/lib/random.js +191 -0
  2301. package/node_modules/node-forge/lib/rc2.js +410 -0
  2302. package/node_modules/node-forge/lib/rsa.js +1968 -0
  2303. package/node_modules/node-forge/lib/sha1.js +319 -0
  2304. package/node_modules/node-forge/lib/sha256.js +327 -0
  2305. package/node_modules/node-forge/lib/sha512.js +561 -0
  2306. package/node_modules/node-forge/lib/socket.js +287 -0
  2307. package/node_modules/node-forge/lib/ssh.js +236 -0
  2308. package/node_modules/node-forge/lib/tls.js +4282 -0
  2309. package/node_modules/node-forge/lib/tlssocket.js +249 -0
  2310. package/node_modules/node-forge/lib/util.js +2652 -0
  2311. package/node_modules/node-forge/lib/x509.js +3251 -0
  2312. package/node_modules/node-forge/lib/xhr.js +738 -0
  2313. package/node_modules/node-forge/package.json +123 -0
  2314. package/node_modules/nth-check/LICENSE +11 -0
  2315. package/node_modules/nth-check/README.md +136 -0
  2316. package/node_modules/nth-check/lib/compile.d.ts +55 -0
  2317. package/node_modules/nth-check/lib/compile.d.ts.map +1 -0
  2318. package/node_modules/nth-check/lib/compile.js +121 -0
  2319. package/node_modules/nth-check/lib/compile.js.map +1 -0
  2320. package/node_modules/nth-check/lib/esm/compile.d.ts +55 -0
  2321. package/node_modules/nth-check/lib/esm/compile.d.ts.map +1 -0
  2322. package/node_modules/nth-check/lib/esm/compile.js +113 -0
  2323. package/node_modules/nth-check/lib/esm/compile.js.map +1 -0
  2324. package/node_modules/nth-check/lib/esm/index.d.ts +59 -0
  2325. package/node_modules/nth-check/lib/esm/index.d.ts.map +1 -0
  2326. package/node_modules/nth-check/lib/esm/index.js +63 -0
  2327. package/node_modules/nth-check/lib/esm/index.js.map +1 -0
  2328. package/node_modules/nth-check/lib/esm/package.json +1 -0
  2329. package/node_modules/nth-check/lib/esm/parse.d.ts +9 -0
  2330. package/node_modules/nth-check/lib/esm/parse.d.ts.map +1 -0
  2331. package/node_modules/nth-check/lib/esm/parse.js +73 -0
  2332. package/node_modules/nth-check/lib/esm/parse.js.map +1 -0
  2333. package/node_modules/nth-check/lib/index.d.ts +59 -0
  2334. package/node_modules/nth-check/lib/index.d.ts.map +1 -0
  2335. package/node_modules/nth-check/lib/index.js +70 -0
  2336. package/node_modules/nth-check/lib/index.js.map +1 -0
  2337. package/node_modules/nth-check/lib/parse.d.ts +9 -0
  2338. package/node_modules/nth-check/lib/parse.d.ts.map +1 -0
  2339. package/node_modules/nth-check/lib/parse.js +77 -0
  2340. package/node_modules/nth-check/lib/parse.js.map +1 -0
  2341. package/node_modules/nth-check/package.json +78 -0
  2342. package/node_modules/p-limit/index.d.ts +81 -0
  2343. package/node_modules/p-limit/index.js +104 -0
  2344. package/node_modules/p-limit/license +9 -0
  2345. package/node_modules/p-limit/package.json +58 -0
  2346. package/node_modules/p-limit/readme.md +129 -0
  2347. package/node_modules/pi-web-access/CHANGELOG.md +387 -0
  2348. package/node_modules/pi-web-access/LICENSE +21 -0
  2349. package/node_modules/pi-web-access/README.md +352 -0
  2350. package/node_modules/pi-web-access/activity.ts +101 -0
  2351. package/node_modules/pi-web-access/banner.png +0 -0
  2352. package/node_modules/pi-web-access/chrome-cookies.ts +322 -0
  2353. package/node_modules/pi-web-access/code-search.ts +107 -0
  2354. package/node_modules/pi-web-access/curator-page.ts +3359 -0
  2355. package/node_modules/pi-web-access/curator-server.ts +605 -0
  2356. package/node_modules/pi-web-access/exa.ts +520 -0
  2357. package/node_modules/pi-web-access/extract.ts +641 -0
  2358. package/node_modules/pi-web-access/gemini-api.ts +112 -0
  2359. package/node_modules/pi-web-access/gemini-search.ts +361 -0
  2360. package/node_modules/pi-web-access/gemini-url-context.ts +126 -0
  2361. package/node_modules/pi-web-access/gemini-web-config.ts +52 -0
  2362. package/node_modules/pi-web-access/gemini-web.ts +396 -0
  2363. package/node_modules/pi-web-access/github-api.ts +196 -0
  2364. package/node_modules/pi-web-access/github-extract.ts +634 -0
  2365. package/node_modules/pi-web-access/index.ts +2346 -0
  2366. package/node_modules/pi-web-access/package.json +45 -0
  2367. package/node_modules/pi-web-access/pdf-extract.ts +192 -0
  2368. package/node_modules/pi-web-access/perplexity.ts +195 -0
  2369. package/node_modules/pi-web-access/pi-web-fetch-demo.mp4 +0 -0
  2370. package/node_modules/pi-web-access/rsc-extract.ts +338 -0
  2371. package/node_modules/pi-web-access/skills/librarian/SKILL.md +195 -0
  2372. package/node_modules/pi-web-access/storage.ts +72 -0
  2373. package/node_modules/pi-web-access/summary-review.ts +276 -0
  2374. package/node_modules/pi-web-access/test/gemini-web-cookie-opt-in.test.mjs +41 -0
  2375. package/node_modules/pi-web-access/test/pdf-extract.test.mjs +95 -0
  2376. package/node_modules/pi-web-access/utils.ts +44 -0
  2377. package/node_modules/pi-web-access/video-extract.ts +378 -0
  2378. package/node_modules/pi-web-access/youtube-extract.ts +310 -0
  2379. package/node_modules/shell-quote/.DS_Store +0 -0
  2380. package/node_modules/shell-quote/.eslintrc +30 -0
  2381. package/node_modules/shell-quote/.github/FUNDING.yml +12 -0
  2382. package/node_modules/shell-quote/.nycrc +14 -0
  2383. package/node_modules/shell-quote/LICENSE +24 -0
  2384. package/node_modules/shell-quote/README.md +168 -0
  2385. package/node_modules/shell-quote/index.js +4 -0
  2386. package/node_modules/shell-quote/package.json +71 -0
  2387. package/node_modules/shell-quote/parse.js +226 -0
  2388. package/node_modules/shell-quote/quote.js +61 -0
  2389. package/node_modules/shell-quote/security.md +11 -0
  2390. package/node_modules/shell-quote/test/comment.js +16 -0
  2391. package/node_modules/shell-quote/test/env.js +52 -0
  2392. package/node_modules/shell-quote/test/env_fn.js +21 -0
  2393. package/node_modules/shell-quote/test/op.js +102 -0
  2394. package/node_modules/shell-quote/test/parse.js +50 -0
  2395. package/node_modules/shell-quote/test/quote.js +116 -0
  2396. package/node_modules/shell-quote/test/set.js +31 -0
  2397. package/node_modules/turndown/LICENSE +21 -0
  2398. package/node_modules/turndown/README.md +234 -0
  2399. package/node_modules/turndown/dist/turndown.js +800 -0
  2400. package/node_modules/turndown/lib/turndown.browser.cjs.js +797 -0
  2401. package/node_modules/turndown/lib/turndown.browser.es.js +795 -0
  2402. package/node_modules/turndown/lib/turndown.browser.umd.js +803 -0
  2403. package/node_modules/turndown/lib/turndown.cjs.js +774 -0
  2404. package/node_modules/turndown/lib/turndown.es.js +772 -0
  2405. package/node_modules/turndown/lib/turndown.umd.js +780 -0
  2406. package/node_modules/turndown/package.json +59 -0
  2407. package/node_modules/typebox/build/compile/code.d.mts +12 -0
  2408. package/node_modules/typebox/build/compile/code.mjs +65 -0
  2409. package/node_modules/typebox/build/compile/compile.d.mts +6 -0
  2410. package/node_modules/typebox/build/compile/compile.mjs +12 -0
  2411. package/node_modules/typebox/build/compile/index.d.mts +8 -0
  2412. package/node_modules/typebox/build/compile/index.mjs +14 -0
  2413. package/node_modules/typebox/build/compile/validator.d.mts +43 -0
  2414. package/node_modules/typebox/build/compile/validator.mjs +121 -0
  2415. package/node_modules/typebox/build/error/errors.d.mts +214 -0
  2416. package/node_modules/typebox/build/error/errors.mjs +18 -0
  2417. package/node_modules/typebox/build/error/index.d.mts +1 -0
  2418. package/node_modules/typebox/build/error/index.mjs +1 -0
  2419. package/node_modules/typebox/build/format/_idna.d.mts +2 -0
  2420. package/node_modules/typebox/build/format/_idna.mjs +216 -0
  2421. package/node_modules/typebox/build/format/_puny.d.mts +1 -0
  2422. package/node_modules/typebox/build/format/_puny.mjs +74 -0
  2423. package/node_modules/typebox/build/format/_registry.d.mts +15 -0
  2424. package/node_modules/typebox/build/format/_registry.mjs +96 -0
  2425. package/node_modules/typebox/build/format/date.d.mts +6 -0
  2426. package/node_modules/typebox/build/format/date.mjs +19 -0
  2427. package/node_modules/typebox/build/format/date_time.d.mts +6 -0
  2428. package/node_modules/typebox/build/format/date_time.mjs +11 -0
  2429. package/node_modules/typebox/build/format/duration.d.mts +5 -0
  2430. package/node_modules/typebox/build/format/duration.mjs +8 -0
  2431. package/node_modules/typebox/build/format/email.d.mts +5 -0
  2432. package/node_modules/typebox/build/format/email.mjs +8 -0
  2433. package/node_modules/typebox/build/format/format.d.mts +22 -0
  2434. package/node_modules/typebox/build/format/format.mjs +22 -0
  2435. package/node_modules/typebox/build/format/hostname.d.mts +7 -0
  2436. package/node_modules/typebox/build/format/hostname.mjs +18 -0
  2437. package/node_modules/typebox/build/format/idn_email.d.mts +5 -0
  2438. package/node_modules/typebox/build/format/idn_email.mjs +8 -0
  2439. package/node_modules/typebox/build/format/idn_hostname.d.mts +7 -0
  2440. package/node_modules/typebox/build/format/idn_hostname.mjs +19 -0
  2441. package/node_modules/typebox/build/format/index.d.mts +4 -0
  2442. package/node_modules/typebox/build/format/index.mjs +4 -0
  2443. package/node_modules/typebox/build/format/ipv4.d.mts +6 -0
  2444. package/node_modules/typebox/build/format/ipv4.mjs +38 -0
  2445. package/node_modules/typebox/build/format/ipv6.d.mts +5 -0
  2446. package/node_modules/typebox/build/format/ipv6.mjs +67 -0
  2447. package/node_modules/typebox/build/format/iri.d.mts +5 -0
  2448. package/node_modules/typebox/build/format/iri.mjs +13 -0
  2449. package/node_modules/typebox/build/format/iri_reference.d.mts +5 -0
  2450. package/node_modules/typebox/build/format/iri_reference.mjs +60 -0
  2451. package/node_modules/typebox/build/format/json_pointer.d.mts +6 -0
  2452. package/node_modules/typebox/build/format/json_pointer.mjs +9 -0
  2453. package/node_modules/typebox/build/format/json_pointer_uri_fragment.d.mts +6 -0
  2454. package/node_modules/typebox/build/format/json_pointer_uri_fragment.mjs +9 -0
  2455. package/node_modules/typebox/build/format/regex.d.mts +6 -0
  2456. package/node_modules/typebox/build/format/regex.mjs +17 -0
  2457. package/node_modules/typebox/build/format/relative_json_pointer.d.mts +6 -0
  2458. package/node_modules/typebox/build/format/relative_json_pointer.mjs +9 -0
  2459. package/node_modules/typebox/build/format/time.d.mts +5 -0
  2460. package/node_modules/typebox/build/format/time.mjs +27 -0
  2461. package/node_modules/typebox/build/format/uri.d.mts +5 -0
  2462. package/node_modules/typebox/build/format/uri.mjs +135 -0
  2463. package/node_modules/typebox/build/format/uri_reference.d.mts +5 -0
  2464. package/node_modules/typebox/build/format/uri_reference.mjs +9 -0
  2465. package/node_modules/typebox/build/format/uri_template.d.mts +6 -0
  2466. package/node_modules/typebox/build/format/uri_template.mjs +10 -0
  2467. package/node_modules/typebox/build/format/url.d.mts +6 -0
  2468. package/node_modules/typebox/build/format/url.mjs +9 -0
  2469. package/node_modules/typebox/build/format/uuid.d.mts +6 -0
  2470. package/node_modules/typebox/build/format/uuid.mjs +9 -0
  2471. package/node_modules/typebox/build/guard/emit.d.mts +58 -0
  2472. package/node_modules/typebox/build/guard/emit.mjs +194 -0
  2473. package/node_modules/typebox/build/guard/globals.d.mts +35 -0
  2474. package/node_modules/typebox/build/guard/globals.mjs +90 -0
  2475. package/node_modules/typebox/build/guard/guard.d.mts +69 -0
  2476. package/node_modules/typebox/build/guard/guard.mjs +217 -0
  2477. package/node_modules/typebox/build/guard/index.d.mts +6 -0
  2478. package/node_modules/typebox/build/guard/index.mjs +6 -0
  2479. package/node_modules/typebox/build/guard/native.d.mts +20 -0
  2480. package/node_modules/typebox/build/guard/native.mjs +60 -0
  2481. package/node_modules/typebox/build/guard/string.d.mts +6 -0
  2482. package/node_modules/typebox/build/guard/string.mjs +164 -0
  2483. package/node_modules/typebox/build/index.d.mts +8 -0
  2484. package/node_modules/typebox/build/index.mjs +14 -0
  2485. package/node_modules/typebox/build/schema/build.d.mts +39 -0
  2486. package/node_modules/typebox/build/schema/build.mjs +118 -0
  2487. package/node_modules/typebox/build/schema/check.d.mts +6 -0
  2488. package/node_modules/typebox/build/schema/check.mjs +14 -0
  2489. package/node_modules/typebox/build/schema/compile.d.mts +22 -0
  2490. package/node_modules/typebox/build/schema/compile.mjs +46 -0
  2491. package/node_modules/typebox/build/schema/engine/_context.d.mts +35 -0
  2492. package/node_modules/typebox/build/schema/engine/_context.mjs +129 -0
  2493. package/node_modules/typebox/build/schema/engine/_exact_optional.d.mts +3 -0
  2494. package/node_modules/typebox/build/schema/engine/_exact_optional.mjs +20 -0
  2495. package/node_modules/typebox/build/schema/engine/_externals.d.mts +7 -0
  2496. package/node_modules/typebox/build/schema/engine/_externals.mjs +25 -0
  2497. package/node_modules/typebox/build/schema/engine/_functions.d.mts +6 -0
  2498. package/node_modules/typebox/build/schema/engine/_functions.mjs +47 -0
  2499. package/node_modules/typebox/build/schema/engine/_guard.d.mts +6 -0
  2500. package/node_modules/typebox/build/schema/engine/_guard.mjs +26 -0
  2501. package/node_modules/typebox/build/schema/engine/_reducer.d.mts +4 -0
  2502. package/node_modules/typebox/build/schema/engine/_reducer.mjs +45 -0
  2503. package/node_modules/typebox/build/schema/engine/_refine.d.mts +6 -0
  2504. package/node_modules/typebox/build/schema/engine/_refine.mjs +29 -0
  2505. package/node_modules/typebox/build/schema/engine/_stack.d.mts +18 -0
  2506. package/node_modules/typebox/build/schema/engine/_stack.mjs +107 -0
  2507. package/node_modules/typebox/build/schema/engine/_unique.d.mts +2 -0
  2508. package/node_modules/typebox/build/schema/engine/_unique.mjs +5 -0
  2509. package/node_modules/typebox/build/schema/engine/additionalItems.d.mts +6 -0
  2510. package/node_modules/typebox/build/schema/engine/additionalItems.mjs +50 -0
  2511. package/node_modules/typebox/build/schema/engine/additionalProperties.d.mts +9 -0
  2512. package/node_modules/typebox/build/schema/engine/additionalProperties.mjs +110 -0
  2513. package/node_modules/typebox/build/schema/engine/allOf.d.mts +6 -0
  2514. package/node_modules/typebox/build/schema/engine/allOf.mjs +47 -0
  2515. package/node_modules/typebox/build/schema/engine/anyOf.d.mts +6 -0
  2516. package/node_modules/typebox/build/schema/engine/anyOf.mjs +52 -0
  2517. package/node_modules/typebox/build/schema/engine/boolean.d.mts +5 -0
  2518. package/node_modules/typebox/build/schema/engine/boolean.mjs +25 -0
  2519. package/node_modules/typebox/build/schema/engine/const.d.mts +6 -0
  2520. package/node_modules/typebox/build/schema/engine/const.mjs +30 -0
  2521. package/node_modules/typebox/build/schema/engine/contains.d.mts +6 -0
  2522. package/node_modules/typebox/build/schema/engine/contains.mjs +42 -0
  2523. package/node_modules/typebox/build/schema/engine/dependencies.d.mts +6 -0
  2524. package/node_modules/typebox/build/schema/engine/dependencies.mjs +45 -0
  2525. package/node_modules/typebox/build/schema/engine/dependentRequired.d.mts +6 -0
  2526. package/node_modules/typebox/build/schema/engine/dependentRequired.mjs +40 -0
  2527. package/node_modules/typebox/build/schema/engine/dependentSchemas.d.mts +6 -0
  2528. package/node_modules/typebox/build/schema/engine/dependentSchemas.mjs +38 -0
  2529. package/node_modules/typebox/build/schema/engine/dynamicRef.d.mts +6 -0
  2530. package/node_modules/typebox/build/schema/engine/dynamicRef.mjs +25 -0
  2531. package/node_modules/typebox/build/schema/engine/enum.d.mts +6 -0
  2532. package/node_modules/typebox/build/schema/engine/enum.mjs +33 -0
  2533. package/node_modules/typebox/build/schema/engine/exclusiveMaximum.d.mts +6 -0
  2534. package/node_modules/typebox/build/schema/engine/exclusiveMaximum.mjs +25 -0
  2535. package/node_modules/typebox/build/schema/engine/exclusiveMinimum.d.mts +6 -0
  2536. package/node_modules/typebox/build/schema/engine/exclusiveMinimum.mjs +25 -0
  2537. package/node_modules/typebox/build/schema/engine/format.d.mts +6 -0
  2538. package/node_modules/typebox/build/schema/engine/format.mjs +26 -0
  2539. package/node_modules/typebox/build/schema/engine/if.d.mts +6 -0
  2540. package/node_modules/typebox/build/schema/engine/if.mjs +47 -0
  2541. package/node_modules/typebox/build/schema/engine/index.d.mts +49 -0
  2542. package/node_modules/typebox/build/schema/engine/index.mjs +55 -0
  2543. package/node_modules/typebox/build/schema/engine/items.d.mts +6 -0
  2544. package/node_modules/typebox/build/schema/engine/items.mjs +68 -0
  2545. package/node_modules/typebox/build/schema/engine/maxContains.d.mts +6 -0
  2546. package/node_modules/typebox/build/schema/engine/maxContains.mjs +42 -0
  2547. package/node_modules/typebox/build/schema/engine/maxItems.d.mts +6 -0
  2548. package/node_modules/typebox/build/schema/engine/maxItems.mjs +25 -0
  2549. package/node_modules/typebox/build/schema/engine/maxLength.d.mts +6 -0
  2550. package/node_modules/typebox/build/schema/engine/maxLength.mjs +25 -0
  2551. package/node_modules/typebox/build/schema/engine/maxProperties.d.mts +6 -0
  2552. package/node_modules/typebox/build/schema/engine/maxProperties.mjs +25 -0
  2553. package/node_modules/typebox/build/schema/engine/maximum.d.mts +6 -0
  2554. package/node_modules/typebox/build/schema/engine/maximum.mjs +25 -0
  2555. package/node_modules/typebox/build/schema/engine/minContains.d.mts +6 -0
  2556. package/node_modules/typebox/build/schema/engine/minContains.mjs +41 -0
  2557. package/node_modules/typebox/build/schema/engine/minItems.d.mts +6 -0
  2558. package/node_modules/typebox/build/schema/engine/minItems.mjs +25 -0
  2559. package/node_modules/typebox/build/schema/engine/minLength.d.mts +6 -0
  2560. package/node_modules/typebox/build/schema/engine/minLength.mjs +25 -0
  2561. package/node_modules/typebox/build/schema/engine/minProperties.d.mts +6 -0
  2562. package/node_modules/typebox/build/schema/engine/minProperties.mjs +25 -0
  2563. package/node_modules/typebox/build/schema/engine/minimum.d.mts +6 -0
  2564. package/node_modules/typebox/build/schema/engine/minimum.mjs +25 -0
  2565. package/node_modules/typebox/build/schema/engine/multipleOf.d.mts +6 -0
  2566. package/node_modules/typebox/build/schema/engine/multipleOf.mjs +25 -0
  2567. package/node_modules/typebox/build/schema/engine/not.d.mts +6 -0
  2568. package/node_modules/typebox/build/schema/engine/not.mjs +37 -0
  2569. package/node_modules/typebox/build/schema/engine/oneOf.d.mts +6 -0
  2570. package/node_modules/typebox/build/schema/engine/oneOf.mjs +58 -0
  2571. package/node_modules/typebox/build/schema/engine/pattern.d.mts +6 -0
  2572. package/node_modules/typebox/build/schema/engine/pattern.mjs +28 -0
  2573. package/node_modules/typebox/build/schema/engine/patternProperties.d.mts +6 -0
  2574. package/node_modules/typebox/build/schema/engine/patternProperties.mjs +44 -0
  2575. package/node_modules/typebox/build/schema/engine/prefixItems.d.mts +6 -0
  2576. package/node_modules/typebox/build/schema/engine/prefixItems.mjs +35 -0
  2577. package/node_modules/typebox/build/schema/engine/properties.d.mts +6 -0
  2578. package/node_modules/typebox/build/schema/engine/properties.mjs +75 -0
  2579. package/node_modules/typebox/build/schema/engine/propertyNames.d.mts +6 -0
  2580. package/node_modules/typebox/build/schema/engine/propertyNames.mjs +39 -0
  2581. package/node_modules/typebox/build/schema/engine/recursiveRef.d.mts +6 -0
  2582. package/node_modules/typebox/build/schema/engine/recursiveRef.mjs +25 -0
  2583. package/node_modules/typebox/build/schema/engine/ref.d.mts +6 -0
  2584. package/node_modules/typebox/build/schema/engine/ref.mjs +58 -0
  2585. package/node_modules/typebox/build/schema/engine/required.d.mts +6 -0
  2586. package/node_modules/typebox/build/schema/engine/required.mjs +32 -0
  2587. package/node_modules/typebox/build/schema/engine/schema.d.mts +9 -0
  2588. package/node_modules/typebox/build/schema/engine/schema.mjs +352 -0
  2589. package/node_modules/typebox/build/schema/engine/type.d.mts +6 -0
  2590. package/node_modules/typebox/build/schema/engine/type.mjs +74 -0
  2591. package/node_modules/typebox/build/schema/engine/unevaluatedItems.d.mts +6 -0
  2592. package/node_modules/typebox/build/schema/engine/unevaluatedItems.mjs +51 -0
  2593. package/node_modules/typebox/build/schema/engine/unevaluatedProperties.d.mts +6 -0
  2594. package/node_modules/typebox/build/schema/engine/unevaluatedProperties.mjs +51 -0
  2595. package/node_modules/typebox/build/schema/engine/uniqueItems.d.mts +6 -0
  2596. package/node_modules/typebox/build/schema/engine/uniqueItems.mjs +51 -0
  2597. package/node_modules/typebox/build/schema/errors.d.mts +6 -0
  2598. package/node_modules/typebox/build/schema/errors.mjs +24 -0
  2599. package/node_modules/typebox/build/schema/index.d.mts +3 -0
  2600. package/node_modules/typebox/build/schema/index.mjs +9 -0
  2601. package/node_modules/typebox/build/schema/parse.d.mts +13 -0
  2602. package/node_modules/typebox/build/schema/parse.mjs +27 -0
  2603. package/node_modules/typebox/build/schema/pointer/index.d.mts +2 -0
  2604. package/node_modules/typebox/build/schema/pointer/index.mjs +2 -0
  2605. package/node_modules/typebox/build/schema/pointer/pointer.d.mts +10 -0
  2606. package/node_modules/typebox/build/schema/pointer/pointer.mjs +106 -0
  2607. package/node_modules/typebox/build/schema/pointer/pointer_get.d.mts +9 -0
  2608. package/node_modules/typebox/build/schema/pointer/pointer_get.mjs +2 -0
  2609. package/node_modules/typebox/build/schema/resolve/index.d.mts +1 -0
  2610. package/node_modules/typebox/build/schema/resolve/index.mjs +1 -0
  2611. package/node_modules/typebox/build/schema/resolve/ref.d.mts +3 -0
  2612. package/node_modules/typebox/build/schema/resolve/ref.mjs +146 -0
  2613. package/node_modules/typebox/build/schema/resolve/resolve.d.mts +1 -0
  2614. package/node_modules/typebox/build/schema/resolve/resolve.mjs +1 -0
  2615. package/node_modules/typebox/build/schema/schema.d.mts +10 -0
  2616. package/node_modules/typebox/build/schema/schema.mjs +10 -0
  2617. package/node_modules/typebox/build/schema/static/_canonical.d.mts +7 -0
  2618. package/node_modules/typebox/build/schema/static/_canonical.mjs +2 -0
  2619. package/node_modules/typebox/build/schema/static/_comparer.d.mts +6 -0
  2620. package/node_modules/typebox/build/schema/static/_comparer.mjs +2 -0
  2621. package/node_modules/typebox/build/schema/static/_elements.d.mts +18 -0
  2622. package/node_modules/typebox/build/schema/static/_elements.mjs +2 -0
  2623. package/node_modules/typebox/build/schema/static/additionalProperties.d.mts +7 -0
  2624. package/node_modules/typebox/build/schema/static/additionalProperties.mjs +3 -0
  2625. package/node_modules/typebox/build/schema/static/allOf.d.mts +3 -0
  2626. package/node_modules/typebox/build/schema/static/allOf.mjs +2 -0
  2627. package/node_modules/typebox/build/schema/static/anyOf.d.mts +3 -0
  2628. package/node_modules/typebox/build/schema/static/anyOf.mjs +2 -0
  2629. package/node_modules/typebox/build/schema/static/const.d.mts +1 -0
  2630. package/node_modules/typebox/build/schema/static/const.mjs +2 -0
  2631. package/node_modules/typebox/build/schema/static/enum.d.mts +1 -0
  2632. package/node_modules/typebox/build/schema/static/enum.mjs +2 -0
  2633. package/node_modules/typebox/build/schema/static/if.d.mts +15 -0
  2634. package/node_modules/typebox/build/schema/static/if.mjs +2 -0
  2635. package/node_modules/typebox/build/schema/static/index.d.mts +1 -0
  2636. package/node_modules/typebox/build/schema/static/index.mjs +1 -0
  2637. package/node_modules/typebox/build/schema/static/items.d.mts +7 -0
  2638. package/node_modules/typebox/build/schema/static/items.mjs +2 -0
  2639. package/node_modules/typebox/build/schema/static/oneOf.d.mts +3 -0
  2640. package/node_modules/typebox/build/schema/static/oneOf.mjs +2 -0
  2641. package/node_modules/typebox/build/schema/static/patternProperties.d.mts +7 -0
  2642. package/node_modules/typebox/build/schema/static/patternProperties.mjs +2 -0
  2643. package/node_modules/typebox/build/schema/static/prefixItems.d.mts +3 -0
  2644. package/node_modules/typebox/build/schema/static/prefixItems.mjs +2 -0
  2645. package/node_modules/typebox/build/schema/static/properties.d.mts +32 -0
  2646. package/node_modules/typebox/build/schema/static/properties.mjs +2 -0
  2647. package/node_modules/typebox/build/schema/static/ref.d.mts +8 -0
  2648. package/node_modules/typebox/build/schema/static/ref.mjs +3 -0
  2649. package/node_modules/typebox/build/schema/static/required.d.mts +3 -0
  2650. package/node_modules/typebox/build/schema/static/required.mjs +3 -0
  2651. package/node_modules/typebox/build/schema/static/schema.d.mts +56 -0
  2652. package/node_modules/typebox/build/schema/static/schema.mjs +2 -0
  2653. package/node_modules/typebox/build/schema/static/static.d.mts +4 -0
  2654. package/node_modules/typebox/build/schema/static/static.mjs +3 -0
  2655. package/node_modules/typebox/build/schema/static/type.d.mts +4 -0
  2656. package/node_modules/typebox/build/schema/static/type.mjs +3 -0
  2657. package/node_modules/typebox/build/schema/static/unevaluatedProperties.d.mts +7 -0
  2658. package/node_modules/typebox/build/schema/static/unevaluatedProperties.mjs +3 -0
  2659. package/node_modules/typebox/build/schema/types/_guard.d.mts +10 -0
  2660. package/node_modules/typebox/build/schema/types/_guard.mjs +16 -0
  2661. package/node_modules/typebox/build/schema/types/_refine.d.mts +13 -0
  2662. package/node_modules/typebox/build/schema/types/_refine.mjs +18 -0
  2663. package/node_modules/typebox/build/schema/types/additionalItems.d.mts +9 -0
  2664. package/node_modules/typebox/build/schema/types/additionalItems.mjs +14 -0
  2665. package/node_modules/typebox/build/schema/types/additionalProperties.d.mts +9 -0
  2666. package/node_modules/typebox/build/schema/types/additionalProperties.mjs +14 -0
  2667. package/node_modules/typebox/build/schema/types/allOf.d.mts +9 -0
  2668. package/node_modules/typebox/build/schema/types/allOf.mjs +15 -0
  2669. package/node_modules/typebox/build/schema/types/anchor.d.mts +8 -0
  2670. package/node_modules/typebox/build/schema/types/anchor.mjs +12 -0
  2671. package/node_modules/typebox/build/schema/types/anyOf.d.mts +9 -0
  2672. package/node_modules/typebox/build/schema/types/anyOf.mjs +15 -0
  2673. package/node_modules/typebox/build/schema/types/const.d.mts +9 -0
  2674. package/node_modules/typebox/build/schema/types/const.mjs +12 -0
  2675. package/node_modules/typebox/build/schema/types/contains.d.mts +9 -0
  2676. package/node_modules/typebox/build/schema/types/contains.mjs +14 -0
  2677. package/node_modules/typebox/build/schema/types/contentEncoding.d.mts +9 -0
  2678. package/node_modules/typebox/build/schema/types/contentEncoding.mjs +13 -0
  2679. package/node_modules/typebox/build/schema/types/contentMediaType.d.mts +9 -0
  2680. package/node_modules/typebox/build/schema/types/contentMediaType.mjs +13 -0
  2681. package/node_modules/typebox/build/schema/types/default.d.mts +9 -0
  2682. package/node_modules/typebox/build/schema/types/default.mjs +12 -0
  2683. package/node_modules/typebox/build/schema/types/defs.d.mts +6 -0
  2684. package/node_modules/typebox/build/schema/types/defs.mjs +12 -0
  2685. package/node_modules/typebox/build/schema/types/dependencies.d.mts +11 -0
  2686. package/node_modules/typebox/build/schema/types/dependencies.mjs +16 -0
  2687. package/node_modules/typebox/build/schema/types/dependentRequired.d.mts +9 -0
  2688. package/node_modules/typebox/build/schema/types/dependentRequired.mjs +15 -0
  2689. package/node_modules/typebox/build/schema/types/dependentSchemas.d.mts +9 -0
  2690. package/node_modules/typebox/build/schema/types/dependentSchemas.mjs +15 -0
  2691. package/node_modules/typebox/build/schema/types/dynamicAnchor.d.mts +8 -0
  2692. package/node_modules/typebox/build/schema/types/dynamicAnchor.mjs +12 -0
  2693. package/node_modules/typebox/build/schema/types/dynamicRef.d.mts +8 -0
  2694. package/node_modules/typebox/build/schema/types/dynamicRef.mjs +12 -0
  2695. package/node_modules/typebox/build/schema/types/else.d.mts +9 -0
  2696. package/node_modules/typebox/build/schema/types/else.mjs +14 -0
  2697. package/node_modules/typebox/build/schema/types/enum.d.mts +9 -0
  2698. package/node_modules/typebox/build/schema/types/enum.mjs +13 -0
  2699. package/node_modules/typebox/build/schema/types/exclusiveMaximum.d.mts +9 -0
  2700. package/node_modules/typebox/build/schema/types/exclusiveMaximum.mjs +13 -0
  2701. package/node_modules/typebox/build/schema/types/exclusiveMinimum.d.mts +9 -0
  2702. package/node_modules/typebox/build/schema/types/exclusiveMinimum.mjs +13 -0
  2703. package/node_modules/typebox/build/schema/types/format.d.mts +9 -0
  2704. package/node_modules/typebox/build/schema/types/format.mjs +13 -0
  2705. package/node_modules/typebox/build/schema/types/id.d.mts +9 -0
  2706. package/node_modules/typebox/build/schema/types/id.mjs +13 -0
  2707. package/node_modules/typebox/build/schema/types/if.d.mts +9 -0
  2708. package/node_modules/typebox/build/schema/types/if.mjs +14 -0
  2709. package/node_modules/typebox/build/schema/types/index.d.mts +54 -0
  2710. package/node_modules/typebox/build/schema/types/index.mjs +60 -0
  2711. package/node_modules/typebox/build/schema/types/items.d.mts +19 -0
  2712. package/node_modules/typebox/build/schema/types/items.mjs +26 -0
  2713. package/node_modules/typebox/build/schema/types/maxContains.d.mts +9 -0
  2714. package/node_modules/typebox/build/schema/types/maxContains.mjs +13 -0
  2715. package/node_modules/typebox/build/schema/types/maxItems.d.mts +9 -0
  2716. package/node_modules/typebox/build/schema/types/maxItems.mjs +13 -0
  2717. package/node_modules/typebox/build/schema/types/maxLength.d.mts +9 -0
  2718. package/node_modules/typebox/build/schema/types/maxLength.mjs +13 -0
  2719. package/node_modules/typebox/build/schema/types/maxProperties.d.mts +9 -0
  2720. package/node_modules/typebox/build/schema/types/maxProperties.mjs +13 -0
  2721. package/node_modules/typebox/build/schema/types/maximum.d.mts +9 -0
  2722. package/node_modules/typebox/build/schema/types/maximum.mjs +13 -0
  2723. package/node_modules/typebox/build/schema/types/minContains.d.mts +9 -0
  2724. package/node_modules/typebox/build/schema/types/minContains.mjs +13 -0
  2725. package/node_modules/typebox/build/schema/types/minItems.d.mts +9 -0
  2726. package/node_modules/typebox/build/schema/types/minItems.mjs +13 -0
  2727. package/node_modules/typebox/build/schema/types/minLength.d.mts +9 -0
  2728. package/node_modules/typebox/build/schema/types/minLength.mjs +13 -0
  2729. package/node_modules/typebox/build/schema/types/minProperties.d.mts +9 -0
  2730. package/node_modules/typebox/build/schema/types/minProperties.mjs +13 -0
  2731. package/node_modules/typebox/build/schema/types/minimum.d.mts +9 -0
  2732. package/node_modules/typebox/build/schema/types/minimum.mjs +13 -0
  2733. package/node_modules/typebox/build/schema/types/multipleOf.d.mts +9 -0
  2734. package/node_modules/typebox/build/schema/types/multipleOf.mjs +13 -0
  2735. package/node_modules/typebox/build/schema/types/not.d.mts +9 -0
  2736. package/node_modules/typebox/build/schema/types/not.mjs +14 -0
  2737. package/node_modules/typebox/build/schema/types/oneOf.d.mts +9 -0
  2738. package/node_modules/typebox/build/schema/types/oneOf.mjs +15 -0
  2739. package/node_modules/typebox/build/schema/types/pattern.d.mts +9 -0
  2740. package/node_modules/typebox/build/schema/types/pattern.mjs +14 -0
  2741. package/node_modules/typebox/build/schema/types/patternProperties.d.mts +9 -0
  2742. package/node_modules/typebox/build/schema/types/patternProperties.mjs +15 -0
  2743. package/node_modules/typebox/build/schema/types/prefixItems.d.mts +8 -0
  2744. package/node_modules/typebox/build/schema/types/prefixItems.mjs +14 -0
  2745. package/node_modules/typebox/build/schema/types/properties.d.mts +9 -0
  2746. package/node_modules/typebox/build/schema/types/properties.mjs +15 -0
  2747. package/node_modules/typebox/build/schema/types/propertyNames.d.mts +9 -0
  2748. package/node_modules/typebox/build/schema/types/propertyNames.mjs +15 -0
  2749. package/node_modules/typebox/build/schema/types/recursiveAnchor.d.mts +12 -0
  2750. package/node_modules/typebox/build/schema/types/recursiveAnchor.mjs +19 -0
  2751. package/node_modules/typebox/build/schema/types/recursiveRef.d.mts +8 -0
  2752. package/node_modules/typebox/build/schema/types/recursiveRef.mjs +12 -0
  2753. package/node_modules/typebox/build/schema/types/ref.d.mts +9 -0
  2754. package/node_modules/typebox/build/schema/types/ref.mjs +13 -0
  2755. package/node_modules/typebox/build/schema/types/required.d.mts +9 -0
  2756. package/node_modules/typebox/build/schema/types/required.mjs +14 -0
  2757. package/node_modules/typebox/build/schema/types/schema.d.mts +9 -0
  2758. package/node_modules/typebox/build/schema/types/schema.mjs +14 -0
  2759. package/node_modules/typebox/build/schema/types/then.d.mts +9 -0
  2760. package/node_modules/typebox/build/schema/types/then.mjs +14 -0
  2761. package/node_modules/typebox/build/schema/types/type.d.mts +9 -0
  2762. package/node_modules/typebox/build/schema/types/type.mjs +15 -0
  2763. package/node_modules/typebox/build/schema/types/unevaluatedItems.d.mts +9 -0
  2764. package/node_modules/typebox/build/schema/types/unevaluatedItems.mjs +14 -0
  2765. package/node_modules/typebox/build/schema/types/unevaluatedProperties.d.mts +9 -0
  2766. package/node_modules/typebox/build/schema/types/unevaluatedProperties.mjs +14 -0
  2767. package/node_modules/typebox/build/schema/types/uniqueItems.d.mts +9 -0
  2768. package/node_modules/typebox/build/schema/types/uniqueItems.mjs +13 -0
  2769. package/node_modules/typebox/build/system/arguments/arguments.d.mts +5 -0
  2770. package/node_modules/typebox/build/system/arguments/arguments.mjs +9 -0
  2771. package/node_modules/typebox/build/system/arguments/index.d.mts +1 -0
  2772. package/node_modules/typebox/build/system/arguments/index.mjs +1 -0
  2773. package/node_modules/typebox/build/system/environment/environment.d.mts +1 -0
  2774. package/node_modules/typebox/build/system/environment/environment.mjs +1 -0
  2775. package/node_modules/typebox/build/system/environment/evaluate.d.mts +9 -0
  2776. package/node_modules/typebox/build/system/environment/evaluate.mjs +37 -0
  2777. package/node_modules/typebox/build/system/environment/index.d.mts +1 -0
  2778. package/node_modules/typebox/build/system/environment/index.mjs +1 -0
  2779. package/node_modules/typebox/build/system/hashing/hash.d.mts +4 -0
  2780. package/node_modules/typebox/build/system/hashing/hash.mjs +232 -0
  2781. package/node_modules/typebox/build/system/hashing/index.d.mts +1 -0
  2782. package/node_modules/typebox/build/system/hashing/index.mjs +1 -0
  2783. package/node_modules/typebox/build/system/index.d.mts +4 -0
  2784. package/node_modules/typebox/build/system/index.mjs +4 -0
  2785. package/node_modules/typebox/build/system/locale/_config.d.mts +7 -0
  2786. package/node_modules/typebox/build/system/locale/_config.mjs +15 -0
  2787. package/node_modules/typebox/build/system/locale/_locale.d.mts +40 -0
  2788. package/node_modules/typebox/build/system/locale/_locale.mjs +40 -0
  2789. package/node_modules/typebox/build/system/locale/ar_001.d.mts +3 -0
  2790. package/node_modules/typebox/build/system/locale/ar_001.mjs +41 -0
  2791. package/node_modules/typebox/build/system/locale/bn_BD.d.mts +3 -0
  2792. package/node_modules/typebox/build/system/locale/bn_BD.mjs +41 -0
  2793. package/node_modules/typebox/build/system/locale/cs_CZ.d.mts +3 -0
  2794. package/node_modules/typebox/build/system/locale/cs_CZ.mjs +41 -0
  2795. package/node_modules/typebox/build/system/locale/de_DE.d.mts +3 -0
  2796. package/node_modules/typebox/build/system/locale/de_DE.mjs +41 -0
  2797. package/node_modules/typebox/build/system/locale/el_GR.d.mts +3 -0
  2798. package/node_modules/typebox/build/system/locale/el_GR.mjs +41 -0
  2799. package/node_modules/typebox/build/system/locale/en_US.d.mts +3 -0
  2800. package/node_modules/typebox/build/system/locale/en_US.mjs +40 -0
  2801. package/node_modules/typebox/build/system/locale/es_419.d.mts +3 -0
  2802. package/node_modules/typebox/build/system/locale/es_419.mjs +41 -0
  2803. package/node_modules/typebox/build/system/locale/es_AR.d.mts +3 -0
  2804. package/node_modules/typebox/build/system/locale/es_AR.mjs +41 -0
  2805. package/node_modules/typebox/build/system/locale/es_ES.d.mts +3 -0
  2806. package/node_modules/typebox/build/system/locale/es_ES.mjs +41 -0
  2807. package/node_modules/typebox/build/system/locale/es_MX.d.mts +3 -0
  2808. package/node_modules/typebox/build/system/locale/es_MX.mjs +41 -0
  2809. package/node_modules/typebox/build/system/locale/fa_IR.d.mts +3 -0
  2810. package/node_modules/typebox/build/system/locale/fa_IR.mjs +41 -0
  2811. package/node_modules/typebox/build/system/locale/fil_PH.d.mts +3 -0
  2812. package/node_modules/typebox/build/system/locale/fil_PH.mjs +41 -0
  2813. package/node_modules/typebox/build/system/locale/fr_CA.d.mts +3 -0
  2814. package/node_modules/typebox/build/system/locale/fr_CA.mjs +41 -0
  2815. package/node_modules/typebox/build/system/locale/fr_FR.d.mts +3 -0
  2816. package/node_modules/typebox/build/system/locale/fr_FR.mjs +41 -0
  2817. package/node_modules/typebox/build/system/locale/ha_NG.d.mts +3 -0
  2818. package/node_modules/typebox/build/system/locale/ha_NG.mjs +41 -0
  2819. package/node_modules/typebox/build/system/locale/hi_IN.d.mts +3 -0
  2820. package/node_modules/typebox/build/system/locale/hi_IN.mjs +41 -0
  2821. package/node_modules/typebox/build/system/locale/hu_HU.d.mts +3 -0
  2822. package/node_modules/typebox/build/system/locale/hu_HU.mjs +41 -0
  2823. package/node_modules/typebox/build/system/locale/id_ID.d.mts +3 -0
  2824. package/node_modules/typebox/build/system/locale/id_ID.mjs +41 -0
  2825. package/node_modules/typebox/build/system/locale/index.d.mts +1 -0
  2826. package/node_modules/typebox/build/system/locale/index.mjs +1 -0
  2827. package/node_modules/typebox/build/system/locale/it_IT.d.mts +3 -0
  2828. package/node_modules/typebox/build/system/locale/it_IT.mjs +41 -0
  2829. package/node_modules/typebox/build/system/locale/ja_JP.d.mts +3 -0
  2830. package/node_modules/typebox/build/system/locale/ja_JP.mjs +41 -0
  2831. package/node_modules/typebox/build/system/locale/ko_KR.d.mts +3 -0
  2832. package/node_modules/typebox/build/system/locale/ko_KR.mjs +41 -0
  2833. package/node_modules/typebox/build/system/locale/ms_MY.d.mts +3 -0
  2834. package/node_modules/typebox/build/system/locale/ms_MY.mjs +41 -0
  2835. package/node_modules/typebox/build/system/locale/nl_NL.d.mts +3 -0
  2836. package/node_modules/typebox/build/system/locale/nl_NL.mjs +41 -0
  2837. package/node_modules/typebox/build/system/locale/pl_PL.d.mts +3 -0
  2838. package/node_modules/typebox/build/system/locale/pl_PL.mjs +41 -0
  2839. package/node_modules/typebox/build/system/locale/pt_BR.d.mts +3 -0
  2840. package/node_modules/typebox/build/system/locale/pt_BR.mjs +41 -0
  2841. package/node_modules/typebox/build/system/locale/pt_PT.d.mts +3 -0
  2842. package/node_modules/typebox/build/system/locale/pt_PT.mjs +41 -0
  2843. package/node_modules/typebox/build/system/locale/ro_RO.d.mts +3 -0
  2844. package/node_modules/typebox/build/system/locale/ro_RO.mjs +41 -0
  2845. package/node_modules/typebox/build/system/locale/ru_RU.d.mts +3 -0
  2846. package/node_modules/typebox/build/system/locale/ru_RU.mjs +41 -0
  2847. package/node_modules/typebox/build/system/locale/sv_SE.d.mts +3 -0
  2848. package/node_modules/typebox/build/system/locale/sv_SE.mjs +41 -0
  2849. package/node_modules/typebox/build/system/locale/sw_TZ.d.mts +3 -0
  2850. package/node_modules/typebox/build/system/locale/sw_TZ.mjs +41 -0
  2851. package/node_modules/typebox/build/system/locale/th_TH.d.mts +3 -0
  2852. package/node_modules/typebox/build/system/locale/th_TH.mjs +41 -0
  2853. package/node_modules/typebox/build/system/locale/tr_TR.d.mts +3 -0
  2854. package/node_modules/typebox/build/system/locale/tr_TR.mjs +41 -0
  2855. package/node_modules/typebox/build/system/locale/uk_UA.d.mts +3 -0
  2856. package/node_modules/typebox/build/system/locale/uk_UA.mjs +41 -0
  2857. package/node_modules/typebox/build/system/locale/ur_PK.d.mts +3 -0
  2858. package/node_modules/typebox/build/system/locale/ur_PK.mjs +41 -0
  2859. package/node_modules/typebox/build/system/locale/vi_VN.d.mts +3 -0
  2860. package/node_modules/typebox/build/system/locale/vi_VN.mjs +41 -0
  2861. package/node_modules/typebox/build/system/locale/yo_NG.d.mts +3 -0
  2862. package/node_modules/typebox/build/system/locale/yo_NG.mjs +41 -0
  2863. package/node_modules/typebox/build/system/locale/zh_Hans.d.mts +3 -0
  2864. package/node_modules/typebox/build/system/locale/zh_Hans.mjs +41 -0
  2865. package/node_modules/typebox/build/system/locale/zh_Hant.d.mts +3 -0
  2866. package/node_modules/typebox/build/system/locale/zh_Hant.mjs +41 -0
  2867. package/node_modules/typebox/build/system/memory/assign.d.mts +14 -0
  2868. package/node_modules/typebox/build/system/memory/assign.mjs +11 -0
  2869. package/node_modules/typebox/build/system/memory/clone.d.mts +6 -0
  2870. package/node_modules/typebox/build/system/memory/clone.mjs +63 -0
  2871. package/node_modules/typebox/build/system/memory/create.d.mts +8 -0
  2872. package/node_modules/typebox/build/system/memory/create.mjs +30 -0
  2873. package/node_modules/typebox/build/system/memory/discard.d.mts +4 -0
  2874. package/node_modules/typebox/build/system/memory/discard.mjs +17 -0
  2875. package/node_modules/typebox/build/system/memory/index.d.mts +1 -0
  2876. package/node_modules/typebox/build/system/memory/index.mjs +1 -0
  2877. package/node_modules/typebox/build/system/memory/memory.d.mts +6 -0
  2878. package/node_modules/typebox/build/system/memory/memory.mjs +7 -0
  2879. package/node_modules/typebox/build/system/memory/metrics.d.mts +14 -0
  2880. package/node_modules/typebox/build/system/memory/metrics.mjs +8 -0
  2881. package/node_modules/typebox/build/system/memory/update.d.mts +7 -0
  2882. package/node_modules/typebox/build/system/memory/update.mjs +32 -0
  2883. package/node_modules/typebox/build/system/settings/index.d.mts +1 -0
  2884. package/node_modules/typebox/build/system/settings/index.mjs +1 -0
  2885. package/node_modules/typebox/build/system/settings/settings.d.mts +56 -0
  2886. package/node_modules/typebox/build/system/settings/settings.mjs +32 -0
  2887. package/node_modules/typebox/build/system/system.d.mts +6 -0
  2888. package/node_modules/typebox/build/system/system.mjs +6 -0
  2889. package/node_modules/typebox/build/system/unreachable/index.d.mts +1 -0
  2890. package/node_modules/typebox/build/system/unreachable/index.mjs +1 -0
  2891. package/node_modules/typebox/build/system/unreachable/unreachable.d.mts +3 -0
  2892. package/node_modules/typebox/build/system/unreachable/unreachable.mjs +6 -0
  2893. package/node_modules/typebox/build/type/action/_add_immutable.d.mts +11 -0
  2894. package/node_modules/typebox/build/type/action/_add_immutable.mjs +11 -0
  2895. package/node_modules/typebox/build/type/action/_add_optional.d.mts +11 -0
  2896. package/node_modules/typebox/build/type/action/_add_optional.mjs +11 -0
  2897. package/node_modules/typebox/build/type/action/_add_readonly.d.mts +11 -0
  2898. package/node_modules/typebox/build/type/action/_add_readonly.mjs +11 -0
  2899. package/node_modules/typebox/build/type/action/_remove_immutable.d.mts +11 -0
  2900. package/node_modules/typebox/build/type/action/_remove_immutable.mjs +11 -0
  2901. package/node_modules/typebox/build/type/action/_remove_optional.d.mts +11 -0
  2902. package/node_modules/typebox/build/type/action/_remove_optional.mjs +11 -0
  2903. package/node_modules/typebox/build/type/action/_remove_readonly.d.mts +11 -0
  2904. package/node_modules/typebox/build/type/action/_remove_readonly.mjs +11 -0
  2905. package/node_modules/typebox/build/type/action/awaited.d.mts +15 -0
  2906. package/node_modules/typebox/build/type/action/awaited.mjs +15 -0
  2907. package/node_modules/typebox/build/type/action/capitalize.d.mts +11 -0
  2908. package/node_modules/typebox/build/type/action/capitalize.mjs +11 -0
  2909. package/node_modules/typebox/build/type/action/conditional.d.mts +12 -0
  2910. package/node_modules/typebox/build/type/action/conditional.mjs +13 -0
  2911. package/node_modules/typebox/build/type/action/constructor_parameters.d.mts +11 -0
  2912. package/node_modules/typebox/build/type/action/constructor_parameters.mjs +11 -0
  2913. package/node_modules/typebox/build/type/action/evaluate.d.mts +11 -0
  2914. package/node_modules/typebox/build/type/action/evaluate.mjs +11 -0
  2915. package/node_modules/typebox/build/type/action/exclude.d.mts +11 -0
  2916. package/node_modules/typebox/build/type/action/exclude.mjs +11 -0
  2917. package/node_modules/typebox/build/type/action/extract.d.mts +11 -0
  2918. package/node_modules/typebox/build/type/action/extract.mjs +11 -0
  2919. package/node_modules/typebox/build/type/action/index.d.mts +31 -0
  2920. package/node_modules/typebox/build/type/action/index.mjs +31 -0
  2921. package/node_modules/typebox/build/type/action/indexed.d.mts +14 -0
  2922. package/node_modules/typebox/build/type/action/indexed.mjs +14 -0
  2923. package/node_modules/typebox/build/type/action/instance_type.d.mts +11 -0
  2924. package/node_modules/typebox/build/type/action/instance_type.mjs +11 -0
  2925. package/node_modules/typebox/build/type/action/interface.d.mts +14 -0
  2926. package/node_modules/typebox/build/type/action/interface.mjs +22 -0
  2927. package/node_modules/typebox/build/type/action/keyof.d.mts +11 -0
  2928. package/node_modules/typebox/build/type/action/keyof.mjs +11 -0
  2929. package/node_modules/typebox/build/type/action/lowercase.d.mts +11 -0
  2930. package/node_modules/typebox/build/type/action/lowercase.mjs +11 -0
  2931. package/node_modules/typebox/build/type/action/mapped.d.mts +13 -0
  2932. package/node_modules/typebox/build/type/action/mapped.mjs +13 -0
  2933. package/node_modules/typebox/build/type/action/module.d.mts +13 -0
  2934. package/node_modules/typebox/build/type/action/module.mjs +13 -0
  2935. package/node_modules/typebox/build/type/action/non_nullable.d.mts +11 -0
  2936. package/node_modules/typebox/build/type/action/non_nullable.mjs +11 -0
  2937. package/node_modules/typebox/build/type/action/omit.d.mts +14 -0
  2938. package/node_modules/typebox/build/type/action/omit.mjs +14 -0
  2939. package/node_modules/typebox/build/type/action/parameters.d.mts +11 -0
  2940. package/node_modules/typebox/build/type/action/parameters.mjs +11 -0
  2941. package/node_modules/typebox/build/type/action/partial.d.mts +11 -0
  2942. package/node_modules/typebox/build/type/action/partial.mjs +11 -0
  2943. package/node_modules/typebox/build/type/action/pick.d.mts +14 -0
  2944. package/node_modules/typebox/build/type/action/pick.mjs +14 -0
  2945. package/node_modules/typebox/build/type/action/readonly_object.d.mts +16 -0
  2946. package/node_modules/typebox/build/type/action/readonly_object.mjs +16 -0
  2947. package/node_modules/typebox/build/type/action/required.d.mts +11 -0
  2948. package/node_modules/typebox/build/type/action/required.mjs +11 -0
  2949. package/node_modules/typebox/build/type/action/return_type.d.mts +11 -0
  2950. package/node_modules/typebox/build/type/action/return_type.mjs +11 -0
  2951. package/node_modules/typebox/build/type/action/uncapitalize.d.mts +11 -0
  2952. package/node_modules/typebox/build/type/action/uncapitalize.mjs +11 -0
  2953. package/node_modules/typebox/build/type/action/uppercase.d.mts +11 -0
  2954. package/node_modules/typebox/build/type/action/uppercase.mjs +11 -0
  2955. package/node_modules/typebox/build/type/action/with.d.mts +21 -0
  2956. package/node_modules/typebox/build/type/action/with.mjs +19 -0
  2957. package/node_modules/typebox/build/type/engine/awaited/index.d.mts +1 -0
  2958. package/node_modules/typebox/build/type/engine/awaited/index.mjs +1 -0
  2959. package/node_modules/typebox/build/type/engine/awaited/instantiate.d.mts +11 -0
  2960. package/node_modules/typebox/build/type/engine/awaited/instantiate.mjs +20 -0
  2961. package/node_modules/typebox/build/type/engine/call/distribute_arguments.d.mts +15 -0
  2962. package/node_modules/typebox/build/type/engine/call/distribute_arguments.mjs +53 -0
  2963. package/node_modules/typebox/build/type/engine/call/instantiate.d.mts +21 -0
  2964. package/node_modules/typebox/build/type/engine/call/instantiate.mjs +49 -0
  2965. package/node_modules/typebox/build/type/engine/call/resolve_arguments.d.mts +13 -0
  2966. package/node_modules/typebox/build/type/engine/call/resolve_arguments.mjs +33 -0
  2967. package/node_modules/typebox/build/type/engine/call/resolve_target.d.mts +25 -0
  2968. package/node_modules/typebox/build/type/engine/call/resolve_target.mjs +27 -0
  2969. package/node_modules/typebox/build/type/engine/conditional/index.d.mts +1 -0
  2970. package/node_modules/typebox/build/type/engine/conditional/index.mjs +1 -0
  2971. package/node_modules/typebox/build/type/engine/conditional/instantiate.d.mts +12 -0
  2972. package/node_modules/typebox/build/type/engine/conditional/instantiate.mjs +23 -0
  2973. package/node_modules/typebox/build/type/engine/constructor_parameters/index.d.mts +1 -0
  2974. package/node_modules/typebox/build/type/engine/constructor_parameters/index.mjs +1 -0
  2975. package/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.d.mts +14 -0
  2976. package/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.mjs +25 -0
  2977. package/node_modules/typebox/build/type/engine/cyclic/candidates.d.mts +9 -0
  2978. package/node_modules/typebox/build/type/engine/cyclic/candidates.mjs +19 -0
  2979. package/node_modules/typebox/build/type/engine/cyclic/check.d.mts +24 -0
  2980. package/node_modules/typebox/build/type/engine/cyclic/check.mjs +51 -0
  2981. package/node_modules/typebox/build/type/engine/cyclic/dependencies.d.mts +25 -0
  2982. package/node_modules/typebox/build/type/engine/cyclic/dependencies.mjs +53 -0
  2983. package/node_modules/typebox/build/type/engine/cyclic/extends.d.mts +31 -0
  2984. package/node_modules/typebox/build/type/engine/cyclic/extends.mjs +53 -0
  2985. package/node_modules/typebox/build/type/engine/cyclic/index.d.mts +6 -0
  2986. package/node_modules/typebox/build/type/engine/cyclic/index.mjs +6 -0
  2987. package/node_modules/typebox/build/type/engine/cyclic/instantiate.d.mts +17 -0
  2988. package/node_modules/typebox/build/type/engine/cyclic/instantiate.mjs +31 -0
  2989. package/node_modules/typebox/build/type/engine/cyclic/target.d.mts +10 -0
  2990. package/node_modules/typebox/build/type/engine/cyclic/target.mjs +16 -0
  2991. package/node_modules/typebox/build/type/engine/enum/index.d.mts +1 -0
  2992. package/node_modules/typebox/build/type/engine/enum/index.mjs +1 -0
  2993. package/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.d.mts +8 -0
  2994. package/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.mjs +9 -0
  2995. package/node_modules/typebox/build/type/engine/evaluate/broaden.d.mts +16 -0
  2996. package/node_modules/typebox/build/type/engine/evaluate/broaden.mjs +47 -0
  2997. package/node_modules/typebox/build/type/engine/evaluate/compare.d.mts +15 -0
  2998. package/node_modules/typebox/build/type/engine/evaluate/compare.mjs +22 -0
  2999. package/node_modules/typebox/build/type/engine/evaluate/composite.d.mts +34 -0
  3000. package/node_modules/typebox/build/type/engine/evaluate/composite.mjs +67 -0
  3001. package/node_modules/typebox/build/type/engine/evaluate/distribute.d.mts +27 -0
  3002. package/node_modules/typebox/build/type/engine/evaluate/distribute.mjs +45 -0
  3003. package/node_modules/typebox/build/type/engine/evaluate/evaluate.d.mts +26 -0
  3004. package/node_modules/typebox/build/type/engine/evaluate/evaluate.mjs +51 -0
  3005. package/node_modules/typebox/build/type/engine/evaluate/flatten.d.mts +6 -0
  3006. package/node_modules/typebox/build/type/engine/evaluate/flatten.mjs +11 -0
  3007. package/node_modules/typebox/build/type/engine/evaluate/index.d.mts +8 -0
  3008. package/node_modules/typebox/build/type/engine/evaluate/index.mjs +8 -0
  3009. package/node_modules/typebox/build/type/engine/evaluate/instantiate.d.mts +8 -0
  3010. package/node_modules/typebox/build/type/engine/evaluate/instantiate.mjs +12 -0
  3011. package/node_modules/typebox/build/type/engine/evaluate/narrow.d.mts +5 -0
  3012. package/node_modules/typebox/build/type/engine/evaluate/narrow.mjs +11 -0
  3013. package/node_modules/typebox/build/type/engine/exclude/index.d.mts +1 -0
  3014. package/node_modules/typebox/build/type/engine/exclude/index.mjs +1 -0
  3015. package/node_modules/typebox/build/type/engine/exclude/instantiate.d.mts +9 -0
  3016. package/node_modules/typebox/build/type/engine/exclude/instantiate.mjs +16 -0
  3017. package/node_modules/typebox/build/type/engine/exclude/operation.d.mts +10 -0
  3018. package/node_modules/typebox/build/type/engine/exclude/operation.mjs +23 -0
  3019. package/node_modules/typebox/build/type/engine/extract/index.d.mts +1 -0
  3020. package/node_modules/typebox/build/type/engine/extract/index.mjs +1 -0
  3021. package/node_modules/typebox/build/type/engine/extract/instantiate.d.mts +9 -0
  3022. package/node_modules/typebox/build/type/engine/extract/instantiate.mjs +16 -0
  3023. package/node_modules/typebox/build/type/engine/extract/operation.d.mts +10 -0
  3024. package/node_modules/typebox/build/type/engine/extract/operation.mjs +23 -0
  3025. package/node_modules/typebox/build/type/engine/helpers/index.d.mts +3 -0
  3026. package/node_modules/typebox/build/type/engine/helpers/index.mjs +3 -0
  3027. package/node_modules/typebox/build/type/engine/helpers/keys.d.mts +3 -0
  3028. package/node_modules/typebox/build/type/engine/helpers/keys.mjs +8 -0
  3029. package/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.d.mts +7 -0
  3030. package/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.mjs +15 -0
  3031. package/node_modules/typebox/build/type/engine/helpers/union.d.mts +7 -0
  3032. package/node_modules/typebox/build/type/engine/helpers/union.mjs +3 -0
  3033. package/node_modules/typebox/build/type/engine/immutable/instantiate_add.d.mts +10 -0
  3034. package/node_modules/typebox/build/type/engine/immutable/instantiate_add.mjs +14 -0
  3035. package/node_modules/typebox/build/type/engine/immutable/instantiate_remove.d.mts +10 -0
  3036. package/node_modules/typebox/build/type/engine/immutable/instantiate_remove.mjs +14 -0
  3037. package/node_modules/typebox/build/type/engine/index.d.mts +31 -0
  3038. package/node_modules/typebox/build/type/engine/index.mjs +37 -0
  3039. package/node_modules/typebox/build/type/engine/indexable/from_cyclic.d.mts +6 -0
  3040. package/node_modules/typebox/build/type/engine/indexable/from_cyclic.mjs +8 -0
  3041. package/node_modules/typebox/build/type/engine/indexable/from_dependent.d.mts +5 -0
  3042. package/node_modules/typebox/build/type/engine/indexable/from_dependent.mjs +8 -0
  3043. package/node_modules/typebox/build/type/engine/indexable/from_enum.d.mts +6 -0
  3044. package/node_modules/typebox/build/type/engine/indexable/from_enum.mjs +8 -0
  3045. package/node_modules/typebox/build/type/engine/indexable/from_intersect.d.mts +5 -0
  3046. package/node_modules/typebox/build/type/engine/indexable/from_intersect.mjs +8 -0
  3047. package/node_modules/typebox/build/type/engine/indexable/from_literal.d.mts +3 -0
  3048. package/node_modules/typebox/build/type/engine/indexable/from_literal.mjs +5 -0
  3049. package/node_modules/typebox/build/type/engine/indexable/from_template_literal.d.mts +5 -0
  3050. package/node_modules/typebox/build/type/engine/indexable/from_template_literal.mjs +8 -0
  3051. package/node_modules/typebox/build/type/engine/indexable/from_type.d.mts +19 -0
  3052. package/node_modules/typebox/build/type/engine/indexable/from_type.mjs +25 -0
  3053. package/node_modules/typebox/build/type/engine/indexable/from_union.d.mts +4 -0
  3054. package/node_modules/typebox/build/type/engine/indexable/from_union.mjs +7 -0
  3055. package/node_modules/typebox/build/type/engine/indexable/to_indexable.d.mts +9 -0
  3056. package/node_modules/typebox/build/type/engine/indexable/to_indexable.mjs +14 -0
  3057. package/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.d.mts +10 -0
  3058. package/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.mjs +12 -0
  3059. package/node_modules/typebox/build/type/engine/indexed/array_indexer.d.mts +12 -0
  3060. package/node_modules/typebox/build/type/engine/indexed/array_indexer.mjs +18 -0
  3061. package/node_modules/typebox/build/type/engine/indexed/from_array.d.mts +15 -0
  3062. package/node_modules/typebox/build/type/engine/indexed/from_array.mjs +35 -0
  3063. package/node_modules/typebox/build/type/engine/indexed/from_object.d.mts +16 -0
  3064. package/node_modules/typebox/build/type/engine/indexed/from_object.mjs +40 -0
  3065. package/node_modules/typebox/build/type/engine/indexed/from_tuple.d.mts +13 -0
  3066. package/node_modules/typebox/build/type/engine/indexed/from_tuple.mjs +35 -0
  3067. package/node_modules/typebox/build/type/engine/indexed/from_type.d.mts +11 -0
  3068. package/node_modules/typebox/build/type/engine/indexed/from_type.mjs +14 -0
  3069. package/node_modules/typebox/build/type/engine/indexed/index.d.mts +1 -0
  3070. package/node_modules/typebox/build/type/engine/indexed/index.mjs +1 -0
  3071. package/node_modules/typebox/build/type/engine/indexed/instantiate.d.mts +16 -0
  3072. package/node_modules/typebox/build/type/engine/indexed/instantiate.mjs +26 -0
  3073. package/node_modules/typebox/build/type/engine/instance_type/index.d.mts +1 -0
  3074. package/node_modules/typebox/build/type/engine/instance_type/index.mjs +1 -0
  3075. package/node_modules/typebox/build/type/engine/instance_type/instantiate.d.mts +12 -0
  3076. package/node_modules/typebox/build/type/engine/instance_type/instantiate.mjs +21 -0
  3077. package/node_modules/typebox/build/type/engine/instantiate.d.mts +183 -0
  3078. package/node_modules/typebox/build/type/engine/instantiate.mjs +164 -0
  3079. package/node_modules/typebox/build/type/engine/interface/index.d.mts +1 -0
  3080. package/node_modules/typebox/build/type/engine/interface/index.mjs +1 -0
  3081. package/node_modules/typebox/build/type/engine/interface/instantiate.d.mts +15 -0
  3082. package/node_modules/typebox/build/type/engine/interface/instantiate.mjs +23 -0
  3083. package/node_modules/typebox/build/type/engine/intrinsics/from_literal.d.mts +5 -0
  3084. package/node_modules/typebox/build/type/engine/intrinsics/from_literal.mjs +9 -0
  3085. package/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.d.mts +6 -0
  3086. package/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.mjs +8 -0
  3087. package/node_modules/typebox/build/type/engine/intrinsics/from_type.d.mts +10 -0
  3088. package/node_modules/typebox/build/type/engine/intrinsics/from_type.mjs +13 -0
  3089. package/node_modules/typebox/build/type/engine/intrinsics/from_union.d.mts +6 -0
  3090. package/node_modules/typebox/build/type/engine/intrinsics/from_union.mjs +7 -0
  3091. package/node_modules/typebox/build/type/engine/intrinsics/index.d.mts +1 -0
  3092. package/node_modules/typebox/build/type/engine/intrinsics/index.mjs +1 -0
  3093. package/node_modules/typebox/build/type/engine/intrinsics/instantiate.d.mts +38 -0
  3094. package/node_modules/typebox/build/type/engine/intrinsics/instantiate.mjs +52 -0
  3095. package/node_modules/typebox/build/type/engine/intrinsics/mapping.d.mts +9 -0
  3096. package/node_modules/typebox/build/type/engine/intrinsics/mapping.mjs +4 -0
  3097. package/node_modules/typebox/build/type/engine/keyof/from_any.d.mts +6 -0
  3098. package/node_modules/typebox/build/type/engine/keyof/from_any.mjs +8 -0
  3099. package/node_modules/typebox/build/type/engine/keyof/from_array.d.mts +4 -0
  3100. package/node_modules/typebox/build/type/engine/keyof/from_array.mjs +5 -0
  3101. package/node_modules/typebox/build/type/engine/keyof/from_object.d.mts +10 -0
  3102. package/node_modules/typebox/build/type/engine/keyof/from_object.mjs +20 -0
  3103. package/node_modules/typebox/build/type/engine/keyof/from_record.d.mts +4 -0
  3104. package/node_modules/typebox/build/type/engine/keyof/from_record.mjs +5 -0
  3105. package/node_modules/typebox/build/type/engine/keyof/from_tuple.d.mts +5 -0
  3106. package/node_modules/typebox/build/type/engine/keyof/from_tuple.mjs +7 -0
  3107. package/node_modules/typebox/build/type/engine/keyof/from_type.d.mts +15 -0
  3108. package/node_modules/typebox/build/type/engine/keyof/from_type.mjs +23 -0
  3109. package/node_modules/typebox/build/type/engine/keyof/index.d.mts +1 -0
  3110. package/node_modules/typebox/build/type/engine/keyof/index.mjs +1 -0
  3111. package/node_modules/typebox/build/type/engine/keyof/instantiate.d.mts +16 -0
  3112. package/node_modules/typebox/build/type/engine/keyof/instantiate.mjs +26 -0
  3113. package/node_modules/typebox/build/type/engine/mapped/index.d.mts +1 -0
  3114. package/node_modules/typebox/build/type/engine/mapped/index.mjs +1 -0
  3115. package/node_modules/typebox/build/type/engine/mapped/instantiate.d.mts +10 -0
  3116. package/node_modules/typebox/build/type/engine/mapped/instantiate.mjs +15 -0
  3117. package/node_modules/typebox/build/type/engine/mapped/mapped_operation.d.mts +22 -0
  3118. package/node_modules/typebox/build/type/engine/mapped/mapped_operation.mjs +42 -0
  3119. package/node_modules/typebox/build/type/engine/mapped/mapped_variants.d.mts +17 -0
  3120. package/node_modules/typebox/build/type/engine/mapped/mapped_variants.mjs +39 -0
  3121. package/node_modules/typebox/build/type/engine/module/index.d.mts +1 -0
  3122. package/node_modules/typebox/build/type/engine/module/index.mjs +1 -0
  3123. package/node_modules/typebox/build/type/engine/module/instantiate.d.mts +19 -0
  3124. package/node_modules/typebox/build/type/engine/module/instantiate.mjs +36 -0
  3125. package/node_modules/typebox/build/type/engine/non_nullable/index.d.mts +1 -0
  3126. package/node_modules/typebox/build/type/engine/non_nullable/index.mjs +1 -0
  3127. package/node_modules/typebox/build/type/engine/non_nullable/instantiate.d.mts +14 -0
  3128. package/node_modules/typebox/build/type/engine/non_nullable/instantiate.mjs +22 -0
  3129. package/node_modules/typebox/build/type/engine/object/collapse.d.mts +12 -0
  3130. package/node_modules/typebox/build/type/engine/object/collapse.mjs +14 -0
  3131. package/node_modules/typebox/build/type/engine/object/from_cyclic.d.mts +6 -0
  3132. package/node_modules/typebox/build/type/engine/object/from_cyclic.mjs +8 -0
  3133. package/node_modules/typebox/build/type/engine/object/from_dependent.d.mts +5 -0
  3134. package/node_modules/typebox/build/type/engine/object/from_dependent.mjs +8 -0
  3135. package/node_modules/typebox/build/type/engine/object/from_intersect.d.mts +17 -0
  3136. package/node_modules/typebox/build/type/engine/object/from_intersect.mjs +22 -0
  3137. package/node_modules/typebox/build/type/engine/object/from_object.d.mts +3 -0
  3138. package/node_modules/typebox/build/type/engine/object/from_object.mjs +4 -0
  3139. package/node_modules/typebox/build/type/engine/object/from_tuple.d.mts +6 -0
  3140. package/node_modules/typebox/build/type/engine/object/from_tuple.mjs +9 -0
  3141. package/node_modules/typebox/build/type/engine/object/from_type.d.mts +16 -0
  3142. package/node_modules/typebox/build/type/engine/object/from_type.mjs +23 -0
  3143. package/node_modules/typebox/build/type/engine/object/from_union.d.mts +12 -0
  3144. package/node_modules/typebox/build/type/engine/object/from_union.mjs +19 -0
  3145. package/node_modules/typebox/build/type/engine/object/index.d.mts +1 -0
  3146. package/node_modules/typebox/build/type/engine/object/index.mjs +1 -0
  3147. package/node_modules/typebox/build/type/engine/omit/from_type.d.mts +12 -0
  3148. package/node_modules/typebox/build/type/engine/omit/from_type.mjs +18 -0
  3149. package/node_modules/typebox/build/type/engine/omit/index.d.mts +1 -0
  3150. package/node_modules/typebox/build/type/engine/omit/index.mjs +1 -0
  3151. package/node_modules/typebox/build/type/engine/omit/instantiate.d.mts +9 -0
  3152. package/node_modules/typebox/build/type/engine/omit/instantiate.mjs +16 -0
  3153. package/node_modules/typebox/build/type/engine/optional/instantiate_add.d.mts +10 -0
  3154. package/node_modules/typebox/build/type/engine/optional/instantiate_add.mjs +14 -0
  3155. package/node_modules/typebox/build/type/engine/optional/instantiate_remove.d.mts +10 -0
  3156. package/node_modules/typebox/build/type/engine/optional/instantiate_remove.mjs +14 -0
  3157. package/node_modules/typebox/build/type/engine/parameters/index.d.mts +1 -0
  3158. package/node_modules/typebox/build/type/engine/parameters/index.mjs +1 -0
  3159. package/node_modules/typebox/build/type/engine/parameters/instantiate.d.mts +14 -0
  3160. package/node_modules/typebox/build/type/engine/parameters/instantiate.mjs +25 -0
  3161. package/node_modules/typebox/build/type/engine/partial/from_cyclic.d.mts +10 -0
  3162. package/node_modules/typebox/build/type/engine/partial/from_cyclic.mjs +11 -0
  3163. package/node_modules/typebox/build/type/engine/partial/from_dependent.d.mts +5 -0
  3164. package/node_modules/typebox/build/type/engine/partial/from_dependent.mjs +8 -0
  3165. package/node_modules/typebox/build/type/engine/partial/from_intersect.d.mts +5 -0
  3166. package/node_modules/typebox/build/type/engine/partial/from_intersect.mjs +8 -0
  3167. package/node_modules/typebox/build/type/engine/partial/from_object.d.mts +8 -0
  3168. package/node_modules/typebox/build/type/engine/partial/from_object.mjs +11 -0
  3169. package/node_modules/typebox/build/type/engine/partial/from_type.d.mts +14 -0
  3170. package/node_modules/typebox/build/type/engine/partial/from_type.mjs +20 -0
  3171. package/node_modules/typebox/build/type/engine/partial/from_union.d.mts +5 -0
  3172. package/node_modules/typebox/build/type/engine/partial/from_union.mjs +7 -0
  3173. package/node_modules/typebox/build/type/engine/partial/index.d.mts +1 -0
  3174. package/node_modules/typebox/build/type/engine/partial/index.mjs +1 -0
  3175. package/node_modules/typebox/build/type/engine/partial/instantiate.d.mts +9 -0
  3176. package/node_modules/typebox/build/type/engine/partial/instantiate.mjs +15 -0
  3177. package/node_modules/typebox/build/type/engine/patterns/index.d.mts +2 -0
  3178. package/node_modules/typebox/build/type/engine/patterns/index.mjs +2 -0
  3179. package/node_modules/typebox/build/type/engine/patterns/pattern.d.mts +6 -0
  3180. package/node_modules/typebox/build/type/engine/patterns/pattern.mjs +11 -0
  3181. package/node_modules/typebox/build/type/engine/patterns/template.d.mts +7 -0
  3182. package/node_modules/typebox/build/type/engine/patterns/template.mjs +20 -0
  3183. package/node_modules/typebox/build/type/engine/pick/from_type.d.mts +13 -0
  3184. package/node_modules/typebox/build/type/engine/pick/from_type.mjs +20 -0
  3185. package/node_modules/typebox/build/type/engine/pick/index.d.mts +1 -0
  3186. package/node_modules/typebox/build/type/engine/pick/index.mjs +1 -0
  3187. package/node_modules/typebox/build/type/engine/pick/instantiate.d.mts +9 -0
  3188. package/node_modules/typebox/build/type/engine/pick/instantiate.mjs +16 -0
  3189. package/node_modules/typebox/build/type/engine/readonly/instantiate_add.d.mts +10 -0
  3190. package/node_modules/typebox/build/type/engine/readonly/instantiate_add.mjs +14 -0
  3191. package/node_modules/typebox/build/type/engine/readonly/instantiate_remove.d.mts +10 -0
  3192. package/node_modules/typebox/build/type/engine/readonly/instantiate_remove.mjs +14 -0
  3193. package/node_modules/typebox/build/type/engine/readonly_object/from_array.d.mts +5 -0
  3194. package/node_modules/typebox/build/type/engine/readonly_object/from_array.mjs +7 -0
  3195. package/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.d.mts +10 -0
  3196. package/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.mjs +11 -0
  3197. package/node_modules/typebox/build/type/engine/readonly_object/from_dependent.d.mts +5 -0
  3198. package/node_modules/typebox/build/type/engine/readonly_object/from_dependent.mjs +8 -0
  3199. package/node_modules/typebox/build/type/engine/readonly_object/from_intersect.d.mts +5 -0
  3200. package/node_modules/typebox/build/type/engine/readonly_object/from_intersect.mjs +8 -0
  3201. package/node_modules/typebox/build/type/engine/readonly_object/from_object.d.mts +8 -0
  3202. package/node_modules/typebox/build/type/engine/readonly_object/from_object.mjs +11 -0
  3203. package/node_modules/typebox/build/type/engine/readonly_object/from_tuple.d.mts +5 -0
  3204. package/node_modules/typebox/build/type/engine/readonly_object/from_tuple.mjs +7 -0
  3205. package/node_modules/typebox/build/type/engine/readonly_object/from_type.d.mts +18 -0
  3206. package/node_modules/typebox/build/type/engine/readonly_object/from_type.mjs +25 -0
  3207. package/node_modules/typebox/build/type/engine/readonly_object/from_union.d.mts +5 -0
  3208. package/node_modules/typebox/build/type/engine/readonly_object/from_union.mjs +7 -0
  3209. package/node_modules/typebox/build/type/engine/readonly_object/index.d.mts +1 -0
  3210. package/node_modules/typebox/build/type/engine/readonly_object/index.mjs +1 -0
  3211. package/node_modules/typebox/build/type/engine/readonly_object/instantiate.d.mts +9 -0
  3212. package/node_modules/typebox/build/type/engine/readonly_object/instantiate.mjs +15 -0
  3213. package/node_modules/typebox/build/type/engine/record/from_key.d.mts +24 -0
  3214. package/node_modules/typebox/build/type/engine/record/from_key.mjs +40 -0
  3215. package/node_modules/typebox/build/type/engine/record/from_key_any.d.mts +4 -0
  3216. package/node_modules/typebox/build/type/engine/record/from_key_any.mjs +6 -0
  3217. package/node_modules/typebox/build/type/engine/record/from_key_boolean.d.mts +7 -0
  3218. package/node_modules/typebox/build/type/engine/record/from_key_boolean.mjs +5 -0
  3219. package/node_modules/typebox/build/type/engine/record/from_key_enum.d.mts +6 -0
  3220. package/node_modules/typebox/build/type/engine/record/from_key_enum.mjs +8 -0
  3221. package/node_modules/typebox/build/type/engine/record/from_key_integer.d.mts +5 -0
  3222. package/node_modules/typebox/build/type/engine/record/from_key_integer.mjs +7 -0
  3223. package/node_modules/typebox/build/type/engine/record/from_key_intersect.d.mts +5 -0
  3224. package/node_modules/typebox/build/type/engine/record/from_key_intersect.mjs +8 -0
  3225. package/node_modules/typebox/build/type/engine/record/from_key_literal.d.mts +11 -0
  3226. package/node_modules/typebox/build/type/engine/record/from_key_literal.mjs +10 -0
  3227. package/node_modules/typebox/build/type/engine/record/from_key_number.d.mts +5 -0
  3228. package/node_modules/typebox/build/type/engine/record/from_key_number.mjs +7 -0
  3229. package/node_modules/typebox/build/type/engine/record/from_key_string.d.mts +5 -0
  3230. package/node_modules/typebox/build/type/engine/record/from_key_string.mjs +12 -0
  3231. package/node_modules/typebox/build/type/engine/record/from_key_template_literal.d.mts +8 -0
  3232. package/node_modules/typebox/build/type/engine/record/from_key_template_literal.mjs +12 -0
  3233. package/node_modules/typebox/build/type/engine/record/from_key_union.d.mts +20 -0
  3234. package/node_modules/typebox/build/type/engine/record/from_key_union.mjs +39 -0
  3235. package/node_modules/typebox/build/type/engine/record/index.d.mts +1 -0
  3236. package/node_modules/typebox/build/type/engine/record/index.mjs +1 -0
  3237. package/node_modules/typebox/build/type/engine/record/instantiate.d.mts +9 -0
  3238. package/node_modules/typebox/build/type/engine/record/instantiate.mjs +17 -0
  3239. package/node_modules/typebox/build/type/engine/record/record_create.d.mts +3 -0
  3240. package/node_modules/typebox/build/type/engine/record/record_create.mjs +7 -0
  3241. package/node_modules/typebox/build/type/engine/ref/index.d.mts +1 -0
  3242. package/node_modules/typebox/build/type/engine/ref/index.mjs +1 -0
  3243. package/node_modules/typebox/build/type/engine/ref/instantiate.d.mts +6 -0
  3244. package/node_modules/typebox/build/type/engine/ref/instantiate.mjs +10 -0
  3245. package/node_modules/typebox/build/type/engine/required/from_cyclic.d.mts +10 -0
  3246. package/node_modules/typebox/build/type/engine/required/from_cyclic.mjs +11 -0
  3247. package/node_modules/typebox/build/type/engine/required/from_dependent.d.mts +5 -0
  3248. package/node_modules/typebox/build/type/engine/required/from_dependent.mjs +8 -0
  3249. package/node_modules/typebox/build/type/engine/required/from_intersect.d.mts +5 -0
  3250. package/node_modules/typebox/build/type/engine/required/from_intersect.mjs +8 -0
  3251. package/node_modules/typebox/build/type/engine/required/from_object.d.mts +8 -0
  3252. package/node_modules/typebox/build/type/engine/required/from_object.mjs +11 -0
  3253. package/node_modules/typebox/build/type/engine/required/from_type.d.mts +14 -0
  3254. package/node_modules/typebox/build/type/engine/required/from_type.mjs +20 -0
  3255. package/node_modules/typebox/build/type/engine/required/from_union.d.mts +5 -0
  3256. package/node_modules/typebox/build/type/engine/required/from_union.mjs +7 -0
  3257. package/node_modules/typebox/build/type/engine/required/index.d.mts +1 -0
  3258. package/node_modules/typebox/build/type/engine/required/index.mjs +1 -0
  3259. package/node_modules/typebox/build/type/engine/required/instantiate.d.mts +9 -0
  3260. package/node_modules/typebox/build/type/engine/required/instantiate.mjs +15 -0
  3261. package/node_modules/typebox/build/type/engine/rest/index.d.mts +1 -0
  3262. package/node_modules/typebox/build/type/engine/rest/index.mjs +1 -0
  3263. package/node_modules/typebox/build/type/engine/rest/spread.d.mts +12 -0
  3264. package/node_modules/typebox/build/type/engine/rest/spread.mjs +19 -0
  3265. package/node_modules/typebox/build/type/engine/return_type/index.d.mts +1 -0
  3266. package/node_modules/typebox/build/type/engine/return_type/index.mjs +1 -0
  3267. package/node_modules/typebox/build/type/engine/return_type/instantiate.d.mts +12 -0
  3268. package/node_modules/typebox/build/type/engine/return_type/instantiate.mjs +21 -0
  3269. package/node_modules/typebox/build/type/engine/template_literal/create.d.mts +1 -0
  3270. package/node_modules/typebox/build/type/engine/template_literal/create.mjs +5 -0
  3271. package/node_modules/typebox/build/type/engine/template_literal/decode.d.mts +30 -0
  3272. package/node_modules/typebox/build/type/engine/template_literal/decode.mjs +81 -0
  3273. package/node_modules/typebox/build/type/engine/template_literal/encode.d.mts +33 -0
  3274. package/node_modules/typebox/build/type/engine/template_literal/encode.mjs +81 -0
  3275. package/node_modules/typebox/build/type/engine/template_literal/index.d.mts +6 -0
  3276. package/node_modules/typebox/build/type/engine/template_literal/index.mjs +6 -0
  3277. package/node_modules/typebox/build/type/engine/template_literal/instantiate.d.mts +9 -0
  3278. package/node_modules/typebox/build/type/engine/template_literal/instantiate.mjs +15 -0
  3279. package/node_modules/typebox/build/type/engine/template_literal/is_finite.d.mts +12 -0
  3280. package/node_modules/typebox/build/type/engine/template_literal/is_finite.mjs +26 -0
  3281. package/node_modules/typebox/build/type/engine/template_literal/is_pattern.d.mts +6 -0
  3282. package/node_modules/typebox/build/type/engine/template_literal/is_pattern.mjs +10 -0
  3283. package/node_modules/typebox/build/type/engine/template_literal/static.d.mts +18 -0
  3284. package/node_modules/typebox/build/type/engine/template_literal/static.mjs +2 -0
  3285. package/node_modules/typebox/build/type/engine/this/expand_this.d.mts +19 -0
  3286. package/node_modules/typebox/build/type/engine/this/expand_this.mjs +32 -0
  3287. package/node_modules/typebox/build/type/engine/tuple/to_object.d.mts +12 -0
  3288. package/node_modules/typebox/build/type/engine/tuple/to_object.mjs +14 -0
  3289. package/node_modules/typebox/build/type/engine/with/index.d.mts +1 -0
  3290. package/node_modules/typebox/build/type/engine/with/index.mjs +1 -0
  3291. package/node_modules/typebox/build/type/engine/with/instantiate.d.mts +8 -0
  3292. package/node_modules/typebox/build/type/engine/with/instantiate.mjs +14 -0
  3293. package/node_modules/typebox/build/type/extends/any.d.mts +9 -0
  3294. package/node_modules/typebox/build/type/extends/any.mjs +12 -0
  3295. package/node_modules/typebox/build/type/extends/array.d.mts +20 -0
  3296. package/node_modules/typebox/build/type/extends/array.mjs +21 -0
  3297. package/node_modules/typebox/build/type/extends/async_iterator.d.mts +7 -0
  3298. package/node_modules/typebox/build/type/extends/async_iterator.mjs +9 -0
  3299. package/node_modules/typebox/build/type/extends/bigint.d.mts +7 -0
  3300. package/node_modules/typebox/build/type/extends/bigint.mjs +9 -0
  3301. package/node_modules/typebox/build/type/extends/boolean.d.mts +7 -0
  3302. package/node_modules/typebox/build/type/extends/boolean.mjs +9 -0
  3303. package/node_modules/typebox/build/type/extends/constructor.d.mts +10 -0
  3304. package/node_modules/typebox/build/type/extends/constructor.mjs +17 -0
  3305. package/node_modules/typebox/build/type/extends/dependent.d.mts +6 -0
  3306. package/node_modules/typebox/build/type/extends/dependent.mjs +6 -0
  3307. package/node_modules/typebox/build/type/extends/enum.d.mts +7 -0
  3308. package/node_modules/typebox/build/type/extends/enum.mjs +7 -0
  3309. package/node_modules/typebox/build/type/extends/extends.d.mts +13 -0
  3310. package/node_modules/typebox/build/type/extends/extends.mjs +17 -0
  3311. package/node_modules/typebox/build/type/extends/extends_left.d.mts +57 -0
  3312. package/node_modules/typebox/build/type/extends/extends_left.mjs +86 -0
  3313. package/node_modules/typebox/build/type/extends/extends_right.d.mts +27 -0
  3314. package/node_modules/typebox/build/type/extends/extends_right.mjs +49 -0
  3315. package/node_modules/typebox/build/type/extends/function.d.mts +10 -0
  3316. package/node_modules/typebox/build/type/extends/function.mjs +17 -0
  3317. package/node_modules/typebox/build/type/extends/index.d.mts +2 -0
  3318. package/node_modules/typebox/build/type/extends/index.mjs +2 -0
  3319. package/node_modules/typebox/build/type/extends/inference.d.mts +34 -0
  3320. package/node_modules/typebox/build/type/extends/inference.mjs +62 -0
  3321. package/node_modules/typebox/build/type/extends/integer.d.mts +8 -0
  3322. package/node_modules/typebox/build/type/extends/integer.mjs +10 -0
  3323. package/node_modules/typebox/build/type/extends/intersect.d.mts +6 -0
  3324. package/node_modules/typebox/build/type/extends/intersect.mjs +15 -0
  3325. package/node_modules/typebox/build/type/extends/iterator.d.mts +7 -0
  3326. package/node_modules/typebox/build/type/extends/iterator.mjs +9 -0
  3327. package/node_modules/typebox/build/type/extends/literal.d.mts +18 -0
  3328. package/node_modules/typebox/build/type/extends/literal.mjs +44 -0
  3329. package/node_modules/typebox/build/type/extends/never.d.mts +8 -0
  3330. package/node_modules/typebox/build/type/extends/never.mjs +9 -0
  3331. package/node_modules/typebox/build/type/extends/null.d.mts +7 -0
  3332. package/node_modules/typebox/build/type/extends/null.mjs +9 -0
  3333. package/node_modules/typebox/build/type/extends/number.d.mts +7 -0
  3334. package/node_modules/typebox/build/type/extends/number.mjs +9 -0
  3335. package/node_modules/typebox/build/type/extends/object.d.mts +25 -0
  3336. package/node_modules/typebox/build/type/extends/object.mjs +87 -0
  3337. package/node_modules/typebox/build/type/extends/parameters.d.mts +15 -0
  3338. package/node_modules/typebox/build/type/extends/parameters.mjs +28 -0
  3339. package/node_modules/typebox/build/type/extends/promise.d.mts +7 -0
  3340. package/node_modules/typebox/build/type/extends/promise.mjs +9 -0
  3341. package/node_modules/typebox/build/type/extends/result.d.mts +24 -0
  3342. package/node_modules/typebox/build/type/extends/result.mjs +36 -0
  3343. package/node_modules/typebox/build/type/extends/return_type.d.mts +7 -0
  3344. package/node_modules/typebox/build/type/extends/return_type.mjs +9 -0
  3345. package/node_modules/typebox/build/type/extends/string.d.mts +7 -0
  3346. package/node_modules/typebox/build/type/extends/string.mjs +9 -0
  3347. package/node_modules/typebox/build/type/extends/symbol.d.mts +7 -0
  3348. package/node_modules/typebox/build/type/extends/symbol.mjs +9 -0
  3349. package/node_modules/typebox/build/type/extends/template_literal.d.mts +6 -0
  3350. package/node_modules/typebox/build/type/extends/template_literal.mjs +7 -0
  3351. package/node_modules/typebox/build/type/extends/tuple.d.mts +22 -0
  3352. package/node_modules/typebox/build/type/extends/tuple.mjs +61 -0
  3353. package/node_modules/typebox/build/type/extends/undefined.d.mts +8 -0
  3354. package/node_modules/typebox/build/type/extends/undefined.mjs +10 -0
  3355. package/node_modules/typebox/build/type/extends/union.d.mts +11 -0
  3356. package/node_modules/typebox/build/type/extends/union.mjs +24 -0
  3357. package/node_modules/typebox/build/type/extends/unknown.d.mts +9 -0
  3358. package/node_modules/typebox/build/type/extends/unknown.mjs +12 -0
  3359. package/node_modules/typebox/build/type/extends/void.d.mts +7 -0
  3360. package/node_modules/typebox/build/type/extends/void.mjs +9 -0
  3361. package/node_modules/typebox/build/type/index.d.mts +5 -0
  3362. package/node_modules/typebox/build/type/index.mjs +5 -0
  3363. package/node_modules/typebox/build/type/script/index.d.mts +1 -0
  3364. package/node_modules/typebox/build/type/script/index.mjs +1 -0
  3365. package/node_modules/typebox/build/type/script/mapping.d.mts +365 -0
  3366. package/node_modules/typebox/build/type/script/mapping.mjs +539 -0
  3367. package/node_modules/typebox/build/type/script/parser.d.mts +262 -0
  3368. package/node_modules/typebox/build/type/script/parser.mjs +136 -0
  3369. package/node_modules/typebox/build/type/script/script.d.mts +16 -0
  3370. package/node_modules/typebox/build/type/script/script.mjs +22 -0
  3371. package/node_modules/typebox/build/type/script/token/bigint.d.mts +8 -0
  3372. package/node_modules/typebox/build/type/script/token/bigint.mjs +14 -0
  3373. package/node_modules/typebox/build/type/script/token/const.d.mts +11 -0
  3374. package/node_modules/typebox/build/type/script/token/const.mjs +18 -0
  3375. package/node_modules/typebox/build/type/script/token/ident.d.mts +16 -0
  3376. package/node_modules/typebox/build/type/script/token/ident.mjs +26 -0
  3377. package/node_modules/typebox/build/type/script/token/index.d.mts +12 -0
  3378. package/node_modules/typebox/build/type/script/token/index.mjs +12 -0
  3379. package/node_modules/typebox/build/type/script/token/integer.d.mts +11 -0
  3380. package/node_modules/typebox/build/type/script/token/integer.mjs +19 -0
  3381. package/node_modules/typebox/build/type/script/token/internal/char.d.mts +75 -0
  3382. package/node_modules/typebox/build/type/script/token/internal/char.mjs +26 -0
  3383. package/node_modules/typebox/build/type/script/token/internal/guard.d.mts +1 -0
  3384. package/node_modules/typebox/build/type/script/token/internal/guard.mjs +15 -0
  3385. package/node_modules/typebox/build/type/script/token/internal/many.d.mts +7 -0
  3386. package/node_modules/typebox/build/type/script/token/internal/many.mjs +14 -0
  3387. package/node_modules/typebox/build/type/script/token/internal/match.d.mts +6 -0
  3388. package/node_modules/typebox/build/type/script/token/internal/match.mjs +11 -0
  3389. package/node_modules/typebox/build/type/script/token/internal/optional.d.mts +5 -0
  3390. package/node_modules/typebox/build/type/script/token/internal/optional.mjs +9 -0
  3391. package/node_modules/typebox/build/type/script/token/internal/take.d.mts +6 -0
  3392. package/node_modules/typebox/build/type/script/token/internal/take.mjs +30 -0
  3393. package/node_modules/typebox/build/type/script/token/internal/trim.d.mts +19 -0
  3394. package/node_modules/typebox/build/type/script/token/internal/trim.mjs +34 -0
  3395. package/node_modules/typebox/build/type/script/token/number.d.mts +11 -0
  3396. package/node_modules/typebox/build/type/script/token/number.mjs +19 -0
  3397. package/node_modules/typebox/build/type/script/token/rest.d.mts +4 -0
  3398. package/node_modules/typebox/build/type/script/token/rest.mjs +9 -0
  3399. package/node_modules/typebox/build/type/script/token/span.d.mts +11 -0
  3400. package/node_modules/typebox/build/type/script/token/span.mjs +24 -0
  3401. package/node_modules/typebox/build/type/script/token/string.d.mts +11 -0
  3402. package/node_modules/typebox/build/type/script/token/string.mjs +20 -0
  3403. package/node_modules/typebox/build/type/script/token/unsigned_integer.d.mts +16 -0
  3404. package/node_modules/typebox/build/type/script/token/unsigned_integer.mjs +26 -0
  3405. package/node_modules/typebox/build/type/script/token/unsigned_number.d.mts +17 -0
  3406. package/node_modules/typebox/build/type/script/token/unsigned_number.mjs +38 -0
  3407. package/node_modules/typebox/build/type/script/token/until.d.mts +7 -0
  3408. package/node_modules/typebox/build/type/script/token/until.mjs +21 -0
  3409. package/node_modules/typebox/build/type/script/token/until_1.d.mts +5 -0
  3410. package/node_modules/typebox/build/type/script/token/until_1.mjs +12 -0
  3411. package/node_modules/typebox/build/type/types/_codec.d.mts +30 -0
  3412. package/node_modules/typebox/build/type/types/_codec.mjs +61 -0
  3413. package/node_modules/typebox/build/type/types/_immutable.d.mts +9 -0
  3414. package/node_modules/typebox/build/type/types/_immutable.mjs +18 -0
  3415. package/node_modules/typebox/build/type/types/_optional.d.mts +9 -0
  3416. package/node_modules/typebox/build/type/types/_optional.mjs +18 -0
  3417. package/node_modules/typebox/build/type/types/_readonly.d.mts +9 -0
  3418. package/node_modules/typebox/build/type/types/_readonly.mjs +18 -0
  3419. package/node_modules/typebox/build/type/types/_refine.d.mts +26 -0
  3420. package/node_modules/typebox/build/type/types/_refine.mjs +37 -0
  3421. package/node_modules/typebox/build/type/types/any.d.mts +10 -0
  3422. package/node_modules/typebox/build/type/types/any.mjs +18 -0
  3423. package/node_modules/typebox/build/type/types/array.d.mts +18 -0
  3424. package/node_modules/typebox/build/type/types/array.mjs +25 -0
  3425. package/node_modules/typebox/build/type/types/async_iterator.d.mts +20 -0
  3426. package/node_modules/typebox/build/type/types/async_iterator.mjs +28 -0
  3427. package/node_modules/typebox/build/type/types/base.d.mts +50 -0
  3428. package/node_modules/typebox/build/type/types/base.mjs +84 -0
  3429. package/node_modules/typebox/build/type/types/bigint.d.mts +12 -0
  3430. package/node_modules/typebox/build/type/types/bigint.mjs +21 -0
  3431. package/node_modules/typebox/build/type/types/boolean.d.mts +11 -0
  3432. package/node_modules/typebox/build/type/types/boolean.mjs +17 -0
  3433. package/node_modules/typebox/build/type/types/call.d.mts +16 -0
  3434. package/node_modules/typebox/build/type/types/call.mjs +23 -0
  3435. package/node_modules/typebox/build/type/types/constructor.d.mts +18 -0
  3436. package/node_modules/typebox/build/type/types/constructor.mjs +24 -0
  3437. package/node_modules/typebox/build/type/types/cyclic.d.mts +16 -0
  3438. package/node_modules/typebox/build/type/types/cyclic.mjs +29 -0
  3439. package/node_modules/typebox/build/type/types/deferred.d.mts +13 -0
  3440. package/node_modules/typebox/build/type/types/deferred.mjs +16 -0
  3441. package/node_modules/typebox/build/type/types/dependent.d.mts +17 -0
  3442. package/node_modules/typebox/build/type/types/dependent.mjs +24 -0
  3443. package/node_modules/typebox/build/type/types/enum.d.mts +16 -0
  3444. package/node_modules/typebox/build/type/types/enum.mjs +17 -0
  3445. package/node_modules/typebox/build/type/types/function.d.mts +21 -0
  3446. package/node_modules/typebox/build/type/types/function.mjs +25 -0
  3447. package/node_modules/typebox/build/type/types/generic.d.mts +13 -0
  3448. package/node_modules/typebox/build/type/types/generic.mjs +17 -0
  3449. package/node_modules/typebox/build/type/types/identifier.d.mts +11 -0
  3450. package/node_modules/typebox/build/type/types/identifier.mjs +17 -0
  3451. package/node_modules/typebox/build/type/types/index.d.mts +49 -0
  3452. package/node_modules/typebox/build/type/types/index.mjs +55 -0
  3453. package/node_modules/typebox/build/type/types/infer.d.mts +15 -0
  3454. package/node_modules/typebox/build/type/types/infer.mjs +20 -0
  3455. package/node_modules/typebox/build/type/types/integer.d.mts +12 -0
  3456. package/node_modules/typebox/build/type/types/integer.mjs +21 -0
  3457. package/node_modules/typebox/build/type/types/intersect.d.mts +15 -0
  3458. package/node_modules/typebox/build/type/types/intersect.mjs +24 -0
  3459. package/node_modules/typebox/build/type/types/iterator.d.mts +20 -0
  3460. package/node_modules/typebox/build/type/types/iterator.mjs +28 -0
  3461. package/node_modules/typebox/build/type/types/literal.d.mts +31 -0
  3462. package/node_modules/typebox/build/type/types/literal.mjs +62 -0
  3463. package/node_modules/typebox/build/type/types/never.d.mts +12 -0
  3464. package/node_modules/typebox/build/type/types/never.mjs +22 -0
  3465. package/node_modules/typebox/build/type/types/null.d.mts +11 -0
  3466. package/node_modules/typebox/build/type/types/null.mjs +17 -0
  3467. package/node_modules/typebox/build/type/types/number.d.mts +12 -0
  3468. package/node_modules/typebox/build/type/types/number.mjs +21 -0
  3469. package/node_modules/typebox/build/type/types/object.d.mts +18 -0
  3470. package/node_modules/typebox/build/type/types/object.mjs +28 -0
  3471. package/node_modules/typebox/build/type/types/parameter.d.mts +17 -0
  3472. package/node_modules/typebox/build/type/types/parameter.mjs +21 -0
  3473. package/node_modules/typebox/build/type/types/promise.d.mts +21 -0
  3474. package/node_modules/typebox/build/type/types/promise.mjs +29 -0
  3475. package/node_modules/typebox/build/type/types/properties.d.mts +43 -0
  3476. package/node_modules/typebox/build/type/types/properties.mjs +15 -0
  3477. package/node_modules/typebox/build/type/types/record.d.mts +46 -0
  3478. package/node_modules/typebox/build/type/types/record.mjs +60 -0
  3479. package/node_modules/typebox/build/type/types/ref.d.mts +19 -0
  3480. package/node_modules/typebox/build/type/types/ref.mjs +18 -0
  3481. package/node_modules/typebox/build/type/types/rest.d.mts +11 -0
  3482. package/node_modules/typebox/build/type/types/rest.mjs +17 -0
  3483. package/node_modules/typebox/build/type/types/schema.d.mts +176 -0
  3484. package/node_modules/typebox/build/type/types/schema.mjs +15 -0
  3485. package/node_modules/typebox/build/type/types/static.d.mts +49 -0
  3486. package/node_modules/typebox/build/type/types/static.mjs +3 -0
  3487. package/node_modules/typebox/build/type/types/string.d.mts +12 -0
  3488. package/node_modules/typebox/build/type/types/string.mjs +22 -0
  3489. package/node_modules/typebox/build/type/types/symbol.d.mts +11 -0
  3490. package/node_modules/typebox/build/type/types/symbol.mjs +17 -0
  3491. package/node_modules/typebox/build/type/types/template_literal.d.mts +28 -0
  3492. package/node_modules/typebox/build/type/types/template_literal.mjs +37 -0
  3493. package/node_modules/typebox/build/type/types/this.d.mts +14 -0
  3494. package/node_modules/typebox/build/type/types/this.mjs +17 -0
  3495. package/node_modules/typebox/build/type/types/tuple.d.mts +38 -0
  3496. package/node_modules/typebox/build/type/types/tuple.mjs +25 -0
  3497. package/node_modules/typebox/build/type/types/undefined.d.mts +11 -0
  3498. package/node_modules/typebox/build/type/types/undefined.mjs +17 -0
  3499. package/node_modules/typebox/build/type/types/union.d.mts +15 -0
  3500. package/node_modules/typebox/build/type/types/union.mjs +24 -0
  3501. package/node_modules/typebox/build/type/types/unknown.d.mts +10 -0
  3502. package/node_modules/typebox/build/type/types/unknown.mjs +17 -0
  3503. package/node_modules/typebox/build/type/types/unsafe.d.mts +10 -0
  3504. package/node_modules/typebox/build/type/types/unsafe.mjs +20 -0
  3505. package/node_modules/typebox/build/type/types/void.d.mts +11 -0
  3506. package/node_modules/typebox/build/type/types/void.mjs +17 -0
  3507. package/node_modules/typebox/build/typebox.d.mts +74 -0
  3508. package/node_modules/typebox/build/typebox.mjs +90 -0
  3509. package/node_modules/typebox/build/value/assert/assert.d.mts +14 -0
  3510. package/node_modules/typebox/build/value/assert/assert.mjs +28 -0
  3511. package/node_modules/typebox/build/value/assert/index.d.mts +1 -0
  3512. package/node_modules/typebox/build/value/assert/index.mjs +1 -0
  3513. package/node_modules/typebox/build/value/check/check.d.mts +5 -0
  3514. package/node_modules/typebox/build/value/check/check.mjs +11 -0
  3515. package/node_modules/typebox/build/value/check/index.d.mts +1 -0
  3516. package/node_modules/typebox/build/value/check/index.mjs +1 -0
  3517. package/node_modules/typebox/build/value/clean/additional.d.mts +2 -0
  3518. package/node_modules/typebox/build/value/clean/additional.mjs +6 -0
  3519. package/node_modules/typebox/build/value/clean/clean.d.mts +15 -0
  3520. package/node_modules/typebox/build/value/clean/clean.mjs +15 -0
  3521. package/node_modules/typebox/build/value/clean/from_array.d.mts +2 -0
  3522. package/node_modules/typebox/build/value/clean/from_array.mjs +8 -0
  3523. package/node_modules/typebox/build/value/clean/from_base.d.mts +2 -0
  3524. package/node_modules/typebox/build/value/clean/from_base.mjs +4 -0
  3525. package/node_modules/typebox/build/value/clean/from_cyclic.d.mts +2 -0
  3526. package/node_modules/typebox/build/value/clean/from_cyclic.mjs +6 -0
  3527. package/node_modules/typebox/build/value/clean/from_intersect.d.mts +2 -0
  3528. package/node_modules/typebox/build/value/clean/from_intersect.mjs +26 -0
  3529. package/node_modules/typebox/build/value/clean/from_object.d.mts +2 -0
  3530. package/node_modules/typebox/build/value/clean/from_object.mjs +31 -0
  3531. package/node_modules/typebox/build/value/clean/from_record.d.mts +2 -0
  3532. package/node_modules/typebox/build/value/clean/from_record.mjs +32 -0
  3533. package/node_modules/typebox/build/value/clean/from_ref.d.mts +2 -0
  3534. package/node_modules/typebox/build/value/clean/from_ref.mjs +8 -0
  3535. package/node_modules/typebox/build/value/clean/from_tuple.d.mts +2 -0
  3536. package/node_modules/typebox/build/value/clean/from_tuple.mjs +14 -0
  3537. package/node_modules/typebox/build/value/clean/from_type.d.mts +2 -0
  3538. package/node_modules/typebox/build/value/clean/from_type.mjs +23 -0
  3539. package/node_modules/typebox/build/value/clean/from_union.d.mts +2 -0
  3540. package/node_modules/typebox/build/value/clean/from_union.mjs +13 -0
  3541. package/node_modules/typebox/build/value/clean/index.d.mts +1 -0
  3542. package/node_modules/typebox/build/value/clean/index.mjs +1 -0
  3543. package/node_modules/typebox/build/value/clone/clone.d.mts +5 -0
  3544. package/node_modules/typebox/build/value/clone/clone.mjs +97 -0
  3545. package/node_modules/typebox/build/value/clone/index.d.mts +1 -0
  3546. package/node_modules/typebox/build/value/clone/index.mjs +1 -0
  3547. package/node_modules/typebox/build/value/codec/callback.d.mts +2 -0
  3548. package/node_modules/typebox/build/value/codec/callback.mjs +25 -0
  3549. package/node_modules/typebox/build/value/codec/decode.d.mts +12 -0
  3550. package/node_modules/typebox/build/value/codec/decode.mjs +50 -0
  3551. package/node_modules/typebox/build/value/codec/encode.d.mts +12 -0
  3552. package/node_modules/typebox/build/value/codec/encode.mjs +50 -0
  3553. package/node_modules/typebox/build/value/codec/from_array.d.mts +2 -0
  3554. package/node_modules/typebox/build/value/codec/from_array.mjs +38 -0
  3555. package/node_modules/typebox/build/value/codec/from_cyclic.d.mts +2 -0
  3556. package/node_modules/typebox/build/value/codec/from_cyclic.mjs +8 -0
  3557. package/node_modules/typebox/build/value/codec/from_intersect.d.mts +2 -0
  3558. package/node_modules/typebox/build/value/codec/from_intersect.mjs +58 -0
  3559. package/node_modules/typebox/build/value/codec/from_object.d.mts +2 -0
  3560. package/node_modules/typebox/build/value/codec/from_object.mjs +45 -0
  3561. package/node_modules/typebox/build/value/codec/from_record.d.mts +2 -0
  3562. package/node_modules/typebox/build/value/codec/from_record.mjs +44 -0
  3563. package/node_modules/typebox/build/value/codec/from_ref.d.mts +2 -0
  3564. package/node_modules/typebox/build/value/codec/from_ref.mjs +31 -0
  3565. package/node_modules/typebox/build/value/codec/from_tuple.d.mts +2 -0
  3566. package/node_modules/typebox/build/value/codec/from_tuple.mjs +35 -0
  3567. package/node_modules/typebox/build/value/codec/from_type.d.mts +2 -0
  3568. package/node_modules/typebox/build/value/codec/from_type.mjs +22 -0
  3569. package/node_modules/typebox/build/value/codec/from_union.d.mts +2 -0
  3570. package/node_modules/typebox/build/value/codec/from_union.mjs +40 -0
  3571. package/node_modules/typebox/build/value/codec/has.d.mts +5 -0
  3572. package/node_modules/typebox/build/value/codec/has.mjs +93 -0
  3573. package/node_modules/typebox/build/value/codec/index.d.mts +3 -0
  3574. package/node_modules/typebox/build/value/codec/index.mjs +3 -0
  3575. package/node_modules/typebox/build/value/convert/convert.d.mts +13 -0
  3576. package/node_modules/typebox/build/value/convert/convert.mjs +15 -0
  3577. package/node_modules/typebox/build/value/convert/from_additional.d.mts +6 -0
  3578. package/node_modules/typebox/build/value/convert/from_additional.mjs +18 -0
  3579. package/node_modules/typebox/build/value/convert/from_array.d.mts +2 -0
  3580. package/node_modules/typebox/build/value/convert/from_array.mjs +7 -0
  3581. package/node_modules/typebox/build/value/convert/from_base.d.mts +2 -0
  3582. package/node_modules/typebox/build/value/convert/from_base.mjs +4 -0
  3583. package/node_modules/typebox/build/value/convert/from_bigint.d.mts +2 -0
  3584. package/node_modules/typebox/build/value/convert/from_bigint.mjs +6 -0
  3585. package/node_modules/typebox/build/value/convert/from_boolean.d.mts +2 -0
  3586. package/node_modules/typebox/build/value/convert/from_boolean.mjs +6 -0
  3587. package/node_modules/typebox/build/value/convert/from_cyclic.d.mts +2 -0
  3588. package/node_modules/typebox/build/value/convert/from_cyclic.mjs +6 -0
  3589. package/node_modules/typebox/build/value/convert/from_enum.d.mts +2 -0
  3590. package/node_modules/typebox/build/value/convert/from_enum.mjs +6 -0
  3591. package/node_modules/typebox/build/value/convert/from_integer.d.mts +2 -0
  3592. package/node_modules/typebox/build/value/convert/from_integer.mjs +6 -0
  3593. package/node_modules/typebox/build/value/convert/from_intersect.d.mts +2 -0
  3594. package/node_modules/typebox/build/value/convert/from_intersect.mjs +8 -0
  3595. package/node_modules/typebox/build/value/convert/from_literal.d.mts +2 -0
  3596. package/node_modules/typebox/build/value/convert/from_literal.mjs +44 -0
  3597. package/node_modules/typebox/build/value/convert/from_null.d.mts +2 -0
  3598. package/node_modules/typebox/build/value/convert/from_null.mjs +6 -0
  3599. package/node_modules/typebox/build/value/convert/from_number.d.mts +2 -0
  3600. package/node_modules/typebox/build/value/convert/from_number.mjs +6 -0
  3601. package/node_modules/typebox/build/value/convert/from_object.d.mts +2 -0
  3602. package/node_modules/typebox/build/value/convert/from_object.mjs +28 -0
  3603. package/node_modules/typebox/build/value/convert/from_record.d.mts +2 -0
  3604. package/node_modules/typebox/build/value/convert/from_record.mjs +23 -0
  3605. package/node_modules/typebox/build/value/convert/from_ref.d.mts +2 -0
  3606. package/node_modules/typebox/build/value/convert/from_ref.mjs +8 -0
  3607. package/node_modules/typebox/build/value/convert/from_string.d.mts +2 -0
  3608. package/node_modules/typebox/build/value/convert/from_string.mjs +6 -0
  3609. package/node_modules/typebox/build/value/convert/from_template_literal.d.mts +2 -0
  3610. package/node_modules/typebox/build/value/convert/from_template_literal.mjs +6 -0
  3611. package/node_modules/typebox/build/value/convert/from_tuple.d.mts +2 -0
  3612. package/node_modules/typebox/build/value/convert/from_tuple.mjs +11 -0
  3613. package/node_modules/typebox/build/value/convert/from_type.d.mts +2 -0
  3614. package/node_modules/typebox/build/value/convert/from_type.mjs +45 -0
  3615. package/node_modules/typebox/build/value/convert/from_undefined.d.mts +2 -0
  3616. package/node_modules/typebox/build/value/convert/from_undefined.mjs +6 -0
  3617. package/node_modules/typebox/build/value/convert/from_union.d.mts +2 -0
  3618. package/node_modules/typebox/build/value/convert/from_union.mjs +13 -0
  3619. package/node_modules/typebox/build/value/convert/from_void.d.mts +2 -0
  3620. package/node_modules/typebox/build/value/convert/from_void.mjs +6 -0
  3621. package/node_modules/typebox/build/value/convert/index.d.mts +1 -0
  3622. package/node_modules/typebox/build/value/convert/index.mjs +1 -0
  3623. package/node_modules/typebox/build/value/convert/try/index.d.mts +1 -0
  3624. package/node_modules/typebox/build/value/convert/try/index.mjs +1 -0
  3625. package/node_modules/typebox/build/value/convert/try/try.d.mts +8 -0
  3626. package/node_modules/typebox/build/value/convert/try/try.mjs +8 -0
  3627. package/node_modules/typebox/build/value/convert/try/try_array.d.mts +2 -0
  3628. package/node_modules/typebox/build/value/convert/try/try_array.mjs +6 -0
  3629. package/node_modules/typebox/build/value/convert/try/try_bigint.d.mts +2 -0
  3630. package/node_modules/typebox/build/value/convert/try/try_bigint.mjs +45 -0
  3631. package/node_modules/typebox/build/value/convert/try/try_boolean.d.mts +2 -0
  3632. package/node_modules/typebox/build/value/convert/try/try_boolean.mjs +41 -0
  3633. package/node_modules/typebox/build/value/convert/try/try_null.d.mts +2 -0
  3634. package/node_modules/typebox/build/value/convert/try/try_null.mjs +44 -0
  3635. package/node_modules/typebox/build/value/convert/try/try_number.d.mts +2 -0
  3636. package/node_modules/typebox/build/value/convert/try/try_number.mjs +44 -0
  3637. package/node_modules/typebox/build/value/convert/try/try_result.d.mts +8 -0
  3638. package/node_modules/typebox/build/value/convert/try/try_result.mjs +17 -0
  3639. package/node_modules/typebox/build/value/convert/try/try_string.d.mts +2 -0
  3640. package/node_modules/typebox/build/value/convert/try/try_string.mjs +12 -0
  3641. package/node_modules/typebox/build/value/convert/try/try_undefined.d.mts +2 -0
  3642. package/node_modules/typebox/build/value/convert/try/try_undefined.mjs +44 -0
  3643. package/node_modules/typebox/build/value/create/create.d.mts +5 -0
  3644. package/node_modules/typebox/build/value/create/create.mjs +11 -0
  3645. package/node_modules/typebox/build/value/create/error.d.mts +5 -0
  3646. package/node_modules/typebox/build/value/create/error.mjs +7 -0
  3647. package/node_modules/typebox/build/value/create/from_array.d.mts +2 -0
  3648. package/node_modules/typebox/build/value/create/from_array.mjs +10 -0
  3649. package/node_modules/typebox/build/value/create/from_async_iterator.d.mts +2 -0
  3650. package/node_modules/typebox/build/value/create/from_async_iterator.mjs +5 -0
  3651. package/node_modules/typebox/build/value/create/from_base.d.mts +2 -0
  3652. package/node_modules/typebox/build/value/create/from_base.mjs +4 -0
  3653. package/node_modules/typebox/build/value/create/from_bigint.d.mts +2 -0
  3654. package/node_modules/typebox/build/value/create/from_bigint.mjs +7 -0
  3655. package/node_modules/typebox/build/value/create/from_boolean.d.mts +2 -0
  3656. package/node_modules/typebox/build/value/create/from_boolean.mjs +4 -0
  3657. package/node_modules/typebox/build/value/create/from_constructor.d.mts +2 -0
  3658. package/node_modules/typebox/build/value/create/from_constructor.mjs +10 -0
  3659. package/node_modules/typebox/build/value/create/from_cyclic.d.mts +2 -0
  3660. package/node_modules/typebox/build/value/create/from_cyclic.mjs +6 -0
  3661. package/node_modules/typebox/build/value/create/from_default.d.mts +3 -0
  3662. package/node_modules/typebox/build/value/create/from_default.mjs +10 -0
  3663. package/node_modules/typebox/build/value/create/from_enum.d.mts +2 -0
  3664. package/node_modules/typebox/build/value/create/from_enum.mjs +6 -0
  3665. package/node_modules/typebox/build/value/create/from_function.d.mts +2 -0
  3666. package/node_modules/typebox/build/value/create/from_function.mjs +6 -0
  3667. package/node_modules/typebox/build/value/create/from_integer.d.mts +2 -0
  3668. package/node_modules/typebox/build/value/create/from_integer.mjs +8 -0
  3669. package/node_modules/typebox/build/value/create/from_intersect.d.mts +2 -0
  3670. package/node_modules/typebox/build/value/create/from_intersect.mjs +8 -0
  3671. package/node_modules/typebox/build/value/create/from_iterator.d.mts +2 -0
  3672. package/node_modules/typebox/build/value/create/from_iterator.mjs +5 -0
  3673. package/node_modules/typebox/build/value/create/from_literal.d.mts +2 -0
  3674. package/node_modules/typebox/build/value/create/from_literal.mjs +4 -0
  3675. package/node_modules/typebox/build/value/create/from_never.d.mts +2 -0
  3676. package/node_modules/typebox/build/value/create/from_never.mjs +5 -0
  3677. package/node_modules/typebox/build/value/create/from_null.d.mts +2 -0
  3678. package/node_modules/typebox/build/value/create/from_null.mjs +4 -0
  3679. package/node_modules/typebox/build/value/create/from_number.d.mts +2 -0
  3680. package/node_modules/typebox/build/value/create/from_number.mjs +8 -0
  3681. package/node_modules/typebox/build/value/create/from_object.d.mts +2 -0
  3682. package/node_modules/typebox/build/value/create/from_object.mjs +9 -0
  3683. package/node_modules/typebox/build/value/create/from_promise.d.mts +2 -0
  3684. package/node_modules/typebox/build/value/create/from_promise.mjs +5 -0
  3685. package/node_modules/typebox/build/value/create/from_record.d.mts +2 -0
  3686. package/node_modules/typebox/build/value/create/from_record.mjs +8 -0
  3687. package/node_modules/typebox/build/value/create/from_ref.d.mts +2 -0
  3688. package/node_modules/typebox/build/value/create/from_ref.mjs +9 -0
  3689. package/node_modules/typebox/build/value/create/from_string.d.mts +2 -0
  3690. package/node_modules/typebox/build/value/create/from_string.mjs +9 -0
  3691. package/node_modules/typebox/build/value/create/from_symbol.d.mts +2 -0
  3692. package/node_modules/typebox/build/value/create/from_symbol.mjs +4 -0
  3693. package/node_modules/typebox/build/value/create/from_template_literal.d.mts +2 -0
  3694. package/node_modules/typebox/build/value/create/from_template_literal.mjs +11 -0
  3695. package/node_modules/typebox/build/value/create/from_tuple.d.mts +2 -0
  3696. package/node_modules/typebox/build/value/create/from_tuple.mjs +5 -0
  3697. package/node_modules/typebox/build/value/create/from_type.d.mts +2 -0
  3698. package/node_modules/typebox/build/value/create/from_type.mjs +69 -0
  3699. package/node_modules/typebox/build/value/create/from_undefined.d.mts +2 -0
  3700. package/node_modules/typebox/build/value/create/from_undefined.mjs +4 -0
  3701. package/node_modules/typebox/build/value/create/from_union.d.mts +2 -0
  3702. package/node_modules/typebox/build/value/create/from_union.mjs +9 -0
  3703. package/node_modules/typebox/build/value/create/from_void.d.mts +2 -0
  3704. package/node_modules/typebox/build/value/create/from_void.mjs +4 -0
  3705. package/node_modules/typebox/build/value/create/index.d.mts +2 -0
  3706. package/node_modules/typebox/build/value/create/index.mjs +2 -0
  3707. package/node_modules/typebox/build/value/default/default.d.mts +13 -0
  3708. package/node_modules/typebox/build/value/default/default.mjs +15 -0
  3709. package/node_modules/typebox/build/value/default/from_array.d.mts +2 -0
  3710. package/node_modules/typebox/build/value/default/from_array.mjs +12 -0
  3711. package/node_modules/typebox/build/value/default/from_base.d.mts +2 -0
  3712. package/node_modules/typebox/build/value/default/from_base.mjs +5 -0
  3713. package/node_modules/typebox/build/value/default/from_cyclic.d.mts +2 -0
  3714. package/node_modules/typebox/build/value/default/from_cyclic.mjs +7 -0
  3715. package/node_modules/typebox/build/value/default/from_default.d.mts +3 -0
  3716. package/node_modules/typebox/build/value/default/from_default.mjs +13 -0
  3717. package/node_modules/typebox/build/value/default/from_intersect.d.mts +2 -0
  3718. package/node_modules/typebox/build/value/default/from_intersect.mjs +9 -0
  3719. package/node_modules/typebox/build/value/default/from_object.d.mts +2 -0
  3720. package/node_modules/typebox/build/value/default/from_object.mjs +32 -0
  3721. package/node_modules/typebox/build/value/default/from_record.d.mts +2 -0
  3722. package/node_modules/typebox/build/value/default/from_record.mjs +26 -0
  3723. package/node_modules/typebox/build/value/default/from_ref.d.mts +2 -0
  3724. package/node_modules/typebox/build/value/default/from_ref.mjs +9 -0
  3725. package/node_modules/typebox/build/value/default/from_tuple.d.mts +2 -0
  3726. package/node_modules/typebox/build/value/default/from_tuple.mjs +14 -0
  3727. package/node_modules/typebox/build/value/default/from_type.d.mts +2 -0
  3728. package/node_modules/typebox/build/value/default/from_type.mjs +27 -0
  3729. package/node_modules/typebox/build/value/default/from_union.d.mts +2 -0
  3730. package/node_modules/typebox/build/value/default/from_union.mjs +14 -0
  3731. package/node_modules/typebox/build/value/default/index.d.mts +1 -0
  3732. package/node_modules/typebox/build/value/default/index.mjs +1 -0
  3733. package/node_modules/typebox/build/value/delta/diff.d.mts +10 -0
  3734. package/node_modules/typebox/build/value/delta/diff.mjs +135 -0
  3735. package/node_modules/typebox/build/value/delta/edit.d.mts +24 -0
  3736. package/node_modules/typebox/build/value/delta/edit.mjs +17 -0
  3737. package/node_modules/typebox/build/value/delta/index.d.mts +3 -0
  3738. package/node_modules/typebox/build/value/delta/index.mjs +3 -0
  3739. package/node_modules/typebox/build/value/delta/patch.d.mts +8 -0
  3740. package/node_modules/typebox/build/value/delta/patch.mjs +42 -0
  3741. package/node_modules/typebox/build/value/equal/equal.d.mts +2 -0
  3742. package/node_modules/typebox/build/value/equal/equal.mjs +6 -0
  3743. package/node_modules/typebox/build/value/equal/index.d.mts +1 -0
  3744. package/node_modules/typebox/build/value/equal/index.mjs +1 -0
  3745. package/node_modules/typebox/build/value/errors/errors.d.mts +16 -0
  3746. package/node_modules/typebox/build/value/errors/errors.mjs +17 -0
  3747. package/node_modules/typebox/build/value/errors/index.d.mts +1 -0
  3748. package/node_modules/typebox/build/value/errors/index.mjs +1 -0
  3749. package/node_modules/typebox/build/value/hash/hash.d.mts +6 -0
  3750. package/node_modules/typebox/build/value/hash/hash.mjs +10 -0
  3751. package/node_modules/typebox/build/value/hash/index.d.mts +1 -0
  3752. package/node_modules/typebox/build/value/hash/index.mjs +1 -0
  3753. package/node_modules/typebox/build/value/index.d.mts +21 -0
  3754. package/node_modules/typebox/build/value/index.mjs +30 -0
  3755. package/node_modules/typebox/build/value/mutate/error.d.mts +3 -0
  3756. package/node_modules/typebox/build/value/mutate/error.mjs +6 -0
  3757. package/node_modules/typebox/build/value/mutate/from_array.d.mts +2 -0
  3758. package/node_modules/typebox/build/value/mutate/from_array.mjs +16 -0
  3759. package/node_modules/typebox/build/value/mutate/from_object.d.mts +2 -0
  3760. package/node_modules/typebox/build/value/mutate/from_object.mjs +40 -0
  3761. package/node_modules/typebox/build/value/mutate/from_unknown.d.mts +2 -0
  3762. package/node_modules/typebox/build/value/mutate/from_unknown.mjs +7 -0
  3763. package/node_modules/typebox/build/value/mutate/from_value.d.mts +2 -0
  3764. package/node_modules/typebox/build/value/mutate/from_value.mjs +12 -0
  3765. package/node_modules/typebox/build/value/mutate/index.d.mts +1 -0
  3766. package/node_modules/typebox/build/value/mutate/index.mjs +1 -0
  3767. package/node_modules/typebox/build/value/mutate/mutate.d.mts +11 -0
  3768. package/node_modules/typebox/build/value/mutate/mutate.mjs +41 -0
  3769. package/node_modules/typebox/build/value/parse/index.d.mts +1 -0
  3770. package/node_modules/typebox/build/value/parse/index.mjs +1 -0
  3771. package/node_modules/typebox/build/value/parse/parse.d.mts +11 -0
  3772. package/node_modules/typebox/build/value/parse/parse.mjs +47 -0
  3773. package/node_modules/typebox/build/value/pipeline/index.d.mts +1 -0
  3774. package/node_modules/typebox/build/value/pipeline/index.mjs +1 -0
  3775. package/node_modules/typebox/build/value/pipeline/pipeline.d.mts +10 -0
  3776. package/node_modules/typebox/build/value/pipeline/pipeline.mjs +15 -0
  3777. package/node_modules/typebox/build/value/pointer/index.d.mts +1 -0
  3778. package/node_modules/typebox/build/value/pointer/index.mjs +1 -0
  3779. package/node_modules/typebox/build/value/repair/error.d.mts +7 -0
  3780. package/node_modules/typebox/build/value/repair/error.mjs +8 -0
  3781. package/node_modules/typebox/build/value/repair/from_array.d.mts +2 -0
  3782. package/node_modules/typebox/build/value/repair/from_array.mjs +39 -0
  3783. package/node_modules/typebox/build/value/repair/from_base.d.mts +2 -0
  3784. package/node_modules/typebox/build/value/repair/from_base.mjs +8 -0
  3785. package/node_modules/typebox/build/value/repair/from_enum.d.mts +2 -0
  3786. package/node_modules/typebox/build/value/repair/from_enum.mjs +6 -0
  3787. package/node_modules/typebox/build/value/repair/from_intersect.d.mts +2 -0
  3788. package/node_modules/typebox/build/value/repair/from_intersect.mjs +8 -0
  3789. package/node_modules/typebox/build/value/repair/from_object.d.mts +2 -0
  3790. package/node_modules/typebox/build/value/repair/from_object.mjs +33 -0
  3791. package/node_modules/typebox/build/value/repair/from_record.d.mts +2 -0
  3792. package/node_modules/typebox/build/value/repair/from_record.mjs +33 -0
  3793. package/node_modules/typebox/build/value/repair/from_ref.d.mts +2 -0
  3794. package/node_modules/typebox/build/value/repair/from_ref.mjs +9 -0
  3795. package/node_modules/typebox/build/value/repair/from_template_literal.d.mts +2 -0
  3796. package/node_modules/typebox/build/value/repair/from_template_literal.mjs +7 -0
  3797. package/node_modules/typebox/build/value/repair/from_tuple.d.mts +2 -0
  3798. package/node_modules/typebox/build/value/repair/from_tuple.mjs +12 -0
  3799. package/node_modules/typebox/build/value/repair/from_type.d.mts +2 -0
  3800. package/node_modules/typebox/build/value/repair/from_type.mjs +86 -0
  3801. package/node_modules/typebox/build/value/repair/from_union.d.mts +2 -0
  3802. package/node_modules/typebox/build/value/repair/from_union.mjs +24 -0
  3803. package/node_modules/typebox/build/value/repair/from_unknown.d.mts +2 -0
  3804. package/node_modules/typebox/build/value/repair/from_unknown.mjs +12 -0
  3805. package/node_modules/typebox/build/value/repair/index.d.mts +1 -0
  3806. package/node_modules/typebox/build/value/repair/index.mjs +1 -0
  3807. package/node_modules/typebox/build/value/repair/repair.d.mts +17 -0
  3808. package/node_modules/typebox/build/value/repair/repair.mjs +20 -0
  3809. package/node_modules/typebox/build/value/shared/index.d.mts +3 -0
  3810. package/node_modules/typebox/build/value/shared/index.mjs +4 -0
  3811. package/node_modules/typebox/build/value/shared/optional_undefined.d.mts +2 -0
  3812. package/node_modules/typebox/build/value/shared/optional_undefined.mjs +15 -0
  3813. package/node_modules/typebox/build/value/shared/union_priority_sort.d.mts +3 -0
  3814. package/node_modules/typebox/build/value/shared/union_priority_sort.mjs +36 -0
  3815. package/node_modules/typebox/build/value/shared/union_score_select.d.mts +3 -0
  3816. package/node_modules/typebox/build/value/shared/union_score_select.mjs +51 -0
  3817. package/node_modules/typebox/build/value/value.d.mts +16 -0
  3818. package/node_modules/typebox/build/value/value.mjs +16 -0
  3819. package/node_modules/typebox/license +23 -0
  3820. package/node_modules/typebox/package.json +87 -0
  3821. package/node_modules/typebox/readme.md +370 -0
  3822. package/node_modules/uhyphen/LICENSE +15 -0
  3823. package/node_modules/uhyphen/README.md +13 -0
  3824. package/node_modules/uhyphen/cjs/index.js +3 -0
  3825. package/node_modules/uhyphen/cjs/package.json +1 -0
  3826. package/node_modules/uhyphen/es.js +1 -0
  3827. package/node_modules/uhyphen/esm/index.js +2 -0
  3828. package/node_modules/uhyphen/index.js +14 -0
  3829. package/node_modules/uhyphen/min.js +1 -0
  3830. package/node_modules/uhyphen/package.json +52 -0
  3831. package/node_modules/unpdf/LICENSE +21 -0
  3832. package/node_modules/unpdf/README.md +365 -0
  3833. package/node_modules/unpdf/dist/index.cjs +429 -0
  3834. package/node_modules/unpdf/dist/index.d.cts +182 -0
  3835. package/node_modules/unpdf/dist/index.d.mts +182 -0
  3836. package/node_modules/unpdf/dist/index.d.ts +182 -0
  3837. package/node_modules/unpdf/dist/index.mjs +416 -0
  3838. package/node_modules/unpdf/dist/pdfjs.d.mts +1 -0
  3839. package/node_modules/unpdf/dist/pdfjs.d.ts +1 -0
  3840. package/node_modules/unpdf/dist/pdfjs.mjs +107 -0
  3841. package/node_modules/unpdf/dist/types/src/display/annotation_layer.d.ts +274 -0
  3842. package/node_modules/unpdf/dist/types/src/display/annotation_storage.d.ts +94 -0
  3843. package/node_modules/unpdf/dist/types/src/display/api.d.ts +1619 -0
  3844. package/node_modules/unpdf/dist/types/src/display/api_utils.d.ts +13 -0
  3845. package/node_modules/unpdf/dist/types/src/display/binary_data_factory.d.ts +26 -0
  3846. package/node_modules/unpdf/dist/types/src/display/canvas.d.ts +210 -0
  3847. package/node_modules/unpdf/dist/types/src/display/canvas_dependency_tracker.d.ts +216 -0
  3848. package/node_modules/unpdf/dist/types/src/display/canvas_factory.d.ts +29 -0
  3849. package/node_modules/unpdf/dist/types/src/display/content_disposition.d.ts +7 -0
  3850. package/node_modules/unpdf/dist/types/src/display/display_utils.d.ts +281 -0
  3851. package/node_modules/unpdf/dist/types/src/display/draw_layer.d.ts +22 -0
  3852. package/node_modules/unpdf/dist/types/src/display/editor/alt_text.d.ts +34 -0
  3853. package/node_modules/unpdf/dist/types/src/display/editor/annotation_editor_layer.d.ts +227 -0
  3854. package/node_modules/unpdf/dist/types/src/display/editor/color_picker.d.ts +39 -0
  3855. package/node_modules/unpdf/dist/types/src/display/editor/comment.d.ts +59 -0
  3856. package/node_modules/unpdf/dist/types/src/display/editor/draw.d.ts +117 -0
  3857. package/node_modules/unpdf/dist/types/src/display/editor/drawers/contour.d.ts +3 -0
  3858. package/node_modules/unpdf/dist/types/src/display/editor/drawers/freedraw.d.ts +32 -0
  3859. package/node_modules/unpdf/dist/types/src/display/editor/drawers/highlight.d.ts +37 -0
  3860. package/node_modules/unpdf/dist/types/src/display/editor/drawers/inkdraw.d.ts +129 -0
  3861. package/node_modules/unpdf/dist/types/src/display/editor/drawers/outline.d.ts +19 -0
  3862. package/node_modules/unpdf/dist/types/src/display/editor/drawers/signaturedraw.d.ts +79 -0
  3863. package/node_modules/unpdf/dist/types/src/display/editor/editor.d.ts +578 -0
  3864. package/node_modules/unpdf/dist/types/src/display/editor/freetext.d.ts +63 -0
  3865. package/node_modules/unpdf/dist/types/src/display/editor/highlight.d.ts +76 -0
  3866. package/node_modules/unpdf/dist/types/src/display/editor/ink.d.ts +42 -0
  3867. package/node_modules/unpdf/dist/types/src/display/editor/signature.d.ts +77 -0
  3868. package/node_modules/unpdf/dist/types/src/display/editor/stamp.d.ts +49 -0
  3869. package/node_modules/unpdf/dist/types/src/display/editor/toolbar.d.ts +26 -0
  3870. package/node_modules/unpdf/dist/types/src/display/editor/tools.d.ts +484 -0
  3871. package/node_modules/unpdf/dist/types/src/display/fetch_stream.d.ts +7 -0
  3872. package/node_modules/unpdf/dist/types/src/display/filter_factory.d.ts +29 -0
  3873. package/node_modules/unpdf/dist/types/src/display/font_loader.d.ts +66 -0
  3874. package/node_modules/unpdf/dist/types/src/display/metadata.d.ts +10 -0
  3875. package/node_modules/unpdf/dist/types/src/display/network.d.ts +20 -0
  3876. package/node_modules/unpdf/dist/types/src/display/network_stream.d.ts +2 -0
  3877. package/node_modules/unpdf/dist/types/src/display/network_utils.d.ts +15 -0
  3878. package/node_modules/unpdf/dist/types/src/display/node_stream.d.ts +4 -0
  3879. package/node_modules/unpdf/dist/types/src/display/node_utils.d.ts +18 -0
  3880. package/node_modules/unpdf/dist/types/src/display/obj_bin_transform_display.d.ts +67 -0
  3881. package/node_modules/unpdf/dist/types/src/display/optional_content_config.d.ts +18 -0
  3882. package/node_modules/unpdf/dist/types/src/display/pages_mapper.d.ts +72 -0
  3883. package/node_modules/unpdf/dist/types/src/display/pattern_helper.d.ts +80 -0
  3884. package/node_modules/unpdf/dist/types/src/display/pdf_objects.d.ts +40 -0
  3885. package/node_modules/unpdf/dist/types/src/display/svg_factory.d.ts +14 -0
  3886. package/node_modules/unpdf/dist/types/src/display/text_layer.d.ts +91 -0
  3887. package/node_modules/unpdf/dist/types/src/display/text_layer_images.d.ts +10 -0
  3888. package/node_modules/unpdf/dist/types/src/display/touch_manager.d.ts +18 -0
  3889. package/node_modules/unpdf/dist/types/src/display/transport_stream.d.ts +11 -0
  3890. package/node_modules/unpdf/dist/types/src/display/webgpu_mesh.d.ts +3 -0
  3891. package/node_modules/unpdf/dist/types/src/display/worker_options.d.ts +25 -0
  3892. package/node_modules/unpdf/dist/types/src/display/xfa_layer.d.ts +47 -0
  3893. package/node_modules/unpdf/dist/types/src/display/xfa_text.d.ts +21 -0
  3894. package/node_modules/unpdf/dist/types/src/pdf.d.ts +67 -0
  3895. package/node_modules/unpdf/dist/types/src/shared/base_pdf_stream.d.ts +121 -0
  3896. package/node_modules/unpdf/dist/types/src/shared/image_utils.d.ts +17 -0
  3897. package/node_modules/unpdf/dist/types/src/shared/message_handler.d.ts +48 -0
  3898. package/node_modules/unpdf/dist/types/src/shared/murmurhash3.d.ts +7 -0
  3899. package/node_modules/unpdf/dist/types/src/shared/obj_bin_transform_utils.d.ts +26 -0
  3900. package/node_modules/unpdf/dist/types/src/shared/scripting_utils.d.ts +18 -0
  3901. package/node_modules/unpdf/dist/types/src/shared/util.d.ts +424 -0
  3902. package/node_modules/unpdf/dist/types/web/annotation_editor_layer_builder.d.ts +64 -0
  3903. package/node_modules/unpdf/dist/types/web/annotation_layer_builder.d.ts +108 -0
  3904. package/node_modules/unpdf/dist/types/web/app_options.d.ts +16 -0
  3905. package/node_modules/unpdf/dist/types/web/autolinker.d.ts +29 -0
  3906. package/node_modules/unpdf/dist/types/web/base_download_manager.d.ts +24 -0
  3907. package/node_modules/unpdf/dist/types/web/base_pdf_page_view.d.ts +28 -0
  3908. package/node_modules/unpdf/dist/types/web/comment_manager.d.ts +20 -0
  3909. package/node_modules/unpdf/dist/types/web/download_manager.d.ts +4 -0
  3910. package/node_modules/unpdf/dist/types/web/draw_layer_builder.d.ts +22 -0
  3911. package/node_modules/unpdf/dist/types/web/event_utils.d.ts +77 -0
  3912. package/node_modules/unpdf/dist/types/web/generic_scripting.d.ts +8 -0
  3913. package/node_modules/unpdf/dist/types/web/genericl10n.d.ts +18 -0
  3914. package/node_modules/unpdf/dist/types/web/l10n.d.ts +31 -0
  3915. package/node_modules/unpdf/dist/types/web/menu.d.ts +11 -0
  3916. package/node_modules/unpdf/dist/types/web/pdf_find_controller.d.ts +132 -0
  3917. package/node_modules/unpdf/dist/types/web/pdf_find_utils.d.ts +16 -0
  3918. package/node_modules/unpdf/dist/types/web/pdf_history.d.ts +116 -0
  3919. package/node_modules/unpdf/dist/types/web/pdf_link_service.d.ts +142 -0
  3920. package/node_modules/unpdf/dist/types/web/pdf_page_detail_view.d.ts +27 -0
  3921. package/node_modules/unpdf/dist/types/web/pdf_page_view.d.ts +249 -0
  3922. package/node_modules/unpdf/dist/types/web/pdf_rendering_queue.d.ts +50 -0
  3923. package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.component.d.ts +5 -0
  3924. package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.d.ts +57 -0
  3925. package/node_modules/unpdf/dist/types/web/pdf_single_page_viewer.d.ts +7 -0
  3926. package/node_modules/unpdf/dist/types/web/pdf_thumbnail_view.d.ts +108 -0
  3927. package/node_modules/unpdf/dist/types/web/pdf_thumbnail_viewer.d.ts +161 -0
  3928. package/node_modules/unpdf/dist/types/web/pdf_viewer.component.d.ts +23 -0
  3929. package/node_modules/unpdf/dist/types/web/pdf_viewer.d.ts +619 -0
  3930. package/node_modules/unpdf/dist/types/web/renderable_view.d.ts +33 -0
  3931. package/node_modules/unpdf/dist/types/web/sidebar.d.ts +65 -0
  3932. package/node_modules/unpdf/dist/types/web/struct_tree_layer_builder.d.ts +25 -0
  3933. package/node_modules/unpdf/dist/types/web/text_accessibility.d.ts +44 -0
  3934. package/node_modules/unpdf/dist/types/web/text_highlighter.d.ts +63 -0
  3935. package/node_modules/unpdf/dist/types/web/text_layer_builder.d.ts +70 -0
  3936. package/node_modules/unpdf/dist/types/web/ui_utils.d.ts +265 -0
  3937. package/node_modules/unpdf/dist/types/web/xfa_layer_builder.d.ts +50 -0
  3938. package/node_modules/unpdf/package.json +97 -0
  3939. package/node_modules/yocto-queue/index.d.ts +75 -0
  3940. package/node_modules/yocto-queue/index.js +90 -0
  3941. package/node_modules/yocto-queue/license +9 -0
  3942. package/node_modules/yocto-queue/package.json +48 -0
  3943. package/node_modules/yocto-queue/readme.md +80 -0
  3944. package/node_modules/zod/.DS_Store +0 -0
  3945. package/node_modules/zod/LICENSE +21 -0
  3946. package/node_modules/zod/README.md +208 -0
  3947. package/node_modules/zod/index.cjs +33 -0
  3948. package/node_modules/zod/index.d.cts +4 -0
  3949. package/node_modules/zod/index.d.ts +4 -0
  3950. package/node_modules/zod/index.js +4 -0
  3951. package/node_modules/zod/package.json +118 -0
  3952. package/node_modules/zod/src/index.ts +4 -0
  3953. package/node_modules/zod/src/v3/ZodError.ts +330 -0
  3954. package/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  3955. package/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  3956. package/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  3957. package/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  3958. package/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  3959. package/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  3960. package/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  3961. package/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  3962. package/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  3963. package/node_modules/zod/src/v3/errors.ts +13 -0
  3964. package/node_modules/zod/src/v3/external.ts +6 -0
  3965. package/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  3966. package/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  3967. package/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  3968. package/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  3969. package/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  3970. package/node_modules/zod/src/v3/helpers/util.ts +224 -0
  3971. package/node_modules/zod/src/v3/index.ts +4 -0
  3972. package/node_modules/zod/src/v3/locales/en.ts +124 -0
  3973. package/node_modules/zod/src/v3/standard-schema.ts +113 -0
  3974. package/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  3975. package/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  3976. package/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  3977. package/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  3978. package/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  3979. package/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  3980. package/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  3981. package/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  3982. package/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  3983. package/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  3984. package/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  3985. package/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
  3986. package/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  3987. package/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  3988. package/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  3989. package/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  3990. package/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  3991. package/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  3992. package/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  3993. package/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  3994. package/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  3995. package/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  3996. package/node_modules/zod/src/v3/tests/function.test.ts +257 -0
  3997. package/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  3998. package/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  3999. package/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  4000. package/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  4001. package/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  4002. package/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  4003. package/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  4004. package/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  4005. package/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  4006. package/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
  4007. package/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  4008. package/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  4009. package/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  4010. package/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  4011. package/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  4012. package/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  4013. package/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  4014. package/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  4015. package/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  4016. package/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  4017. package/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  4018. package/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  4019. package/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  4020. package/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  4021. package/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  4022. package/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  4023. package/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  4024. package/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  4025. package/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  4026. package/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  4027. package/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  4028. package/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  4029. package/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  4030. package/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  4031. package/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  4032. package/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  4033. package/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  4034. package/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  4035. package/node_modules/zod/src/v3/types.ts +5136 -0
  4036. package/node_modules/zod/src/v4/classic/checks.ts +30 -0
  4037. package/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  4038. package/node_modules/zod/src/v4/classic/compat.ts +66 -0
  4039. package/node_modules/zod/src/v4/classic/errors.ts +75 -0
  4040. package/node_modules/zod/src/v4/classic/external.ts +50 -0
  4041. package/node_modules/zod/src/v4/classic/index.ts +5 -0
  4042. package/node_modules/zod/src/v4/classic/iso.ts +90 -0
  4043. package/node_modules/zod/src/v4/classic/parse.ts +33 -0
  4044. package/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
  4045. package/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  4046. package/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  4047. package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
  4048. package/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  4049. package/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  4050. package/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  4051. package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  4052. package/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
  4053. package/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
  4054. package/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  4055. package/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  4056. package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
  4057. package/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  4058. package/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
  4059. package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
  4060. package/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
  4061. package/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  4062. package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
  4063. package/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  4064. package/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
  4065. package/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  4066. package/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
  4067. package/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
  4068. package/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
  4069. package/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  4070. package/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
  4071. package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
  4072. package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
  4073. package/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
  4074. package/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  4075. package/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
  4076. package/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
  4077. package/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  4078. package/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  4079. package/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
  4080. package/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  4081. package/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
  4082. package/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
  4083. package/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
  4084. package/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
  4085. package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
  4086. package/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
  4087. package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
  4088. package/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
  4089. package/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  4090. package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  4091. package/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  4092. package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  4093. package/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
  4094. package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
  4095. package/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
  4096. package/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
  4097. package/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
  4098. package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
  4099. package/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
  4100. package/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
  4101. package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
  4102. package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
  4103. package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
  4104. package/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
  4105. package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
  4106. package/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
  4107. package/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  4108. package/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  4109. package/node_modules/zod/src/v4/core/api.ts +1594 -0
  4110. package/node_modules/zod/src/v4/core/checks.ts +1283 -0
  4111. package/node_modules/zod/src/v4/core/config.ts +15 -0
  4112. package/node_modules/zod/src/v4/core/core.ts +134 -0
  4113. package/node_modules/zod/src/v4/core/doc.ts +44 -0
  4114. package/node_modules/zod/src/v4/core/errors.ts +424 -0
  4115. package/node_modules/zod/src/v4/core/function.ts +176 -0
  4116. package/node_modules/zod/src/v4/core/index.ts +15 -0
  4117. package/node_modules/zod/src/v4/core/json-schema.ts +143 -0
  4118. package/node_modules/zod/src/v4/core/parse.ts +94 -0
  4119. package/node_modules/zod/src/v4/core/regexes.ts +135 -0
  4120. package/node_modules/zod/src/v4/core/registries.ts +96 -0
  4121. package/node_modules/zod/src/v4/core/schemas.ts +3842 -0
  4122. package/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
  4123. package/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  4124. package/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  4125. package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  4126. package/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  4127. package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  4128. package/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
  4129. package/node_modules/zod/src/v4/core/util.ts +775 -0
  4130. package/node_modules/zod/src/v4/core/versions.ts +5 -0
  4131. package/node_modules/zod/src/v4/core/zsf.ts +323 -0
  4132. package/node_modules/zod/src/v4/index.ts +4 -0
  4133. package/node_modules/zod/src/v4/locales/ar.ts +125 -0
  4134. package/node_modules/zod/src/v4/locales/az.ts +121 -0
  4135. package/node_modules/zod/src/v4/locales/be.ts +184 -0
  4136. package/node_modules/zod/src/v4/locales/ca.ts +127 -0
  4137. package/node_modules/zod/src/v4/locales/cs.ts +142 -0
  4138. package/node_modules/zod/src/v4/locales/de.ts +124 -0
  4139. package/node_modules/zod/src/v4/locales/en.ts +127 -0
  4140. package/node_modules/zod/src/v4/locales/eo.ts +125 -0
  4141. package/node_modules/zod/src/v4/locales/es.ts +125 -0
  4142. package/node_modules/zod/src/v4/locales/fa.ts +134 -0
  4143. package/node_modules/zod/src/v4/locales/fi.ts +131 -0
  4144. package/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
  4145. package/node_modules/zod/src/v4/locales/fr.ts +124 -0
  4146. package/node_modules/zod/src/v4/locales/he.ts +125 -0
  4147. package/node_modules/zod/src/v4/locales/hu.ts +126 -0
  4148. package/node_modules/zod/src/v4/locales/id.ts +125 -0
  4149. package/node_modules/zod/src/v4/locales/index.ts +39 -0
  4150. package/node_modules/zod/src/v4/locales/it.ts +125 -0
  4151. package/node_modules/zod/src/v4/locales/ja.ts +122 -0
  4152. package/node_modules/zod/src/v4/locales/kh.ts +126 -0
  4153. package/node_modules/zod/src/v4/locales/ko.ts +131 -0
  4154. package/node_modules/zod/src/v4/locales/mk.ts +127 -0
  4155. package/node_modules/zod/src/v4/locales/ms.ts +124 -0
  4156. package/node_modules/zod/src/v4/locales/nl.ts +126 -0
  4157. package/node_modules/zod/src/v4/locales/no.ts +124 -0
  4158. package/node_modules/zod/src/v4/locales/ota.ts +125 -0
  4159. package/node_modules/zod/src/v4/locales/pl.ts +126 -0
  4160. package/node_modules/zod/src/v4/locales/ps.ts +133 -0
  4161. package/node_modules/zod/src/v4/locales/pt.ts +123 -0
  4162. package/node_modules/zod/src/v4/locales/ru.ts +184 -0
  4163. package/node_modules/zod/src/v4/locales/sl.ts +126 -0
  4164. package/node_modules/zod/src/v4/locales/sv.ts +127 -0
  4165. package/node_modules/zod/src/v4/locales/ta.ts +125 -0
  4166. package/node_modules/zod/src/v4/locales/th.ts +126 -0
  4167. package/node_modules/zod/src/v4/locales/tr.ts +121 -0
  4168. package/node_modules/zod/src/v4/locales/ua.ts +126 -0
  4169. package/node_modules/zod/src/v4/locales/ur.ts +126 -0
  4170. package/node_modules/zod/src/v4/locales/vi.ts +125 -0
  4171. package/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
  4172. package/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
  4173. package/node_modules/zod/src/v4/mini/checks.ts +32 -0
  4174. package/node_modules/zod/src/v4/mini/coerce.ts +22 -0
  4175. package/node_modules/zod/src/v4/mini/external.ts +40 -0
  4176. package/node_modules/zod/src/v4/mini/index.ts +3 -0
  4177. package/node_modules/zod/src/v4/mini/iso.ts +62 -0
  4178. package/node_modules/zod/src/v4/mini/parse.ts +1 -0
  4179. package/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
  4180. package/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  4181. package/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
  4182. package/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  4183. package/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  4184. package/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  4185. package/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
  4186. package/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
  4187. package/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  4188. package/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
  4189. package/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  4190. package/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
  4191. package/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
  4192. package/node_modules/zod/src/v4-mini/index.ts +1 -0
  4193. package/node_modules/zod/v3/ZodError.cjs +138 -0
  4194. package/node_modules/zod/v3/ZodError.d.cts +164 -0
  4195. package/node_modules/zod/v3/ZodError.d.ts +164 -0
  4196. package/node_modules/zod/v3/ZodError.js +133 -0
  4197. package/node_modules/zod/v3/errors.cjs +17 -0
  4198. package/node_modules/zod/v3/errors.d.cts +5 -0
  4199. package/node_modules/zod/v3/errors.d.ts +5 -0
  4200. package/node_modules/zod/v3/errors.js +9 -0
  4201. package/node_modules/zod/v3/external.cjs +22 -0
  4202. package/node_modules/zod/v3/external.d.cts +6 -0
  4203. package/node_modules/zod/v3/external.d.ts +6 -0
  4204. package/node_modules/zod/v3/external.js +6 -0
  4205. package/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  4206. package/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  4207. package/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  4208. package/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  4209. package/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  4210. package/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  4211. package/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  4212. package/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  4213. package/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  4214. package/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  4215. package/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  4216. package/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  4217. package/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  4218. package/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  4219. package/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  4220. package/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  4221. package/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  4222. package/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  4223. package/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  4224. package/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  4225. package/node_modules/zod/v3/helpers/util.cjs +137 -0
  4226. package/node_modules/zod/v3/helpers/util.d.cts +85 -0
  4227. package/node_modules/zod/v3/helpers/util.d.ts +85 -0
  4228. package/node_modules/zod/v3/helpers/util.js +133 -0
  4229. package/node_modules/zod/v3/index.cjs +33 -0
  4230. package/node_modules/zod/v3/index.d.cts +4 -0
  4231. package/node_modules/zod/v3/index.d.ts +4 -0
  4232. package/node_modules/zod/v3/index.js +4 -0
  4233. package/node_modules/zod/v3/locales/en.cjs +111 -0
  4234. package/node_modules/zod/v3/locales/en.d.cts +3 -0
  4235. package/node_modules/zod/v3/locales/en.d.ts +3 -0
  4236. package/node_modules/zod/v3/locales/en.js +109 -0
  4237. package/node_modules/zod/v3/standard-schema.cjs +2 -0
  4238. package/node_modules/zod/v3/standard-schema.d.cts +102 -0
  4239. package/node_modules/zod/v3/standard-schema.d.ts +102 -0
  4240. package/node_modules/zod/v3/standard-schema.js +1 -0
  4241. package/node_modules/zod/v3/types.cjs +3775 -0
  4242. package/node_modules/zod/v3/types.d.cts +1031 -0
  4243. package/node_modules/zod/v3/types.d.ts +1031 -0
  4244. package/node_modules/zod/v3/types.js +3693 -0
  4245. package/node_modules/zod/v4/classic/checks.cjs +32 -0
  4246. package/node_modules/zod/v4/classic/checks.d.cts +1 -0
  4247. package/node_modules/zod/v4/classic/checks.d.ts +1 -0
  4248. package/node_modules/zod/v4/classic/checks.js +1 -0
  4249. package/node_modules/zod/v4/classic/coerce.cjs +47 -0
  4250. package/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  4251. package/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  4252. package/node_modules/zod/v4/classic/coerce.js +17 -0
  4253. package/node_modules/zod/v4/classic/compat.cjs +57 -0
  4254. package/node_modules/zod/v4/classic/compat.d.cts +46 -0
  4255. package/node_modules/zod/v4/classic/compat.d.ts +46 -0
  4256. package/node_modules/zod/v4/classic/compat.js +27 -0
  4257. package/node_modules/zod/v4/classic/errors.cjs +67 -0
  4258. package/node_modules/zod/v4/classic/errors.d.cts +30 -0
  4259. package/node_modules/zod/v4/classic/errors.d.ts +30 -0
  4260. package/node_modules/zod/v4/classic/errors.js +41 -0
  4261. package/node_modules/zod/v4/classic/external.cjs +70 -0
  4262. package/node_modules/zod/v4/classic/external.d.cts +13 -0
  4263. package/node_modules/zod/v4/classic/external.d.ts +13 -0
  4264. package/node_modules/zod/v4/classic/external.js +18 -0
  4265. package/node_modules/zod/v4/classic/index.cjs +33 -0
  4266. package/node_modules/zod/v4/classic/index.d.cts +4 -0
  4267. package/node_modules/zod/v4/classic/index.d.ts +4 -0
  4268. package/node_modules/zod/v4/classic/index.js +4 -0
  4269. package/node_modules/zod/v4/classic/iso.cjs +60 -0
  4270. package/node_modules/zod/v4/classic/iso.d.cts +22 -0
  4271. package/node_modules/zod/v4/classic/iso.d.ts +22 -0
  4272. package/node_modules/zod/v4/classic/iso.js +30 -0
  4273. package/node_modules/zod/v4/classic/parse.cjs +32 -0
  4274. package/node_modules/zod/v4/classic/parse.d.cts +23 -0
  4275. package/node_modules/zod/v4/classic/parse.d.ts +23 -0
  4276. package/node_modules/zod/v4/classic/parse.js +6 -0
  4277. package/node_modules/zod/v4/classic/schemas.cjs +1109 -0
  4278. package/node_modules/zod/v4/classic/schemas.d.cts +630 -0
  4279. package/node_modules/zod/v4/classic/schemas.d.ts +630 -0
  4280. package/node_modules/zod/v4/classic/schemas.js +1006 -0
  4281. package/node_modules/zod/v4/core/api.cjs +1039 -0
  4282. package/node_modules/zod/v4/core/api.d.cts +284 -0
  4283. package/node_modules/zod/v4/core/api.d.ts +284 -0
  4284. package/node_modules/zod/v4/core/api.js +906 -0
  4285. package/node_modules/zod/v4/core/checks.cjs +591 -0
  4286. package/node_modules/zod/v4/core/checks.d.cts +278 -0
  4287. package/node_modules/zod/v4/core/checks.d.ts +278 -0
  4288. package/node_modules/zod/v4/core/checks.js +565 -0
  4289. package/node_modules/zod/v4/core/core.cjs +67 -0
  4290. package/node_modules/zod/v4/core/core.d.cts +49 -0
  4291. package/node_modules/zod/v4/core/core.d.ts +49 -0
  4292. package/node_modules/zod/v4/core/core.js +61 -0
  4293. package/node_modules/zod/v4/core/doc.cjs +39 -0
  4294. package/node_modules/zod/v4/core/doc.d.cts +14 -0
  4295. package/node_modules/zod/v4/core/doc.d.ts +14 -0
  4296. package/node_modules/zod/v4/core/doc.js +35 -0
  4297. package/node_modules/zod/v4/core/errors.cjs +226 -0
  4298. package/node_modules/zod/v4/core/errors.d.cts +208 -0
  4299. package/node_modules/zod/v4/core/errors.d.ts +208 -0
  4300. package/node_modules/zod/v4/core/errors.js +195 -0
  4301. package/node_modules/zod/v4/core/function.cjs +102 -0
  4302. package/node_modules/zod/v4/core/function.d.cts +52 -0
  4303. package/node_modules/zod/v4/core/function.d.ts +52 -0
  4304. package/node_modules/zod/v4/core/function.js +75 -0
  4305. package/node_modules/zod/v4/core/index.cjs +44 -0
  4306. package/node_modules/zod/v4/core/index.d.cts +15 -0
  4307. package/node_modules/zod/v4/core/index.d.ts +15 -0
  4308. package/node_modules/zod/v4/core/index.js +15 -0
  4309. package/node_modules/zod/v4/core/json-schema.cjs +2 -0
  4310. package/node_modules/zod/v4/core/json-schema.d.cts +87 -0
  4311. package/node_modules/zod/v4/core/json-schema.d.ts +87 -0
  4312. package/node_modules/zod/v4/core/json-schema.js +1 -0
  4313. package/node_modules/zod/v4/core/parse.cjs +87 -0
  4314. package/node_modules/zod/v4/core/parse.d.cts +25 -0
  4315. package/node_modules/zod/v4/core/parse.d.ts +25 -0
  4316. package/node_modules/zod/v4/core/parse.js +57 -0
  4317. package/node_modules/zod/v4/core/regexes.cjs +103 -0
  4318. package/node_modules/zod/v4/core/regexes.d.cts +62 -0
  4319. package/node_modules/zod/v4/core/regexes.d.ts +62 -0
  4320. package/node_modules/zod/v4/core/regexes.js +95 -0
  4321. package/node_modules/zod/v4/core/registries.cjs +56 -0
  4322. package/node_modules/zod/v4/core/registries.d.cts +35 -0
  4323. package/node_modules/zod/v4/core/registries.d.ts +35 -0
  4324. package/node_modules/zod/v4/core/registries.js +51 -0
  4325. package/node_modules/zod/v4/core/schemas.cjs +1748 -0
  4326. package/node_modules/zod/v4/core/schemas.d.cts +1041 -0
  4327. package/node_modules/zod/v4/core/schemas.d.ts +1041 -0
  4328. package/node_modules/zod/v4/core/schemas.js +1717 -0
  4329. package/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  4330. package/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
  4331. package/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
  4332. package/node_modules/zod/v4/core/standard-schema.js +1 -0
  4333. package/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
  4334. package/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
  4335. package/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
  4336. package/node_modules/zod/v4/core/to-json-schema.js +849 -0
  4337. package/node_modules/zod/v4/core/util.cjs +539 -0
  4338. package/node_modules/zod/v4/core/util.d.cts +183 -0
  4339. package/node_modules/zod/v4/core/util.d.ts +183 -0
  4340. package/node_modules/zod/v4/core/util.js +493 -0
  4341. package/node_modules/zod/v4/core/versions.cjs +8 -0
  4342. package/node_modules/zod/v4/core/versions.d.cts +5 -0
  4343. package/node_modules/zod/v4/core/versions.d.ts +5 -0
  4344. package/node_modules/zod/v4/core/versions.js +5 -0
  4345. package/node_modules/zod/v4/index.cjs +22 -0
  4346. package/node_modules/zod/v4/index.d.cts +3 -0
  4347. package/node_modules/zod/v4/index.d.ts +3 -0
  4348. package/node_modules/zod/v4/index.js +3 -0
  4349. package/node_modules/zod/v4/locales/ar.cjs +142 -0
  4350. package/node_modules/zod/v4/locales/ar.d.cts +4 -0
  4351. package/node_modules/zod/v4/locales/ar.d.ts +4 -0
  4352. package/node_modules/zod/v4/locales/ar.js +116 -0
  4353. package/node_modules/zod/v4/locales/az.cjs +141 -0
  4354. package/node_modules/zod/v4/locales/az.d.cts +4 -0
  4355. package/node_modules/zod/v4/locales/az.d.ts +4 -0
  4356. package/node_modules/zod/v4/locales/az.js +115 -0
  4357. package/node_modules/zod/v4/locales/be.cjs +190 -0
  4358. package/node_modules/zod/v4/locales/be.d.cts +4 -0
  4359. package/node_modules/zod/v4/locales/be.d.ts +4 -0
  4360. package/node_modules/zod/v4/locales/be.js +164 -0
  4361. package/node_modules/zod/v4/locales/ca.cjs +144 -0
  4362. package/node_modules/zod/v4/locales/ca.d.cts +4 -0
  4363. package/node_modules/zod/v4/locales/ca.d.ts +4 -0
  4364. package/node_modules/zod/v4/locales/ca.js +118 -0
  4365. package/node_modules/zod/v4/locales/cs.cjs +161 -0
  4366. package/node_modules/zod/v4/locales/cs.d.cts +4 -0
  4367. package/node_modules/zod/v4/locales/cs.d.ts +4 -0
  4368. package/node_modules/zod/v4/locales/cs.js +135 -0
  4369. package/node_modules/zod/v4/locales/de.cjs +142 -0
  4370. package/node_modules/zod/v4/locales/de.d.cts +4 -0
  4371. package/node_modules/zod/v4/locales/de.d.ts +4 -0
  4372. package/node_modules/zod/v4/locales/de.js +116 -0
  4373. package/node_modules/zod/v4/locales/en.cjs +145 -0
  4374. package/node_modules/zod/v4/locales/en.d.cts +5 -0
  4375. package/node_modules/zod/v4/locales/en.d.ts +5 -0
  4376. package/node_modules/zod/v4/locales/en.js +117 -0
  4377. package/node_modules/zod/v4/locales/eo.cjs +144 -0
  4378. package/node_modules/zod/v4/locales/eo.d.cts +5 -0
  4379. package/node_modules/zod/v4/locales/eo.d.ts +5 -0
  4380. package/node_modules/zod/v4/locales/eo.js +116 -0
  4381. package/node_modules/zod/v4/locales/es.cjs +143 -0
  4382. package/node_modules/zod/v4/locales/es.d.cts +4 -0
  4383. package/node_modules/zod/v4/locales/es.d.ts +4 -0
  4384. package/node_modules/zod/v4/locales/es.js +117 -0
  4385. package/node_modules/zod/v4/locales/fa.cjs +148 -0
  4386. package/node_modules/zod/v4/locales/fa.d.cts +4 -0
  4387. package/node_modules/zod/v4/locales/fa.d.ts +4 -0
  4388. package/node_modules/zod/v4/locales/fa.js +122 -0
  4389. package/node_modules/zod/v4/locales/fi.cjs +148 -0
  4390. package/node_modules/zod/v4/locales/fi.d.cts +4 -0
  4391. package/node_modules/zod/v4/locales/fi.d.ts +4 -0
  4392. package/node_modules/zod/v4/locales/fi.js +122 -0
  4393. package/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
  4394. package/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
  4395. package/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  4396. package/node_modules/zod/v4/locales/fr-CA.js +117 -0
  4397. package/node_modules/zod/v4/locales/fr.cjs +142 -0
  4398. package/node_modules/zod/v4/locales/fr.d.cts +4 -0
  4399. package/node_modules/zod/v4/locales/fr.d.ts +4 -0
  4400. package/node_modules/zod/v4/locales/fr.js +116 -0
  4401. package/node_modules/zod/v4/locales/he.cjs +143 -0
  4402. package/node_modules/zod/v4/locales/he.d.cts +4 -0
  4403. package/node_modules/zod/v4/locales/he.d.ts +4 -0
  4404. package/node_modules/zod/v4/locales/he.js +117 -0
  4405. package/node_modules/zod/v4/locales/hu.cjs +143 -0
  4406. package/node_modules/zod/v4/locales/hu.d.cts +4 -0
  4407. package/node_modules/zod/v4/locales/hu.d.ts +4 -0
  4408. package/node_modules/zod/v4/locales/hu.js +117 -0
  4409. package/node_modules/zod/v4/locales/id.cjs +142 -0
  4410. package/node_modules/zod/v4/locales/id.d.cts +4 -0
  4411. package/node_modules/zod/v4/locales/id.d.ts +4 -0
  4412. package/node_modules/zod/v4/locales/id.js +116 -0
  4413. package/node_modules/zod/v4/locales/index.cjs +84 -0
  4414. package/node_modules/zod/v4/locales/index.d.cts +39 -0
  4415. package/node_modules/zod/v4/locales/index.d.ts +39 -0
  4416. package/node_modules/zod/v4/locales/index.js +39 -0
  4417. package/node_modules/zod/v4/locales/it.cjs +143 -0
  4418. package/node_modules/zod/v4/locales/it.d.cts +4 -0
  4419. package/node_modules/zod/v4/locales/it.d.ts +4 -0
  4420. package/node_modules/zod/v4/locales/it.js +117 -0
  4421. package/node_modules/zod/v4/locales/ja.cjs +141 -0
  4422. package/node_modules/zod/v4/locales/ja.d.cts +4 -0
  4423. package/node_modules/zod/v4/locales/ja.d.ts +4 -0
  4424. package/node_modules/zod/v4/locales/ja.js +115 -0
  4425. package/node_modules/zod/v4/locales/kh.cjs +143 -0
  4426. package/node_modules/zod/v4/locales/kh.d.cts +4 -0
  4427. package/node_modules/zod/v4/locales/kh.d.ts +4 -0
  4428. package/node_modules/zod/v4/locales/kh.js +117 -0
  4429. package/node_modules/zod/v4/locales/ko.cjs +147 -0
  4430. package/node_modules/zod/v4/locales/ko.d.cts +4 -0
  4431. package/node_modules/zod/v4/locales/ko.d.ts +4 -0
  4432. package/node_modules/zod/v4/locales/ko.js +121 -0
  4433. package/node_modules/zod/v4/locales/mk.cjs +144 -0
  4434. package/node_modules/zod/v4/locales/mk.d.cts +4 -0
  4435. package/node_modules/zod/v4/locales/mk.d.ts +4 -0
  4436. package/node_modules/zod/v4/locales/mk.js +118 -0
  4437. package/node_modules/zod/v4/locales/ms.cjs +142 -0
  4438. package/node_modules/zod/v4/locales/ms.d.cts +4 -0
  4439. package/node_modules/zod/v4/locales/ms.d.ts +4 -0
  4440. package/node_modules/zod/v4/locales/ms.js +116 -0
  4441. package/node_modules/zod/v4/locales/nl.cjs +143 -0
  4442. package/node_modules/zod/v4/locales/nl.d.cts +4 -0
  4443. package/node_modules/zod/v4/locales/nl.d.ts +4 -0
  4444. package/node_modules/zod/v4/locales/nl.js +117 -0
  4445. package/node_modules/zod/v4/locales/no.cjs +142 -0
  4446. package/node_modules/zod/v4/locales/no.d.cts +4 -0
  4447. package/node_modules/zod/v4/locales/no.d.ts +4 -0
  4448. package/node_modules/zod/v4/locales/no.js +116 -0
  4449. package/node_modules/zod/v4/locales/ota.cjs +143 -0
  4450. package/node_modules/zod/v4/locales/ota.d.cts +4 -0
  4451. package/node_modules/zod/v4/locales/ota.d.ts +4 -0
  4452. package/node_modules/zod/v4/locales/ota.js +117 -0
  4453. package/node_modules/zod/v4/locales/pl.cjs +143 -0
  4454. package/node_modules/zod/v4/locales/pl.d.cts +4 -0
  4455. package/node_modules/zod/v4/locales/pl.d.ts +4 -0
  4456. package/node_modules/zod/v4/locales/pl.js +117 -0
  4457. package/node_modules/zod/v4/locales/ps.cjs +148 -0
  4458. package/node_modules/zod/v4/locales/ps.d.cts +4 -0
  4459. package/node_modules/zod/v4/locales/ps.d.ts +4 -0
  4460. package/node_modules/zod/v4/locales/ps.js +122 -0
  4461. package/node_modules/zod/v4/locales/pt.cjs +142 -0
  4462. package/node_modules/zod/v4/locales/pt.d.cts +4 -0
  4463. package/node_modules/zod/v4/locales/pt.d.ts +4 -0
  4464. package/node_modules/zod/v4/locales/pt.js +116 -0
  4465. package/node_modules/zod/v4/locales/ru.cjs +190 -0
  4466. package/node_modules/zod/v4/locales/ru.d.cts +4 -0
  4467. package/node_modules/zod/v4/locales/ru.d.ts +4 -0
  4468. package/node_modules/zod/v4/locales/ru.js +164 -0
  4469. package/node_modules/zod/v4/locales/sl.cjs +143 -0
  4470. package/node_modules/zod/v4/locales/sl.d.cts +4 -0
  4471. package/node_modules/zod/v4/locales/sl.d.ts +4 -0
  4472. package/node_modules/zod/v4/locales/sl.js +117 -0
  4473. package/node_modules/zod/v4/locales/sv.cjs +144 -0
  4474. package/node_modules/zod/v4/locales/sv.d.cts +4 -0
  4475. package/node_modules/zod/v4/locales/sv.d.ts +4 -0
  4476. package/node_modules/zod/v4/locales/sv.js +118 -0
  4477. package/node_modules/zod/v4/locales/ta.cjs +143 -0
  4478. package/node_modules/zod/v4/locales/ta.d.cts +4 -0
  4479. package/node_modules/zod/v4/locales/ta.d.ts +4 -0
  4480. package/node_modules/zod/v4/locales/ta.js +117 -0
  4481. package/node_modules/zod/v4/locales/th.cjs +143 -0
  4482. package/node_modules/zod/v4/locales/th.d.cts +4 -0
  4483. package/node_modules/zod/v4/locales/th.d.ts +4 -0
  4484. package/node_modules/zod/v4/locales/th.js +117 -0
  4485. package/node_modules/zod/v4/locales/tr.cjs +143 -0
  4486. package/node_modules/zod/v4/locales/tr.d.cts +5 -0
  4487. package/node_modules/zod/v4/locales/tr.d.ts +5 -0
  4488. package/node_modules/zod/v4/locales/tr.js +115 -0
  4489. package/node_modules/zod/v4/locales/ua.cjs +143 -0
  4490. package/node_modules/zod/v4/locales/ua.d.cts +4 -0
  4491. package/node_modules/zod/v4/locales/ua.d.ts +4 -0
  4492. package/node_modules/zod/v4/locales/ua.js +117 -0
  4493. package/node_modules/zod/v4/locales/ur.cjs +143 -0
  4494. package/node_modules/zod/v4/locales/ur.d.cts +4 -0
  4495. package/node_modules/zod/v4/locales/ur.d.ts +4 -0
  4496. package/node_modules/zod/v4/locales/ur.js +117 -0
  4497. package/node_modules/zod/v4/locales/vi.cjs +142 -0
  4498. package/node_modules/zod/v4/locales/vi.d.cts +4 -0
  4499. package/node_modules/zod/v4/locales/vi.d.ts +4 -0
  4500. package/node_modules/zod/v4/locales/vi.js +116 -0
  4501. package/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
  4502. package/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
  4503. package/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  4504. package/node_modules/zod/v4/locales/zh-CN.js +116 -0
  4505. package/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
  4506. package/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
  4507. package/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  4508. package/node_modules/zod/v4/locales/zh-TW.js +117 -0
  4509. package/node_modules/zod/v4/mini/checks.cjs +34 -0
  4510. package/node_modules/zod/v4/mini/checks.d.cts +1 -0
  4511. package/node_modules/zod/v4/mini/checks.d.ts +1 -0
  4512. package/node_modules/zod/v4/mini/checks.js +1 -0
  4513. package/node_modules/zod/v4/mini/coerce.cjs +47 -0
  4514. package/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  4515. package/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  4516. package/node_modules/zod/v4/mini/coerce.js +17 -0
  4517. package/node_modules/zod/v4/mini/external.cjs +62 -0
  4518. package/node_modules/zod/v4/mini/external.d.cts +11 -0
  4519. package/node_modules/zod/v4/mini/external.d.ts +11 -0
  4520. package/node_modules/zod/v4/mini/external.js +13 -0
  4521. package/node_modules/zod/v4/mini/index.cjs +32 -0
  4522. package/node_modules/zod/v4/mini/index.d.cts +3 -0
  4523. package/node_modules/zod/v4/mini/index.d.ts +3 -0
  4524. package/node_modules/zod/v4/mini/index.js +3 -0
  4525. package/node_modules/zod/v4/mini/iso.cjs +60 -0
  4526. package/node_modules/zod/v4/mini/iso.d.cts +22 -0
  4527. package/node_modules/zod/v4/mini/iso.d.ts +22 -0
  4528. package/node_modules/zod/v4/mini/iso.js +30 -0
  4529. package/node_modules/zod/v4/mini/parse.cjs +8 -0
  4530. package/node_modules/zod/v4/mini/parse.d.cts +1 -0
  4531. package/node_modules/zod/v4/mini/parse.d.ts +1 -0
  4532. package/node_modules/zod/v4/mini/parse.js +1 -0
  4533. package/node_modules/zod/v4/mini/schemas.cjs +839 -0
  4534. package/node_modules/zod/v4/mini/schemas.d.cts +356 -0
  4535. package/node_modules/zod/v4/mini/schemas.d.ts +356 -0
  4536. package/node_modules/zod/v4/mini/schemas.js +732 -0
  4537. package/node_modules/zod/v4-mini/index.cjs +17 -0
  4538. package/node_modules/zod/v4-mini/index.d.cts +1 -0
  4539. package/node_modules/zod/v4-mini/index.d.ts +1 -0
  4540. package/node_modules/zod/v4-mini/index.js +1 -0
  4541. package/package.json +104 -0
  4542. package/skills/execution-router/SKILL.md +535 -0
  4543. package/skills/workflow-guide/SKILL.md +146 -0
  4544. package/skills/workflow-guide/scaffolds/README.md +36 -0
  4545. package/skills/workflow-guide/scaffolds/dag-required-reads/schemas/analysis-final-control.schema.json +28 -0
  4546. package/skills/workflow-guide/scaffolds/dag-required-reads/schemas/intake-control.schema.json +23 -0
  4547. package/skills/workflow-guide/scaffolds/dag-required-reads/schemas/report-control.schema.json +25 -0
  4548. package/skills/workflow-guide/scaffolds/dag-required-reads/schemas/review-control.schema.json +23 -0
  4549. package/skills/workflow-guide/scaffolds/dag-required-reads/schemas/scan-control.schema.json +29 -0
  4550. package/skills/workflow-guide/scaffolds/dag-required-reads/spec.json +118 -0
  4551. package/skills/workflow-guide/scaffolds/dag-required-reads/spec.json.validate.stderr +0 -0
  4552. package/skills/workflow-guide/scaffolds/dag-required-reads/spec.json.validate.stdout +13 -0
  4553. package/skills/workflow-guide/scaffolds/foreach-reduce/schemas/api-docs-control.schema.json +41 -0
  4554. package/skills/workflow-guide/scaffolds/foreach-reduce/schemas/endpoint-work-items-control.schema.json +35 -0
  4555. package/skills/workflow-guide/scaffolds/foreach-reduce/schemas/implementation-tests-control.schema.json +39 -0
  4556. package/skills/workflow-guide/scaffolds/foreach-reduce/schemas/report-control.schema.json +39 -0
  4557. package/skills/workflow-guide/scaffolds/foreach-reduce/schemas/verify-endpoint-control.schema.json +26 -0
  4558. package/skills/workflow-guide/scaffolds/foreach-reduce/spec.json +132 -0
  4559. package/skills/workflow-guide/scaffolds/matrix-dag/schemas/join-control.schema.json +65 -0
  4560. package/skills/workflow-guide/scaffolds/matrix-dag/schemas/lens-control.schema.json +83 -0
  4561. package/skills/workflow-guide/scaffolds/matrix-dag/schemas/release-control.schema.json +69 -0
  4562. package/skills/workflow-guide/scaffolds/matrix-dag/schemas/report-control.schema.json +65 -0
  4563. package/skills/workflow-guide/scaffolds/matrix-dag/schemas/scope-control.schema.json +54 -0
  4564. package/skills/workflow-guide/scaffolds/matrix-dag/spec.json +200 -0
  4565. package/skills/workflow-guide/scaffolds/object-tool-fallback/schemas/fetch-control.schema.json +33 -0
  4566. package/skills/workflow-guide/scaffolds/object-tool-fallback/schemas/inspect-control.schema.json +39 -0
  4567. package/skills/workflow-guide/scaffolds/object-tool-fallback/schemas/report-control.schema.json +44 -0
  4568. package/skills/workflow-guide/scaffolds/object-tool-fallback/spec.json +91 -0
  4569. package/skills/workflow-guide/scaffolds/support-partition/helpers/partition.mjs +173 -0
  4570. package/skills/workflow-guide/scaffolds/support-partition/schemas/candidates-control.schema.json +40 -0
  4571. package/skills/workflow-guide/scaffolds/support-partition/schemas/partition-control.schema.json +51 -0
  4572. package/skills/workflow-guide/scaffolds/support-partition/schemas/report-control.schema.json +30 -0
  4573. package/skills/workflow-guide/scaffolds/support-partition/schemas/verification-control.schema.json +26 -0
  4574. package/skills/workflow-guide/scaffolds/support-partition/spec.json +113 -0
  4575. package/src/agents.ts +432 -0
  4576. package/src/artifact-graph-runtime.ts +963 -0
  4577. package/src/artifact-graph-schema.ts +1852 -0
  4578. package/src/backend.ts +32 -0
  4579. package/src/cli.mjs +186 -0
  4580. package/src/compiler.ts +1803 -0
  4581. package/src/dynamic-control-ops.ts +934 -0
  4582. package/src/dynamic-controller-calls.ts +591 -0
  4583. package/src/dynamic-controller-errors.ts +23 -0
  4584. package/src/dynamic-controller-policy.ts +358 -0
  4585. package/src/dynamic-decision-loop.ts +413 -0
  4586. package/src/dynamic-decision.ts +859 -0
  4587. package/src/dynamic-events.ts +205 -0
  4588. package/src/dynamic-generated-task-runtime.ts +933 -0
  4589. package/src/dynamic-loader.ts +49 -0
  4590. package/src/dynamic-loop-actions.ts +253 -0
  4591. package/src/dynamic-loop-prompts.ts +137 -0
  4592. package/src/dynamic-loop-types.ts +191 -0
  4593. package/src/dynamic-profiles.ts +50 -0
  4594. package/src/dynamic-runtime-bundle.ts +175 -0
  4595. package/src/dynamic-state-index.ts +1132 -0
  4596. package/src/dynamic-state.ts +772 -0
  4597. package/src/engine-run-graph.ts +474 -0
  4598. package/src/engine.ts +2814 -0
  4599. package/src/extension.ts +1422 -0
  4600. package/src/index.ts +82 -0
  4601. package/src/json-schema.ts +411 -0
  4602. package/src/loop-runtime.ts +1069 -0
  4603. package/src/process-role.ts +53 -0
  4604. package/src/result.ts +53 -0
  4605. package/src/roles.ts +120 -0
  4606. package/src/schema.ts +120 -0
  4607. package/src/store.ts +1501 -0
  4608. package/src/subagent-backend.ts +1627 -0
  4609. package/src/tool-metadata.ts +286 -0
  4610. package/src/types.ts +757 -0
  4611. package/src/workflow-artifact-extension.ts +135 -0
  4612. package/src/workflow-artifact-tool.ts +885 -0
  4613. package/src/workflow-artifacts.ts +537 -0
  4614. package/src/workflow-fetch-cache-extension.ts +380 -0
  4615. package/src/workflow-helpers.ts +93 -0
  4616. package/src/workflow-output-artifacts.ts +1444 -0
  4617. package/src/workflow-runtime.ts +281 -0
  4618. package/src/workflow-source-context-runtime.ts +169 -0
  4619. package/src/workflow-specs.ts +283 -0
  4620. package/src/workflow-view.ts +2048 -0
  4621. package/src/worktree.ts +564 -0
  4622. package/workflows/README.md +74 -0
  4623. package/workflows/deep-research/helpers/claim-evidence-gate.mjs +335 -0
  4624. package/workflows/deep-research/helpers/render-executive.mjs +353 -0
  4625. package/workflows/deep-research/schemas/deep-research-executive-render-control.schema.json +65 -0
  4626. package/workflows/deep-research/schemas/deep-research-final-control.schema.json +83 -0
  4627. package/workflows/deep-research/schemas/deep-research-normalize-claims-control.schema.json +51 -0
  4628. package/workflows/deep-research/schemas/deep-research-plan-control.schema.json +79 -0
  4629. package/workflows/deep-research/schemas/deep-research-research-questions-control.schema.json +43 -0
  4630. package/workflows/deep-research/schemas/deep-research-verify-claims-control.schema.json +35 -0
  4631. package/workflows/deep-research/spec.json +174 -0
  4632. package/workflows/deep-review/helpers/finding-pipeline.mjs +1166 -0
  4633. package/workflows/deep-review/schemas/deep-review-dedup-control.schema.json +180 -0
  4634. package/workflows/deep-review/schemas/deep-review-devil-advocate-control.schema.json +21 -0
  4635. package/workflows/deep-review/schemas/deep-review-partition-control.schema.json +441 -0
  4636. package/workflows/deep-review/schemas/deep-review-report-control.schema.json +176 -0
  4637. package/workflows/deep-review/schemas/deep-review-reviewers-control.schema.json +81 -0
  4638. package/workflows/deep-review/schemas/deep-review-triage-control.schema.json +26 -0
  4639. package/workflows/deep-review/spec.json +159 -0
  4640. package/workflows/impact-review/schemas/api-contract-impact-control.schema.json +42 -0
  4641. package/workflows/impact-review/schemas/change-scope-control.schema.json +63 -0
  4642. package/workflows/impact-review/schemas/contract-consistency-control.schema.json +41 -0
  4643. package/workflows/impact-review/schemas/docs-release-impact-control.schema.json +42 -0
  4644. package/workflows/impact-review/schemas/impact-synthesis-control.schema.json +84 -0
  4645. package/workflows/impact-review/schemas/implementation-map-control.schema.json +45 -0
  4646. package/workflows/impact-review/schemas/regression-risk-control.schema.json +42 -0
  4647. package/workflows/impact-review/schemas/security-performance-impact-control.schema.json +42 -0
  4648. package/workflows/impact-review/schemas/ship-readiness-control.schema.json +48 -0
  4649. package/workflows/impact-review/schemas/state-data-impact-control.schema.json +42 -0
  4650. package/workflows/impact-review/schemas/validation-impact-control.schema.json +55 -0
  4651. package/workflows/impact-review/schemas/validation-map-control.schema.json +52 -0
  4652. package/workflows/impact-review/spec.json +249 -0
  4653. package/workflows/spec-review/helpers/spec-review-pipeline.mjs +246 -0
  4654. package/workflows/spec-review/schemas/spec-review-candidate-findings-control.schema.json +33 -0
  4655. package/workflows/spec-review/schemas/spec-review-extract-spec-control.schema.json +26 -0
  4656. package/workflows/spec-review/schemas/spec-review-inspect-tests-control.schema.json +25 -0
  4657. package/workflows/spec-review/schemas/spec-review-map-implementation-control.schema.json +25 -0
  4658. package/workflows/spec-review/schemas/spec-review-report-control.schema.json +26 -0
  4659. package/workflows/spec-review/schemas/spec-review-verify-findings-control.schema.json +21 -0
  4660. package/workflows/spec-review/spec.json +141 -0
@@ -0,0 +1,2314 @@
1
+ /*
2
+ * Copyright (c) 2010 Arc90 Inc
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /*
18
+ * This code is heavily based on Arc90's readability.js (1.7.1) script
19
+ * available at: http://code.google.com/p/arc90labs-readability
20
+ */
21
+
22
+ /**
23
+ * Public constructor.
24
+ * @param {HTMLDocument} doc The document to parse.
25
+ * @param {Object} options The options object.
26
+ */
27
+ function Readability(doc, options) {
28
+ // In some older versions, people passed a URI as the first argument. Cope:
29
+ if (options && options.documentElement) {
30
+ doc = options;
31
+ options = arguments[2];
32
+ } else if (!doc || !doc.documentElement) {
33
+ throw new Error("First argument to Readability constructor should be a document object.");
34
+ }
35
+ options = options || {};
36
+
37
+ this._doc = doc;
38
+ this._docJSDOMParser = this._doc.firstChild.__JSDOMParser__;
39
+ this._articleTitle = null;
40
+ this._articleByline = null;
41
+ this._articleDir = null;
42
+ this._articleSiteName = null;
43
+ this._attempts = [];
44
+
45
+ // Configurable options
46
+ this._debug = !!options.debug;
47
+ this._maxElemsToParse = options.maxElemsToParse || this.DEFAULT_MAX_ELEMS_TO_PARSE;
48
+ this._nbTopCandidates = options.nbTopCandidates || this.DEFAULT_N_TOP_CANDIDATES;
49
+ this._charThreshold = options.charThreshold || this.DEFAULT_CHAR_THRESHOLD;
50
+ this._classesToPreserve = this.CLASSES_TO_PRESERVE.concat(options.classesToPreserve || []);
51
+ this._keepClasses = !!options.keepClasses;
52
+ this._serializer = options.serializer || function(el) {
53
+ return el.innerHTML;
54
+ };
55
+ this._disableJSONLD = !!options.disableJSONLD;
56
+ this._allowedVideoRegex = options.allowedVideoRegex || this.REGEXPS.videos;
57
+
58
+ // Start with all flags set
59
+ this._flags = this.FLAG_STRIP_UNLIKELYS |
60
+ this.FLAG_WEIGHT_CLASSES |
61
+ this.FLAG_CLEAN_CONDITIONALLY;
62
+
63
+
64
+ // Control whether log messages are sent to the console
65
+ if (this._debug) {
66
+ let logNode = function(node) {
67
+ if (node.nodeType == node.TEXT_NODE) {
68
+ return `${node.nodeName} ("${node.textContent}")`;
69
+ }
70
+ let attrPairs = Array.from(node.attributes || [], function(attr) {
71
+ return `${attr.name}="${attr.value}"`;
72
+ }).join(" ");
73
+ return `<${node.localName} ${attrPairs}>`;
74
+ };
75
+ this.log = function () {
76
+ if (typeof console !== "undefined") {
77
+ let args = Array.from(arguments, arg => {
78
+ if (arg && arg.nodeType == this.ELEMENT_NODE) {
79
+ return logNode(arg);
80
+ }
81
+ return arg;
82
+ });
83
+ args.unshift("Reader: (Readability)");
84
+ console.log.apply(console, args);
85
+ } else if (typeof dump !== "undefined") {
86
+ /* global dump */
87
+ var msg = Array.prototype.map.call(arguments, function(x) {
88
+ return (x && x.nodeName) ? logNode(x) : x;
89
+ }).join(" ");
90
+ dump("Reader: (Readability) " + msg + "\n");
91
+ }
92
+ };
93
+ } else {
94
+ this.log = function () {};
95
+ }
96
+ }
97
+
98
+ Readability.prototype = {
99
+ FLAG_STRIP_UNLIKELYS: 0x1,
100
+ FLAG_WEIGHT_CLASSES: 0x2,
101
+ FLAG_CLEAN_CONDITIONALLY: 0x4,
102
+
103
+ // https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType
104
+ ELEMENT_NODE: 1,
105
+ TEXT_NODE: 3,
106
+
107
+ // Max number of nodes supported by this parser. Default: 0 (no limit)
108
+ DEFAULT_MAX_ELEMS_TO_PARSE: 0,
109
+
110
+ // The number of top candidates to consider when analysing how
111
+ // tight the competition is among candidates.
112
+ DEFAULT_N_TOP_CANDIDATES: 5,
113
+
114
+ // Element tags to score by default.
115
+ DEFAULT_TAGS_TO_SCORE: "section,h2,h3,h4,h5,h6,p,td,pre".toUpperCase().split(","),
116
+
117
+ // The default number of chars an article must have in order to return a result
118
+ DEFAULT_CHAR_THRESHOLD: 500,
119
+
120
+ // All of the regular expressions in use within readability.
121
+ // Defined up here so we don't instantiate them repeatedly in loops.
122
+ REGEXPS: {
123
+ // NOTE: These two regular expressions are duplicated in
124
+ // Readability-readerable.js. Please keep both copies in sync.
125
+ unlikelyCandidates: /-ad-|ai2html|banner|breadcrumbs|combx|comment|community|cover-wrap|disqus|extra|footer|gdpr|header|legends|menu|related|remark|replies|rss|shoutbox|sidebar|skyscraper|social|sponsor|supplemental|ad-break|agegate|pagination|pager|popup|yom-remote/i,
126
+ okMaybeItsACandidate: /and|article|body|column|content|main|shadow/i,
127
+
128
+ positive: /article|body|content|entry|hentry|h-entry|main|page|pagination|post|text|blog|story/i,
129
+ negative: /-ad-|hidden|^hid$| hid$| hid |^hid |banner|combx|comment|com-|contact|foot|footer|footnote|gdpr|masthead|media|meta|outbrain|promo|related|scroll|share|shoutbox|sidebar|skyscraper|sponsor|shopping|tags|tool|widget/i,
130
+ extraneous: /print|archive|comment|discuss|e[\-]?mail|share|reply|all|login|sign|single|utility/i,
131
+ byline: /byline|author|dateline|writtenby|p-author/i,
132
+ replaceFonts: /<(\/?)font[^>]*>/gi,
133
+ normalize: /\s{2,}/g,
134
+ videos: /\/\/(www\.)?((dailymotion|youtube|youtube-nocookie|player\.vimeo|v\.qq)\.com|(archive|upload\.wikimedia)\.org|player\.twitch\.tv)/i,
135
+ shareElements: /(\b|_)(share|sharedaddy)(\b|_)/i,
136
+ nextLink: /(next|weiter|continue|>([^\|]|$)|»([^\|]|$))/i,
137
+ prevLink: /(prev|earl|old|new|<|«)/i,
138
+ tokenize: /\W+/g,
139
+ whitespace: /^\s*$/,
140
+ hasContent: /\S$/,
141
+ hashUrl: /^#.+/,
142
+ srcsetUrl: /(\S+)(\s+[\d.]+[xw])?(\s*(?:,|$))/g,
143
+ b64DataUrl: /^data:\s*([^\s;,]+)\s*;\s*base64\s*,/i,
144
+ // Commas as used in Latin, Sindhi, Chinese and various other scripts.
145
+ // see: https://en.wikipedia.org/wiki/Comma#Comma_variants
146
+ commas: /\u002C|\u060C|\uFE50|\uFE10|\uFE11|\u2E41|\u2E34|\u2E32|\uFF0C/g,
147
+ // See: https://schema.org/Article
148
+ jsonLdArticleTypes: /^Article|AdvertiserContentArticle|NewsArticle|AnalysisNewsArticle|AskPublicNewsArticle|BackgroundNewsArticle|OpinionNewsArticle|ReportageNewsArticle|ReviewNewsArticle|Report|SatiricalArticle|ScholarlyArticle|MedicalScholarlyArticle|SocialMediaPosting|BlogPosting|LiveBlogPosting|DiscussionForumPosting|TechArticle|APIReference$/
149
+ },
150
+
151
+ UNLIKELY_ROLES: [ "menu", "menubar", "complementary", "navigation", "alert", "alertdialog", "dialog" ],
152
+
153
+ DIV_TO_P_ELEMS: new Set([ "BLOCKQUOTE", "DL", "DIV", "IMG", "OL", "P", "PRE", "TABLE", "UL" ]),
154
+
155
+ ALTER_TO_DIV_EXCEPTIONS: ["DIV", "ARTICLE", "SECTION", "P"],
156
+
157
+ PRESENTATIONAL_ATTRIBUTES: [ "align", "background", "bgcolor", "border", "cellpadding", "cellspacing", "frame", "hspace", "rules", "style", "valign", "vspace" ],
158
+
159
+ DEPRECATED_SIZE_ATTRIBUTE_ELEMS: [ "TABLE", "TH", "TD", "HR", "PRE" ],
160
+
161
+ // The commented out elements qualify as phrasing content but tend to be
162
+ // removed by readability when put into paragraphs, so we ignore them here.
163
+ PHRASING_ELEMS: [
164
+ // "CANVAS", "IFRAME", "SVG", "VIDEO",
165
+ "ABBR", "AUDIO", "B", "BDO", "BR", "BUTTON", "CITE", "CODE", "DATA",
166
+ "DATALIST", "DFN", "EM", "EMBED", "I", "IMG", "INPUT", "KBD", "LABEL",
167
+ "MARK", "MATH", "METER", "NOSCRIPT", "OBJECT", "OUTPUT", "PROGRESS", "Q",
168
+ "RUBY", "SAMP", "SCRIPT", "SELECT", "SMALL", "SPAN", "STRONG", "SUB",
169
+ "SUP", "TEXTAREA", "TIME", "VAR", "WBR"
170
+ ],
171
+
172
+ // These are the classes that readability sets itself.
173
+ CLASSES_TO_PRESERVE: [ "page" ],
174
+
175
+ // These are the list of HTML entities that need to be escaped.
176
+ HTML_ESCAPE_MAP: {
177
+ "lt": "<",
178
+ "gt": ">",
179
+ "amp": "&",
180
+ "quot": '"',
181
+ "apos": "'",
182
+ },
183
+
184
+ /**
185
+ * Run any post-process modifications to article content as necessary.
186
+ *
187
+ * @param Element
188
+ * @return void
189
+ **/
190
+ _postProcessContent: function(articleContent) {
191
+ // Readability cannot open relative uris so we convert them to absolute uris.
192
+ this._fixRelativeUris(articleContent);
193
+
194
+ this._simplifyNestedElements(articleContent);
195
+
196
+ if (!this._keepClasses) {
197
+ // Remove classes.
198
+ this._cleanClasses(articleContent);
199
+ }
200
+ },
201
+
202
+ /**
203
+ * Iterates over a NodeList, calls `filterFn` for each node and removes node
204
+ * if function returned `true`.
205
+ *
206
+ * If function is not passed, removes all the nodes in node list.
207
+ *
208
+ * @param NodeList nodeList The nodes to operate on
209
+ * @param Function filterFn the function to use as a filter
210
+ * @return void
211
+ */
212
+ _removeNodes: function(nodeList, filterFn) {
213
+ // Avoid ever operating on live node lists.
214
+ if (this._docJSDOMParser && nodeList._isLiveNodeList) {
215
+ throw new Error("Do not pass live node lists to _removeNodes");
216
+ }
217
+ for (var i = nodeList.length - 1; i >= 0; i--) {
218
+ var node = nodeList[i];
219
+ var parentNode = node.parentNode;
220
+ if (parentNode) {
221
+ if (!filterFn || filterFn.call(this, node, i, nodeList)) {
222
+ parentNode.removeChild(node);
223
+ }
224
+ }
225
+ }
226
+ },
227
+
228
+ /**
229
+ * Iterates over a NodeList, and calls _setNodeTag for each node.
230
+ *
231
+ * @param NodeList nodeList The nodes to operate on
232
+ * @param String newTagName the new tag name to use
233
+ * @return void
234
+ */
235
+ _replaceNodeTags: function(nodeList, newTagName) {
236
+ // Avoid ever operating on live node lists.
237
+ if (this._docJSDOMParser && nodeList._isLiveNodeList) {
238
+ throw new Error("Do not pass live node lists to _replaceNodeTags");
239
+ }
240
+ for (const node of nodeList) {
241
+ this._setNodeTag(node, newTagName);
242
+ }
243
+ },
244
+
245
+ /**
246
+ * Iterate over a NodeList, which doesn't natively fully implement the Array
247
+ * interface.
248
+ *
249
+ * For convenience, the current object context is applied to the provided
250
+ * iterate function.
251
+ *
252
+ * @param NodeList nodeList The NodeList.
253
+ * @param Function fn The iterate function.
254
+ * @return void
255
+ */
256
+ _forEachNode: function(nodeList, fn) {
257
+ Array.prototype.forEach.call(nodeList, fn, this);
258
+ },
259
+
260
+ /**
261
+ * Iterate over a NodeList, and return the first node that passes
262
+ * the supplied test function
263
+ *
264
+ * For convenience, the current object context is applied to the provided
265
+ * test function.
266
+ *
267
+ * @param NodeList nodeList The NodeList.
268
+ * @param Function fn The test function.
269
+ * @return void
270
+ */
271
+ _findNode: function(nodeList, fn) {
272
+ return Array.prototype.find.call(nodeList, fn, this);
273
+ },
274
+
275
+ /**
276
+ * Iterate over a NodeList, return true if any of the provided iterate
277
+ * function calls returns true, false otherwise.
278
+ *
279
+ * For convenience, the current object context is applied to the
280
+ * provided iterate function.
281
+ *
282
+ * @param NodeList nodeList The NodeList.
283
+ * @param Function fn The iterate function.
284
+ * @return Boolean
285
+ */
286
+ _someNode: function(nodeList, fn) {
287
+ return Array.prototype.some.call(nodeList, fn, this);
288
+ },
289
+
290
+ /**
291
+ * Iterate over a NodeList, return true if all of the provided iterate
292
+ * function calls return true, false otherwise.
293
+ *
294
+ * For convenience, the current object context is applied to the
295
+ * provided iterate function.
296
+ *
297
+ * @param NodeList nodeList The NodeList.
298
+ * @param Function fn The iterate function.
299
+ * @return Boolean
300
+ */
301
+ _everyNode: function(nodeList, fn) {
302
+ return Array.prototype.every.call(nodeList, fn, this);
303
+ },
304
+
305
+ /**
306
+ * Concat all nodelists passed as arguments.
307
+ *
308
+ * @return ...NodeList
309
+ * @return Array
310
+ */
311
+ _concatNodeLists: function() {
312
+ var slice = Array.prototype.slice;
313
+ var args = slice.call(arguments);
314
+ var nodeLists = args.map(function(list) {
315
+ return slice.call(list);
316
+ });
317
+ return Array.prototype.concat.apply([], nodeLists);
318
+ },
319
+
320
+ _getAllNodesWithTag: function(node, tagNames) {
321
+ if (node.querySelectorAll) {
322
+ return node.querySelectorAll(tagNames.join(","));
323
+ }
324
+ return [].concat.apply([], tagNames.map(function(tag) {
325
+ var collection = node.getElementsByTagName(tag);
326
+ return Array.isArray(collection) ? collection : Array.from(collection);
327
+ }));
328
+ },
329
+
330
+ /**
331
+ * Removes the class="" attribute from every element in the given
332
+ * subtree, except those that match CLASSES_TO_PRESERVE and
333
+ * the classesToPreserve array from the options object.
334
+ *
335
+ * @param Element
336
+ * @return void
337
+ */
338
+ _cleanClasses: function(node) {
339
+ var classesToPreserve = this._classesToPreserve;
340
+ var className = (node.getAttribute("class") || "")
341
+ .split(/\s+/)
342
+ .filter(function(cls) {
343
+ return classesToPreserve.indexOf(cls) != -1;
344
+ })
345
+ .join(" ");
346
+
347
+ if (className) {
348
+ node.setAttribute("class", className);
349
+ } else {
350
+ node.removeAttribute("class");
351
+ }
352
+
353
+ for (node = node.firstElementChild; node; node = node.nextElementSibling) {
354
+ this._cleanClasses(node);
355
+ }
356
+ },
357
+
358
+ /**
359
+ * Converts each <a> and <img> uri in the given element to an absolute URI,
360
+ * ignoring #ref URIs.
361
+ *
362
+ * @param Element
363
+ * @return void
364
+ */
365
+ _fixRelativeUris: function(articleContent) {
366
+ var baseURI = this._doc.baseURI;
367
+ var documentURI = this._doc.documentURI;
368
+ function toAbsoluteURI(uri) {
369
+ // Leave hash links alone if the base URI matches the document URI:
370
+ if (baseURI == documentURI && uri.charAt(0) == "#") {
371
+ return uri;
372
+ }
373
+
374
+ // Otherwise, resolve against base URI:
375
+ try {
376
+ return new URL(uri, baseURI).href;
377
+ } catch (ex) {
378
+ // Something went wrong, just return the original:
379
+ }
380
+ return uri;
381
+ }
382
+
383
+ var links = this._getAllNodesWithTag(articleContent, ["a"]);
384
+ this._forEachNode(links, function(link) {
385
+ var href = link.getAttribute("href");
386
+ if (href) {
387
+ // Remove links with javascript: URIs, since
388
+ // they won't work after scripts have been removed from the page.
389
+ if (href.indexOf("javascript:") === 0) {
390
+ // if the link only contains simple text content, it can be converted to a text node
391
+ if (link.childNodes.length === 1 && link.childNodes[0].nodeType === this.TEXT_NODE) {
392
+ var text = this._doc.createTextNode(link.textContent);
393
+ link.parentNode.replaceChild(text, link);
394
+ } else {
395
+ // if the link has multiple children, they should all be preserved
396
+ var container = this._doc.createElement("span");
397
+ while (link.firstChild) {
398
+ container.appendChild(link.firstChild);
399
+ }
400
+ link.parentNode.replaceChild(container, link);
401
+ }
402
+ } else {
403
+ link.setAttribute("href", toAbsoluteURI(href));
404
+ }
405
+ }
406
+ });
407
+
408
+ var medias = this._getAllNodesWithTag(articleContent, [
409
+ "img", "picture", "figure", "video", "audio", "source"
410
+ ]);
411
+
412
+ this._forEachNode(medias, function(media) {
413
+ var src = media.getAttribute("src");
414
+ var poster = media.getAttribute("poster");
415
+ var srcset = media.getAttribute("srcset");
416
+
417
+ if (src) {
418
+ media.setAttribute("src", toAbsoluteURI(src));
419
+ }
420
+
421
+ if (poster) {
422
+ media.setAttribute("poster", toAbsoluteURI(poster));
423
+ }
424
+
425
+ if (srcset) {
426
+ var newSrcset = srcset.replace(this.REGEXPS.srcsetUrl, function(_, p1, p2, p3) {
427
+ return toAbsoluteURI(p1) + (p2 || "") + p3;
428
+ });
429
+
430
+ media.setAttribute("srcset", newSrcset);
431
+ }
432
+ });
433
+ },
434
+
435
+ _simplifyNestedElements: function(articleContent) {
436
+ var node = articleContent;
437
+
438
+ while (node) {
439
+ if (node.parentNode && ["DIV", "SECTION"].includes(node.tagName) && !(node.id && node.id.startsWith("readability"))) {
440
+ if (this._isElementWithoutContent(node)) {
441
+ node = this._removeAndGetNext(node);
442
+ continue;
443
+ } else if (this._hasSingleTagInsideElement(node, "DIV") || this._hasSingleTagInsideElement(node, "SECTION")) {
444
+ var child = node.children[0];
445
+ for (var i = 0; i < node.attributes.length; i++) {
446
+ child.setAttribute(node.attributes[i].name, node.attributes[i].value);
447
+ }
448
+ node.parentNode.replaceChild(child, node);
449
+ node = child;
450
+ continue;
451
+ }
452
+ }
453
+
454
+ node = this._getNextNode(node);
455
+ }
456
+ },
457
+
458
+ /**
459
+ * Get the article title as an H1.
460
+ *
461
+ * @return string
462
+ **/
463
+ _getArticleTitle: function() {
464
+ var doc = this._doc;
465
+ var curTitle = "";
466
+ var origTitle = "";
467
+
468
+ try {
469
+ curTitle = origTitle = doc.title.trim();
470
+
471
+ // If they had an element with id "title" in their HTML
472
+ if (typeof curTitle !== "string")
473
+ curTitle = origTitle = this._getInnerText(doc.getElementsByTagName("title")[0]);
474
+ } catch (e) {/* ignore exceptions setting the title. */}
475
+
476
+ var titleHadHierarchicalSeparators = false;
477
+ function wordCount(str) {
478
+ return str.split(/\s+/).length;
479
+ }
480
+
481
+ // If there's a separator in the title, first remove the final part
482
+ if ((/ [\|\-\\\/>»] /).test(curTitle)) {
483
+ titleHadHierarchicalSeparators = / [\\\/>»] /.test(curTitle);
484
+ curTitle = origTitle.replace(/(.*)[\|\-\\\/>»] .*/gi, "$1");
485
+
486
+ // If the resulting title is too short (3 words or fewer), remove
487
+ // the first part instead:
488
+ if (wordCount(curTitle) < 3)
489
+ curTitle = origTitle.replace(/[^\|\-\\\/>»]*[\|\-\\\/>»](.*)/gi, "$1");
490
+ } else if (curTitle.indexOf(": ") !== -1) {
491
+ // Check if we have an heading containing this exact string, so we
492
+ // could assume it's the full title.
493
+ var headings = this._concatNodeLists(
494
+ doc.getElementsByTagName("h1"),
495
+ doc.getElementsByTagName("h2")
496
+ );
497
+ var trimmedTitle = curTitle.trim();
498
+ var match = this._someNode(headings, function(heading) {
499
+ return heading.textContent.trim() === trimmedTitle;
500
+ });
501
+
502
+ // If we don't, let's extract the title out of the original title string.
503
+ if (!match) {
504
+ curTitle = origTitle.substring(origTitle.lastIndexOf(":") + 1);
505
+
506
+ // If the title is now too short, try the first colon instead:
507
+ if (wordCount(curTitle) < 3) {
508
+ curTitle = origTitle.substring(origTitle.indexOf(":") + 1);
509
+ // But if we have too many words before the colon there's something weird
510
+ // with the titles and the H tags so let's just use the original title instead
511
+ } else if (wordCount(origTitle.substr(0, origTitle.indexOf(":"))) > 5) {
512
+ curTitle = origTitle;
513
+ }
514
+ }
515
+ } else if (curTitle.length > 150 || curTitle.length < 15) {
516
+ var hOnes = doc.getElementsByTagName("h1");
517
+
518
+ if (hOnes.length === 1)
519
+ curTitle = this._getInnerText(hOnes[0]);
520
+ }
521
+
522
+ curTitle = curTitle.trim().replace(this.REGEXPS.normalize, " ");
523
+ // If we now have 4 words or fewer as our title, and either no
524
+ // 'hierarchical' separators (\, /, > or ») were found in the original
525
+ // title or we decreased the number of words by more than 1 word, use
526
+ // the original title.
527
+ var curTitleWordCount = wordCount(curTitle);
528
+ if (curTitleWordCount <= 4 &&
529
+ (!titleHadHierarchicalSeparators ||
530
+ curTitleWordCount != wordCount(origTitle.replace(/[\|\-\\\/>»]+/g, "")) - 1)) {
531
+ curTitle = origTitle;
532
+ }
533
+
534
+ return curTitle;
535
+ },
536
+
537
+ /**
538
+ * Prepare the HTML document for readability to scrape it.
539
+ * This includes things like stripping javascript, CSS, and handling terrible markup.
540
+ *
541
+ * @return void
542
+ **/
543
+ _prepDocument: function() {
544
+ var doc = this._doc;
545
+
546
+ // Remove all style tags in head
547
+ this._removeNodes(this._getAllNodesWithTag(doc, ["style"]));
548
+
549
+ if (doc.body) {
550
+ this._replaceBrs(doc.body);
551
+ }
552
+
553
+ this._replaceNodeTags(this._getAllNodesWithTag(doc, ["font"]), "SPAN");
554
+ },
555
+
556
+ /**
557
+ * Finds the next node, starting from the given node, and ignoring
558
+ * whitespace in between. If the given node is an element, the same node is
559
+ * returned.
560
+ */
561
+ _nextNode: function (node) {
562
+ var next = node;
563
+ while (next
564
+ && (next.nodeType != this.ELEMENT_NODE)
565
+ && this.REGEXPS.whitespace.test(next.textContent)) {
566
+ next = next.nextSibling;
567
+ }
568
+ return next;
569
+ },
570
+
571
+ /**
572
+ * Replaces 2 or more successive <br> elements with a single <p>.
573
+ * Whitespace between <br> elements are ignored. For example:
574
+ * <div>foo<br>bar<br> <br><br>abc</div>
575
+ * will become:
576
+ * <div>foo<br>bar<p>abc</p></div>
577
+ */
578
+ _replaceBrs: function (elem) {
579
+ this._forEachNode(this._getAllNodesWithTag(elem, ["br"]), function(br) {
580
+ var next = br.nextSibling;
581
+
582
+ // Whether 2 or more <br> elements have been found and replaced with a
583
+ // <p> block.
584
+ var replaced = false;
585
+
586
+ // If we find a <br> chain, remove the <br>s until we hit another node
587
+ // or non-whitespace. This leaves behind the first <br> in the chain
588
+ // (which will be replaced with a <p> later).
589
+ while ((next = this._nextNode(next)) && (next.tagName == "BR")) {
590
+ replaced = true;
591
+ var brSibling = next.nextSibling;
592
+ next.parentNode.removeChild(next);
593
+ next = brSibling;
594
+ }
595
+
596
+ // If we removed a <br> chain, replace the remaining <br> with a <p>. Add
597
+ // all sibling nodes as children of the <p> until we hit another <br>
598
+ // chain.
599
+ if (replaced) {
600
+ var p = this._doc.createElement("p");
601
+ br.parentNode.replaceChild(p, br);
602
+
603
+ next = p.nextSibling;
604
+ while (next) {
605
+ // If we've hit another <br><br>, we're done adding children to this <p>.
606
+ if (next.tagName == "BR") {
607
+ var nextElem = this._nextNode(next.nextSibling);
608
+ if (nextElem && nextElem.tagName == "BR")
609
+ break;
610
+ }
611
+
612
+ if (!this._isPhrasingContent(next))
613
+ break;
614
+
615
+ // Otherwise, make this node a child of the new <p>.
616
+ var sibling = next.nextSibling;
617
+ p.appendChild(next);
618
+ next = sibling;
619
+ }
620
+
621
+ while (p.lastChild && this._isWhitespace(p.lastChild)) {
622
+ p.removeChild(p.lastChild);
623
+ }
624
+
625
+ if (p.parentNode.tagName === "P")
626
+ this._setNodeTag(p.parentNode, "DIV");
627
+ }
628
+ });
629
+ },
630
+
631
+ _setNodeTag: function (node, tag) {
632
+ this.log("_setNodeTag", node, tag);
633
+ if (this._docJSDOMParser) {
634
+ node.localName = tag.toLowerCase();
635
+ node.tagName = tag.toUpperCase();
636
+ return node;
637
+ }
638
+
639
+ var replacement = node.ownerDocument.createElement(tag);
640
+ while (node.firstChild) {
641
+ replacement.appendChild(node.firstChild);
642
+ }
643
+ node.parentNode.replaceChild(replacement, node);
644
+ if (node.readability)
645
+ replacement.readability = node.readability;
646
+
647
+ for (var i = 0; i < node.attributes.length; i++) {
648
+ try {
649
+ replacement.setAttribute(node.attributes[i].name, node.attributes[i].value);
650
+ } catch (ex) {
651
+ /* it's possible for setAttribute() to throw if the attribute name
652
+ * isn't a valid XML Name. Such attributes can however be parsed from
653
+ * source in HTML docs, see https://github.com/whatwg/html/issues/4275,
654
+ * so we can hit them here and then throw. We don't care about such
655
+ * attributes so we ignore them.
656
+ */
657
+ }
658
+ }
659
+ return replacement;
660
+ },
661
+
662
+ /**
663
+ * Prepare the article node for display. Clean out any inline styles,
664
+ * iframes, forms, strip extraneous <p> tags, etc.
665
+ *
666
+ * @param Element
667
+ * @return void
668
+ **/
669
+ _prepArticle: function(articleContent) {
670
+ this._cleanStyles(articleContent);
671
+
672
+ // Check for data tables before we continue, to avoid removing items in
673
+ // those tables, which will often be isolated even though they're
674
+ // visually linked to other content-ful elements (text, images, etc.).
675
+ this._markDataTables(articleContent);
676
+
677
+ this._fixLazyImages(articleContent);
678
+
679
+ // Clean out junk from the article content
680
+ this._cleanConditionally(articleContent, "form");
681
+ this._cleanConditionally(articleContent, "fieldset");
682
+ this._clean(articleContent, "object");
683
+ this._clean(articleContent, "embed");
684
+ this._clean(articleContent, "footer");
685
+ this._clean(articleContent, "link");
686
+ this._clean(articleContent, "aside");
687
+
688
+ // Clean out elements with little content that have "share" in their id/class combinations from final top candidates,
689
+ // which means we don't remove the top candidates even they have "share".
690
+
691
+ var shareElementThreshold = this.DEFAULT_CHAR_THRESHOLD;
692
+
693
+ this._forEachNode(articleContent.children, function (topCandidate) {
694
+ this._cleanMatchedNodes(topCandidate, function (node, matchString) {
695
+ return this.REGEXPS.shareElements.test(matchString) && node.textContent.length < shareElementThreshold;
696
+ });
697
+ });
698
+
699
+ this._clean(articleContent, "iframe");
700
+ this._clean(articleContent, "input");
701
+ this._clean(articleContent, "textarea");
702
+ this._clean(articleContent, "select");
703
+ this._clean(articleContent, "button");
704
+ this._cleanHeaders(articleContent);
705
+
706
+ // Do these last as the previous stuff may have removed junk
707
+ // that will affect these
708
+ this._cleanConditionally(articleContent, "table");
709
+ this._cleanConditionally(articleContent, "ul");
710
+ this._cleanConditionally(articleContent, "div");
711
+
712
+ // replace H1 with H2 as H1 should be only title that is displayed separately
713
+ this._replaceNodeTags(this._getAllNodesWithTag(articleContent, ["h1"]), "h2");
714
+
715
+ // Remove extra paragraphs
716
+ this._removeNodes(this._getAllNodesWithTag(articleContent, ["p"]), function (paragraph) {
717
+ var imgCount = paragraph.getElementsByTagName("img").length;
718
+ var embedCount = paragraph.getElementsByTagName("embed").length;
719
+ var objectCount = paragraph.getElementsByTagName("object").length;
720
+ // At this point, nasty iframes have been removed, only remain embedded video ones.
721
+ var iframeCount = paragraph.getElementsByTagName("iframe").length;
722
+ var totalCount = imgCount + embedCount + objectCount + iframeCount;
723
+
724
+ return totalCount === 0 && !this._getInnerText(paragraph, false);
725
+ });
726
+
727
+ this._forEachNode(this._getAllNodesWithTag(articleContent, ["br"]), function(br) {
728
+ var next = this._nextNode(br.nextSibling);
729
+ if (next && next.tagName == "P")
730
+ br.parentNode.removeChild(br);
731
+ });
732
+
733
+ // Remove single-cell tables
734
+ this._forEachNode(this._getAllNodesWithTag(articleContent, ["table"]), function(table) {
735
+ var tbody = this._hasSingleTagInsideElement(table, "TBODY") ? table.firstElementChild : table;
736
+ if (this._hasSingleTagInsideElement(tbody, "TR")) {
737
+ var row = tbody.firstElementChild;
738
+ if (this._hasSingleTagInsideElement(row, "TD")) {
739
+ var cell = row.firstElementChild;
740
+ cell = this._setNodeTag(cell, this._everyNode(cell.childNodes, this._isPhrasingContent) ? "P" : "DIV");
741
+ table.parentNode.replaceChild(cell, table);
742
+ }
743
+ }
744
+ });
745
+ },
746
+
747
+ /**
748
+ * Initialize a node with the readability object. Also checks the
749
+ * className/id for special names to add to its score.
750
+ *
751
+ * @param Element
752
+ * @return void
753
+ **/
754
+ _initializeNode: function(node) {
755
+ node.readability = {"contentScore": 0};
756
+
757
+ switch (node.tagName) {
758
+ case "DIV":
759
+ node.readability.contentScore += 5;
760
+ break;
761
+
762
+ case "PRE":
763
+ case "TD":
764
+ case "BLOCKQUOTE":
765
+ node.readability.contentScore += 3;
766
+ break;
767
+
768
+ case "ADDRESS":
769
+ case "OL":
770
+ case "UL":
771
+ case "DL":
772
+ case "DD":
773
+ case "DT":
774
+ case "LI":
775
+ case "FORM":
776
+ node.readability.contentScore -= 3;
777
+ break;
778
+
779
+ case "H1":
780
+ case "H2":
781
+ case "H3":
782
+ case "H4":
783
+ case "H5":
784
+ case "H6":
785
+ case "TH":
786
+ node.readability.contentScore -= 5;
787
+ break;
788
+ }
789
+
790
+ node.readability.contentScore += this._getClassWeight(node);
791
+ },
792
+
793
+ _removeAndGetNext: function(node) {
794
+ var nextNode = this._getNextNode(node, true);
795
+ node.parentNode.removeChild(node);
796
+ return nextNode;
797
+ },
798
+
799
+ /**
800
+ * Traverse the DOM from node to node, starting at the node passed in.
801
+ * Pass true for the second parameter to indicate this node itself
802
+ * (and its kids) are going away, and we want the next node over.
803
+ *
804
+ * Calling this in a loop will traverse the DOM depth-first.
805
+ */
806
+ _getNextNode: function(node, ignoreSelfAndKids) {
807
+ // First check for kids if those aren't being ignored
808
+ if (!ignoreSelfAndKids && node.firstElementChild) {
809
+ return node.firstElementChild;
810
+ }
811
+ // Then for siblings...
812
+ if (node.nextElementSibling) {
813
+ return node.nextElementSibling;
814
+ }
815
+ // And finally, move up the parent chain *and* find a sibling
816
+ // (because this is depth-first traversal, we will have already
817
+ // seen the parent nodes themselves).
818
+ do {
819
+ node = node.parentNode;
820
+ } while (node && !node.nextElementSibling);
821
+ return node && node.nextElementSibling;
822
+ },
823
+
824
+ // compares second text to first one
825
+ // 1 = same text, 0 = completely different text
826
+ // works the way that it splits both texts into words and then finds words that are unique in second text
827
+ // the result is given by the lower length of unique parts
828
+ _textSimilarity: function(textA, textB) {
829
+ var tokensA = textA.toLowerCase().split(this.REGEXPS.tokenize).filter(Boolean);
830
+ var tokensB = textB.toLowerCase().split(this.REGEXPS.tokenize).filter(Boolean);
831
+ if (!tokensA.length || !tokensB.length) {
832
+ return 0;
833
+ }
834
+ var uniqTokensB = tokensB.filter(token => !tokensA.includes(token));
835
+ var distanceB = uniqTokensB.join(" ").length / tokensB.join(" ").length;
836
+ return 1 - distanceB;
837
+ },
838
+
839
+ _checkByline: function(node, matchString) {
840
+ if (this._articleByline) {
841
+ return false;
842
+ }
843
+
844
+ if (node.getAttribute !== undefined) {
845
+ var rel = node.getAttribute("rel");
846
+ var itemprop = node.getAttribute("itemprop");
847
+ }
848
+
849
+ if ((rel === "author" || (itemprop && itemprop.indexOf("author") !== -1) || this.REGEXPS.byline.test(matchString)) && this._isValidByline(node.textContent)) {
850
+ this._articleByline = node.textContent.trim();
851
+ return true;
852
+ }
853
+
854
+ return false;
855
+ },
856
+
857
+ _getNodeAncestors: function(node, maxDepth) {
858
+ maxDepth = maxDepth || 0;
859
+ var i = 0, ancestors = [];
860
+ while (node.parentNode) {
861
+ ancestors.push(node.parentNode);
862
+ if (maxDepth && ++i === maxDepth)
863
+ break;
864
+ node = node.parentNode;
865
+ }
866
+ return ancestors;
867
+ },
868
+
869
+ /***
870
+ * grabArticle - Using a variety of metrics (content score, classname, element types), find the content that is
871
+ * most likely to be the stuff a user wants to read. Then return it wrapped up in a div.
872
+ *
873
+ * @param page a document to run upon. Needs to be a full document, complete with body.
874
+ * @return Element
875
+ **/
876
+ _grabArticle: function (page) {
877
+ this.log("**** grabArticle ****");
878
+ var doc = this._doc;
879
+ var isPaging = page !== null;
880
+ page = page ? page : this._doc.body;
881
+
882
+ // We can't grab an article if we don't have a page!
883
+ if (!page) {
884
+ this.log("No body found in document. Abort.");
885
+ return null;
886
+ }
887
+
888
+ var pageCacheHtml = page.innerHTML;
889
+
890
+ while (true) {
891
+ this.log("Starting grabArticle loop");
892
+ var stripUnlikelyCandidates = this._flagIsActive(this.FLAG_STRIP_UNLIKELYS);
893
+
894
+ // First, node prepping. Trash nodes that look cruddy (like ones with the
895
+ // class name "comment", etc), and turn divs into P tags where they have been
896
+ // used inappropriately (as in, where they contain no other block level elements.)
897
+ var elementsToScore = [];
898
+ var node = this._doc.documentElement;
899
+
900
+ let shouldRemoveTitleHeader = true;
901
+
902
+ while (node) {
903
+
904
+ if (node.tagName === "HTML") {
905
+ this._articleLang = node.getAttribute("lang");
906
+ }
907
+
908
+ var matchString = node.className + " " + node.id;
909
+
910
+ if (!this._isProbablyVisible(node)) {
911
+ this.log("Removing hidden node - " + matchString);
912
+ node = this._removeAndGetNext(node);
913
+ continue;
914
+ }
915
+
916
+ // User is not able to see elements applied with both "aria-modal = true" and "role = dialog"
917
+ if (node.getAttribute("aria-modal") == "true" && node.getAttribute("role") == "dialog") {
918
+ node = this._removeAndGetNext(node);
919
+ continue;
920
+ }
921
+
922
+ // Check to see if this node is a byline, and remove it if it is.
923
+ if (this._checkByline(node, matchString)) {
924
+ node = this._removeAndGetNext(node);
925
+ continue;
926
+ }
927
+
928
+ if (shouldRemoveTitleHeader && this._headerDuplicatesTitle(node)) {
929
+ this.log("Removing header: ", node.textContent.trim(), this._articleTitle.trim());
930
+ shouldRemoveTitleHeader = false;
931
+ node = this._removeAndGetNext(node);
932
+ continue;
933
+ }
934
+
935
+ // Remove unlikely candidates
936
+ if (stripUnlikelyCandidates) {
937
+ if (this.REGEXPS.unlikelyCandidates.test(matchString) &&
938
+ !this.REGEXPS.okMaybeItsACandidate.test(matchString) &&
939
+ !this._hasAncestorTag(node, "table") &&
940
+ !this._hasAncestorTag(node, "code") &&
941
+ node.tagName !== "BODY" &&
942
+ node.tagName !== "A") {
943
+ this.log("Removing unlikely candidate - " + matchString);
944
+ node = this._removeAndGetNext(node);
945
+ continue;
946
+ }
947
+
948
+ if (this.UNLIKELY_ROLES.includes(node.getAttribute("role"))) {
949
+ this.log("Removing content with role " + node.getAttribute("role") + " - " + matchString);
950
+ node = this._removeAndGetNext(node);
951
+ continue;
952
+ }
953
+ }
954
+
955
+ // Remove DIV, SECTION, and HEADER nodes without any content(e.g. text, image, video, or iframe).
956
+ if ((node.tagName === "DIV" || node.tagName === "SECTION" || node.tagName === "HEADER" ||
957
+ node.tagName === "H1" || node.tagName === "H2" || node.tagName === "H3" ||
958
+ node.tagName === "H4" || node.tagName === "H5" || node.tagName === "H6") &&
959
+ this._isElementWithoutContent(node)) {
960
+ node = this._removeAndGetNext(node);
961
+ continue;
962
+ }
963
+
964
+ if (this.DEFAULT_TAGS_TO_SCORE.indexOf(node.tagName) !== -1) {
965
+ elementsToScore.push(node);
966
+ }
967
+
968
+ // Turn all divs that don't have children block level elements into p's
969
+ if (node.tagName === "DIV") {
970
+ // Put phrasing content into paragraphs.
971
+ var p = null;
972
+ var childNode = node.firstChild;
973
+ while (childNode) {
974
+ var nextSibling = childNode.nextSibling;
975
+ if (this._isPhrasingContent(childNode)) {
976
+ if (p !== null) {
977
+ p.appendChild(childNode);
978
+ } else if (!this._isWhitespace(childNode)) {
979
+ p = doc.createElement("p");
980
+ node.replaceChild(p, childNode);
981
+ p.appendChild(childNode);
982
+ }
983
+ } else if (p !== null) {
984
+ while (p.lastChild && this._isWhitespace(p.lastChild)) {
985
+ p.removeChild(p.lastChild);
986
+ }
987
+ p = null;
988
+ }
989
+ childNode = nextSibling;
990
+ }
991
+
992
+ // Sites like http://mobile.slate.com encloses each paragraph with a DIV
993
+ // element. DIVs with only a P element inside and no text content can be
994
+ // safely converted into plain P elements to avoid confusing the scoring
995
+ // algorithm with DIVs with are, in practice, paragraphs.
996
+ if (this._hasSingleTagInsideElement(node, "P") && this._getLinkDensity(node) < 0.25) {
997
+ var newNode = node.children[0];
998
+ node.parentNode.replaceChild(newNode, node);
999
+ node = newNode;
1000
+ elementsToScore.push(node);
1001
+ } else if (!this._hasChildBlockElement(node)) {
1002
+ node = this._setNodeTag(node, "P");
1003
+ elementsToScore.push(node);
1004
+ }
1005
+ }
1006
+ node = this._getNextNode(node);
1007
+ }
1008
+
1009
+ /**
1010
+ * Loop through all paragraphs, and assign a score to them based on how content-y they look.
1011
+ * Then add their score to their parent node.
1012
+ *
1013
+ * A score is determined by things like number of commas, class names, etc. Maybe eventually link density.
1014
+ **/
1015
+ var candidates = [];
1016
+ this._forEachNode(elementsToScore, function(elementToScore) {
1017
+ if (!elementToScore.parentNode || typeof(elementToScore.parentNode.tagName) === "undefined")
1018
+ return;
1019
+
1020
+ // If this paragraph is less than 25 characters, don't even count it.
1021
+ var innerText = this._getInnerText(elementToScore);
1022
+ if (innerText.length < 25)
1023
+ return;
1024
+
1025
+ // Exclude nodes with no ancestor.
1026
+ var ancestors = this._getNodeAncestors(elementToScore, 5);
1027
+ if (ancestors.length === 0)
1028
+ return;
1029
+
1030
+ var contentScore = 0;
1031
+
1032
+ // Add a point for the paragraph itself as a base.
1033
+ contentScore += 1;
1034
+
1035
+ // Add points for any commas within this paragraph.
1036
+ contentScore += innerText.split(this.REGEXPS.commas).length;
1037
+
1038
+ // For every 100 characters in this paragraph, add another point. Up to 3 points.
1039
+ contentScore += Math.min(Math.floor(innerText.length / 100), 3);
1040
+
1041
+ // Initialize and score ancestors.
1042
+ this._forEachNode(ancestors, function(ancestor, level) {
1043
+ if (!ancestor.tagName || !ancestor.parentNode || typeof(ancestor.parentNode.tagName) === "undefined")
1044
+ return;
1045
+
1046
+ if (typeof(ancestor.readability) === "undefined") {
1047
+ this._initializeNode(ancestor);
1048
+ candidates.push(ancestor);
1049
+ }
1050
+
1051
+ // Node score divider:
1052
+ // - parent: 1 (no division)
1053
+ // - grandparent: 2
1054
+ // - great grandparent+: ancestor level * 3
1055
+ if (level === 0)
1056
+ var scoreDivider = 1;
1057
+ else if (level === 1)
1058
+ scoreDivider = 2;
1059
+ else
1060
+ scoreDivider = level * 3;
1061
+ ancestor.readability.contentScore += contentScore / scoreDivider;
1062
+ });
1063
+ });
1064
+
1065
+ // After we've calculated scores, loop through all of the possible
1066
+ // candidate nodes we found and find the one with the highest score.
1067
+ var topCandidates = [];
1068
+ for (var c = 0, cl = candidates.length; c < cl; c += 1) {
1069
+ var candidate = candidates[c];
1070
+
1071
+ // Scale the final candidates score based on link density. Good content
1072
+ // should have a relatively small link density (5% or less) and be mostly
1073
+ // unaffected by this operation.
1074
+ var candidateScore = candidate.readability.contentScore * (1 - this._getLinkDensity(candidate));
1075
+ candidate.readability.contentScore = candidateScore;
1076
+
1077
+ this.log("Candidate:", candidate, "with score " + candidateScore);
1078
+
1079
+ for (var t = 0; t < this._nbTopCandidates; t++) {
1080
+ var aTopCandidate = topCandidates[t];
1081
+
1082
+ if (!aTopCandidate || candidateScore > aTopCandidate.readability.contentScore) {
1083
+ topCandidates.splice(t, 0, candidate);
1084
+ if (topCandidates.length > this._nbTopCandidates)
1085
+ topCandidates.pop();
1086
+ break;
1087
+ }
1088
+ }
1089
+ }
1090
+
1091
+ var topCandidate = topCandidates[0] || null;
1092
+ var neededToCreateTopCandidate = false;
1093
+ var parentOfTopCandidate;
1094
+
1095
+ // If we still have no top candidate, just use the body as a last resort.
1096
+ // We also have to copy the body node so it is something we can modify.
1097
+ if (topCandidate === null || topCandidate.tagName === "BODY") {
1098
+ // Move all of the page's children into topCandidate
1099
+ topCandidate = doc.createElement("DIV");
1100
+ neededToCreateTopCandidate = true;
1101
+ // Move everything (not just elements, also text nodes etc.) into the container
1102
+ // so we even include text directly in the body:
1103
+ while (page.firstChild) {
1104
+ this.log("Moving child out:", page.firstChild);
1105
+ topCandidate.appendChild(page.firstChild);
1106
+ }
1107
+
1108
+ page.appendChild(topCandidate);
1109
+
1110
+ this._initializeNode(topCandidate);
1111
+ } else if (topCandidate) {
1112
+ // Find a better top candidate node if it contains (at least three) nodes which belong to `topCandidates` array
1113
+ // and whose scores are quite closed with current `topCandidate` node.
1114
+ var alternativeCandidateAncestors = [];
1115
+ for (var i = 1; i < topCandidates.length; i++) {
1116
+ if (topCandidates[i].readability.contentScore / topCandidate.readability.contentScore >= 0.75) {
1117
+ alternativeCandidateAncestors.push(this._getNodeAncestors(topCandidates[i]));
1118
+ }
1119
+ }
1120
+ var MINIMUM_TOPCANDIDATES = 3;
1121
+ if (alternativeCandidateAncestors.length >= MINIMUM_TOPCANDIDATES) {
1122
+ parentOfTopCandidate = topCandidate.parentNode;
1123
+ while (parentOfTopCandidate.tagName !== "BODY") {
1124
+ var listsContainingThisAncestor = 0;
1125
+ for (var ancestorIndex = 0; ancestorIndex < alternativeCandidateAncestors.length && listsContainingThisAncestor < MINIMUM_TOPCANDIDATES; ancestorIndex++) {
1126
+ listsContainingThisAncestor += Number(alternativeCandidateAncestors[ancestorIndex].includes(parentOfTopCandidate));
1127
+ }
1128
+ if (listsContainingThisAncestor >= MINIMUM_TOPCANDIDATES) {
1129
+ topCandidate = parentOfTopCandidate;
1130
+ break;
1131
+ }
1132
+ parentOfTopCandidate = parentOfTopCandidate.parentNode;
1133
+ }
1134
+ }
1135
+ if (!topCandidate.readability) {
1136
+ this._initializeNode(topCandidate);
1137
+ }
1138
+
1139
+ // Because of our bonus system, parents of candidates might have scores
1140
+ // themselves. They get half of the node. There won't be nodes with higher
1141
+ // scores than our topCandidate, but if we see the score going *up* in the first
1142
+ // few steps up the tree, that's a decent sign that there might be more content
1143
+ // lurking in other places that we want to unify in. The sibling stuff
1144
+ // below does some of that - but only if we've looked high enough up the DOM
1145
+ // tree.
1146
+ parentOfTopCandidate = topCandidate.parentNode;
1147
+ var lastScore = topCandidate.readability.contentScore;
1148
+ // The scores shouldn't get too low.
1149
+ var scoreThreshold = lastScore / 3;
1150
+ while (parentOfTopCandidate.tagName !== "BODY") {
1151
+ if (!parentOfTopCandidate.readability) {
1152
+ parentOfTopCandidate = parentOfTopCandidate.parentNode;
1153
+ continue;
1154
+ }
1155
+ var parentScore = parentOfTopCandidate.readability.contentScore;
1156
+ if (parentScore < scoreThreshold)
1157
+ break;
1158
+ if (parentScore > lastScore) {
1159
+ // Alright! We found a better parent to use.
1160
+ topCandidate = parentOfTopCandidate;
1161
+ break;
1162
+ }
1163
+ lastScore = parentOfTopCandidate.readability.contentScore;
1164
+ parentOfTopCandidate = parentOfTopCandidate.parentNode;
1165
+ }
1166
+
1167
+ // If the top candidate is the only child, use parent instead. This will help sibling
1168
+ // joining logic when adjacent content is actually located in parent's sibling node.
1169
+ parentOfTopCandidate = topCandidate.parentNode;
1170
+ while (parentOfTopCandidate.tagName != "BODY" && parentOfTopCandidate.children.length == 1) {
1171
+ topCandidate = parentOfTopCandidate;
1172
+ parentOfTopCandidate = topCandidate.parentNode;
1173
+ }
1174
+ if (!topCandidate.readability) {
1175
+ this._initializeNode(topCandidate);
1176
+ }
1177
+ }
1178
+
1179
+ // Now that we have the top candidate, look through its siblings for content
1180
+ // that might also be related. Things like preambles, content split by ads
1181
+ // that we removed, etc.
1182
+ var articleContent = doc.createElement("DIV");
1183
+ if (isPaging)
1184
+ articleContent.id = "readability-content";
1185
+
1186
+ var siblingScoreThreshold = Math.max(10, topCandidate.readability.contentScore * 0.2);
1187
+ // Keep potential top candidate's parent node to try to get text direction of it later.
1188
+ parentOfTopCandidate = topCandidate.parentNode;
1189
+ var siblings = parentOfTopCandidate.children;
1190
+
1191
+ for (var s = 0, sl = siblings.length; s < sl; s++) {
1192
+ var sibling = siblings[s];
1193
+ var append = false;
1194
+
1195
+ this.log("Looking at sibling node:", sibling, sibling.readability ? ("with score " + sibling.readability.contentScore) : "");
1196
+ this.log("Sibling has score", sibling.readability ? sibling.readability.contentScore : "Unknown");
1197
+
1198
+ if (sibling === topCandidate) {
1199
+ append = true;
1200
+ } else {
1201
+ var contentBonus = 0;
1202
+
1203
+ // Give a bonus if sibling nodes and top candidates have the example same classname
1204
+ if (sibling.className === topCandidate.className && topCandidate.className !== "")
1205
+ contentBonus += topCandidate.readability.contentScore * 0.2;
1206
+
1207
+ if (sibling.readability &&
1208
+ ((sibling.readability.contentScore + contentBonus) >= siblingScoreThreshold)) {
1209
+ append = true;
1210
+ } else if (sibling.nodeName === "P") {
1211
+ var linkDensity = this._getLinkDensity(sibling);
1212
+ var nodeContent = this._getInnerText(sibling);
1213
+ var nodeLength = nodeContent.length;
1214
+
1215
+ if (nodeLength > 80 && linkDensity < 0.25) {
1216
+ append = true;
1217
+ } else if (nodeLength < 80 && nodeLength > 0 && linkDensity === 0 &&
1218
+ nodeContent.search(/\.( |$)/) !== -1) {
1219
+ append = true;
1220
+ }
1221
+ }
1222
+ }
1223
+
1224
+ if (append) {
1225
+ this.log("Appending node:", sibling);
1226
+
1227
+ if (this.ALTER_TO_DIV_EXCEPTIONS.indexOf(sibling.nodeName) === -1) {
1228
+ // We have a node that isn't a common block level element, like a form or td tag.
1229
+ // Turn it into a div so it doesn't get filtered out later by accident.
1230
+ this.log("Altering sibling:", sibling, "to div.");
1231
+
1232
+ sibling = this._setNodeTag(sibling, "DIV");
1233
+ }
1234
+
1235
+ articleContent.appendChild(sibling);
1236
+ // Fetch children again to make it compatible
1237
+ // with DOM parsers without live collection support.
1238
+ siblings = parentOfTopCandidate.children;
1239
+ // siblings is a reference to the children array, and
1240
+ // sibling is removed from the array when we call appendChild().
1241
+ // As a result, we must revisit this index since the nodes
1242
+ // have been shifted.
1243
+ s -= 1;
1244
+ sl -= 1;
1245
+ }
1246
+ }
1247
+
1248
+ if (this._debug)
1249
+ this.log("Article content pre-prep: " + articleContent.innerHTML);
1250
+ // So we have all of the content that we need. Now we clean it up for presentation.
1251
+ this._prepArticle(articleContent);
1252
+ if (this._debug)
1253
+ this.log("Article content post-prep: " + articleContent.innerHTML);
1254
+
1255
+ if (neededToCreateTopCandidate) {
1256
+ // We already created a fake div thing, and there wouldn't have been any siblings left
1257
+ // for the previous loop, so there's no point trying to create a new div, and then
1258
+ // move all the children over. Just assign IDs and class names here. No need to append
1259
+ // because that already happened anyway.
1260
+ topCandidate.id = "readability-page-1";
1261
+ topCandidate.className = "page";
1262
+ } else {
1263
+ var div = doc.createElement("DIV");
1264
+ div.id = "readability-page-1";
1265
+ div.className = "page";
1266
+ while (articleContent.firstChild) {
1267
+ div.appendChild(articleContent.firstChild);
1268
+ }
1269
+ articleContent.appendChild(div);
1270
+ }
1271
+
1272
+ if (this._debug)
1273
+ this.log("Article content after paging: " + articleContent.innerHTML);
1274
+
1275
+ var parseSuccessful = true;
1276
+
1277
+ // Now that we've gone through the full algorithm, check to see if
1278
+ // we got any meaningful content. If we didn't, we may need to re-run
1279
+ // grabArticle with different flags set. This gives us a higher likelihood of
1280
+ // finding the content, and the sieve approach gives us a higher likelihood of
1281
+ // finding the -right- content.
1282
+ var textLength = this._getInnerText(articleContent, true).length;
1283
+ if (textLength < this._charThreshold) {
1284
+ parseSuccessful = false;
1285
+ page.innerHTML = pageCacheHtml;
1286
+
1287
+ if (this._flagIsActive(this.FLAG_STRIP_UNLIKELYS)) {
1288
+ this._removeFlag(this.FLAG_STRIP_UNLIKELYS);
1289
+ this._attempts.push({articleContent: articleContent, textLength: textLength});
1290
+ } else if (this._flagIsActive(this.FLAG_WEIGHT_CLASSES)) {
1291
+ this._removeFlag(this.FLAG_WEIGHT_CLASSES);
1292
+ this._attempts.push({articleContent: articleContent, textLength: textLength});
1293
+ } else if (this._flagIsActive(this.FLAG_CLEAN_CONDITIONALLY)) {
1294
+ this._removeFlag(this.FLAG_CLEAN_CONDITIONALLY);
1295
+ this._attempts.push({articleContent: articleContent, textLength: textLength});
1296
+ } else {
1297
+ this._attempts.push({articleContent: articleContent, textLength: textLength});
1298
+ // No luck after removing flags, just return the longest text we found during the different loops
1299
+ this._attempts.sort(function (a, b) {
1300
+ return b.textLength - a.textLength;
1301
+ });
1302
+
1303
+ // But first check if we actually have something
1304
+ if (!this._attempts[0].textLength) {
1305
+ return null;
1306
+ }
1307
+
1308
+ articleContent = this._attempts[0].articleContent;
1309
+ parseSuccessful = true;
1310
+ }
1311
+ }
1312
+
1313
+ if (parseSuccessful) {
1314
+ // Find out text direction from ancestors of final top candidate.
1315
+ var ancestors = [parentOfTopCandidate, topCandidate].concat(this._getNodeAncestors(parentOfTopCandidate));
1316
+ this._someNode(ancestors, function(ancestor) {
1317
+ if (!ancestor.tagName)
1318
+ return false;
1319
+ var articleDir = ancestor.getAttribute("dir");
1320
+ if (articleDir) {
1321
+ this._articleDir = articleDir;
1322
+ return true;
1323
+ }
1324
+ return false;
1325
+ });
1326
+ return articleContent;
1327
+ }
1328
+ }
1329
+ },
1330
+
1331
+ /**
1332
+ * Check whether the input string could be a byline.
1333
+ * This verifies that the input is a string, and that the length
1334
+ * is less than 100 chars.
1335
+ *
1336
+ * @param possibleByline {string} - a string to check whether its a byline.
1337
+ * @return Boolean - whether the input string is a byline.
1338
+ */
1339
+ _isValidByline: function(byline) {
1340
+ if (typeof byline == "string" || byline instanceof String) {
1341
+ byline = byline.trim();
1342
+ return (byline.length > 0) && (byline.length < 100);
1343
+ }
1344
+ return false;
1345
+ },
1346
+
1347
+ /**
1348
+ * Converts some of the common HTML entities in string to their corresponding characters.
1349
+ *
1350
+ * @param str {string} - a string to unescape.
1351
+ * @return string without HTML entity.
1352
+ */
1353
+ _unescapeHtmlEntities: function(str) {
1354
+ if (!str) {
1355
+ return str;
1356
+ }
1357
+
1358
+ var htmlEscapeMap = this.HTML_ESCAPE_MAP;
1359
+ return str.replace(/&(quot|amp|apos|lt|gt);/g, function(_, tag) {
1360
+ return htmlEscapeMap[tag];
1361
+ }).replace(/&#(?:x([0-9a-z]{1,4})|([0-9]{1,4}));/gi, function(_, hex, numStr) {
1362
+ var num = parseInt(hex || numStr, hex ? 16 : 10);
1363
+ return String.fromCharCode(num);
1364
+ });
1365
+ },
1366
+
1367
+ /**
1368
+ * Try to extract metadata from JSON-LD object.
1369
+ * For now, only Schema.org objects of type Article or its subtypes are supported.
1370
+ * @return Object with any metadata that could be extracted (possibly none)
1371
+ */
1372
+ _getJSONLD: function (doc) {
1373
+ var scripts = this._getAllNodesWithTag(doc, ["script"]);
1374
+
1375
+ var metadata;
1376
+
1377
+ this._forEachNode(scripts, function(jsonLdElement) {
1378
+ if (!metadata && jsonLdElement.getAttribute("type") === "application/ld+json") {
1379
+ try {
1380
+ // Strip CDATA markers if present
1381
+ var content = jsonLdElement.textContent.replace(/^\s*<!\[CDATA\[|\]\]>\s*$/g, "");
1382
+ var parsed = JSON.parse(content);
1383
+ if (
1384
+ !parsed["@context"] ||
1385
+ !parsed["@context"].match(/^https?\:\/\/schema\.org$/)
1386
+ ) {
1387
+ return;
1388
+ }
1389
+
1390
+ if (!parsed["@type"] && Array.isArray(parsed["@graph"])) {
1391
+ parsed = parsed["@graph"].find(function(it) {
1392
+ return (it["@type"] || "").match(
1393
+ this.REGEXPS.jsonLdArticleTypes
1394
+ );
1395
+ });
1396
+ }
1397
+
1398
+ if (
1399
+ !parsed ||
1400
+ !parsed["@type"] ||
1401
+ !parsed["@type"].match(this.REGEXPS.jsonLdArticleTypes)
1402
+ ) {
1403
+ return;
1404
+ }
1405
+
1406
+ metadata = {};
1407
+
1408
+ if (typeof parsed.name === "string" && typeof parsed.headline === "string" && parsed.name !== parsed.headline) {
1409
+ // we have both name and headline element in the JSON-LD. They should both be the same but some websites like aktualne.cz
1410
+ // put their own name into "name" and the article title to "headline" which confuses Readability. So we try to check if either
1411
+ // "name" or "headline" closely matches the html title, and if so, use that one. If not, then we use "name" by default.
1412
+
1413
+ var title = this._getArticleTitle();
1414
+ var nameMatches = this._textSimilarity(parsed.name, title) > 0.75;
1415
+ var headlineMatches = this._textSimilarity(parsed.headline, title) > 0.75;
1416
+
1417
+ if (headlineMatches && !nameMatches) {
1418
+ metadata.title = parsed.headline;
1419
+ } else {
1420
+ metadata.title = parsed.name;
1421
+ }
1422
+ } else if (typeof parsed.name === "string") {
1423
+ metadata.title = parsed.name.trim();
1424
+ } else if (typeof parsed.headline === "string") {
1425
+ metadata.title = parsed.headline.trim();
1426
+ }
1427
+ if (parsed.author) {
1428
+ if (typeof parsed.author.name === "string") {
1429
+ metadata.byline = parsed.author.name.trim();
1430
+ } else if (Array.isArray(parsed.author) && parsed.author[0] && typeof parsed.author[0].name === "string") {
1431
+ metadata.byline = parsed.author
1432
+ .filter(function(author) {
1433
+ return author && typeof author.name === "string";
1434
+ })
1435
+ .map(function(author) {
1436
+ return author.name.trim();
1437
+ })
1438
+ .join(", ");
1439
+ }
1440
+ }
1441
+ if (typeof parsed.description === "string") {
1442
+ metadata.excerpt = parsed.description.trim();
1443
+ }
1444
+ if (
1445
+ parsed.publisher &&
1446
+ typeof parsed.publisher.name === "string"
1447
+ ) {
1448
+ metadata.siteName = parsed.publisher.name.trim();
1449
+ }
1450
+ if (typeof parsed.datePublished === "string") {
1451
+ metadata.datePublished = parsed.datePublished.trim();
1452
+ }
1453
+ return;
1454
+ } catch (err) {
1455
+ this.log(err.message);
1456
+ }
1457
+ }
1458
+ });
1459
+ return metadata ? metadata : {};
1460
+ },
1461
+
1462
+ /**
1463
+ * Attempts to get excerpt and byline metadata for the article.
1464
+ *
1465
+ * @param {Object} jsonld — object containing any metadata that
1466
+ * could be extracted from JSON-LD object.
1467
+ *
1468
+ * @return Object with optional "excerpt" and "byline" properties
1469
+ */
1470
+ _getArticleMetadata: function(jsonld) {
1471
+ var metadata = {};
1472
+ var values = {};
1473
+ var metaElements = this._doc.getElementsByTagName("meta");
1474
+
1475
+ // property is a space-separated list of values
1476
+ var propertyPattern = /\s*(article|dc|dcterm|og|twitter)\s*:\s*(author|creator|description|published_time|title|site_name)\s*/gi;
1477
+
1478
+ // name is a single value
1479
+ var namePattern = /^\s*(?:(dc|dcterm|og|twitter|weibo:(article|webpage))\s*[\.:]\s*)?(author|creator|description|title|site_name)\s*$/i;
1480
+
1481
+ // Find description tags.
1482
+ this._forEachNode(metaElements, function(element) {
1483
+ var elementName = element.getAttribute("name");
1484
+ var elementProperty = element.getAttribute("property");
1485
+ var content = element.getAttribute("content");
1486
+ if (!content) {
1487
+ return;
1488
+ }
1489
+ var matches = null;
1490
+ var name = null;
1491
+
1492
+ if (elementProperty) {
1493
+ matches = elementProperty.match(propertyPattern);
1494
+ if (matches) {
1495
+ // Convert to lowercase, and remove any whitespace
1496
+ // so we can match below.
1497
+ name = matches[0].toLowerCase().replace(/\s/g, "");
1498
+ // multiple authors
1499
+ values[name] = content.trim();
1500
+ }
1501
+ }
1502
+ if (!matches && elementName && namePattern.test(elementName)) {
1503
+ name = elementName;
1504
+ if (content) {
1505
+ // Convert to lowercase, remove any whitespace, and convert dots
1506
+ // to colons so we can match below.
1507
+ name = name.toLowerCase().replace(/\s/g, "").replace(/\./g, ":");
1508
+ values[name] = content.trim();
1509
+ }
1510
+ }
1511
+ });
1512
+
1513
+ // get title
1514
+ metadata.title = jsonld.title ||
1515
+ values["dc:title"] ||
1516
+ values["dcterm:title"] ||
1517
+ values["og:title"] ||
1518
+ values["weibo:article:title"] ||
1519
+ values["weibo:webpage:title"] ||
1520
+ values["title"] ||
1521
+ values["twitter:title"];
1522
+
1523
+ if (!metadata.title) {
1524
+ metadata.title = this._getArticleTitle();
1525
+ }
1526
+
1527
+ // get author
1528
+ metadata.byline = jsonld.byline ||
1529
+ values["dc:creator"] ||
1530
+ values["dcterm:creator"] ||
1531
+ values["author"];
1532
+
1533
+ // get description
1534
+ metadata.excerpt = jsonld.excerpt ||
1535
+ values["dc:description"] ||
1536
+ values["dcterm:description"] ||
1537
+ values["og:description"] ||
1538
+ values["weibo:article:description"] ||
1539
+ values["weibo:webpage:description"] ||
1540
+ values["description"] ||
1541
+ values["twitter:description"];
1542
+
1543
+ // get site name
1544
+ metadata.siteName = jsonld.siteName ||
1545
+ values["og:site_name"];
1546
+
1547
+ // get article published time
1548
+ metadata.publishedTime = jsonld.datePublished ||
1549
+ values["article:published_time"] || null;
1550
+
1551
+ // in many sites the meta value is escaped with HTML entities,
1552
+ // so here we need to unescape it
1553
+ metadata.title = this._unescapeHtmlEntities(metadata.title);
1554
+ metadata.byline = this._unescapeHtmlEntities(metadata.byline);
1555
+ metadata.excerpt = this._unescapeHtmlEntities(metadata.excerpt);
1556
+ metadata.siteName = this._unescapeHtmlEntities(metadata.siteName);
1557
+ metadata.publishedTime = this._unescapeHtmlEntities(metadata.publishedTime);
1558
+
1559
+ return metadata;
1560
+ },
1561
+
1562
+ /**
1563
+ * Check if node is image, or if node contains exactly only one image
1564
+ * whether as a direct child or as its descendants.
1565
+ *
1566
+ * @param Element
1567
+ **/
1568
+ _isSingleImage: function(node) {
1569
+ if (node.tagName === "IMG") {
1570
+ return true;
1571
+ }
1572
+
1573
+ if (node.children.length !== 1 || node.textContent.trim() !== "") {
1574
+ return false;
1575
+ }
1576
+
1577
+ return this._isSingleImage(node.children[0]);
1578
+ },
1579
+
1580
+ /**
1581
+ * Find all <noscript> that are located after <img> nodes, and which contain only one
1582
+ * <img> element. Replace the first image with the image from inside the <noscript> tag,
1583
+ * and remove the <noscript> tag. This improves the quality of the images we use on
1584
+ * some sites (e.g. Medium).
1585
+ *
1586
+ * @param Element
1587
+ **/
1588
+ _unwrapNoscriptImages: function(doc) {
1589
+ // Find img without source or attributes that might contains image, and remove it.
1590
+ // This is done to prevent a placeholder img is replaced by img from noscript in next step.
1591
+ var imgs = Array.from(doc.getElementsByTagName("img"));
1592
+ this._forEachNode(imgs, function(img) {
1593
+ for (var i = 0; i < img.attributes.length; i++) {
1594
+ var attr = img.attributes[i];
1595
+ switch (attr.name) {
1596
+ case "src":
1597
+ case "srcset":
1598
+ case "data-src":
1599
+ case "data-srcset":
1600
+ return;
1601
+ }
1602
+
1603
+ if (/\.(jpg|jpeg|png|webp)/i.test(attr.value)) {
1604
+ return;
1605
+ }
1606
+ }
1607
+
1608
+ img.parentNode.removeChild(img);
1609
+ });
1610
+
1611
+ // Next find noscript and try to extract its image
1612
+ var noscripts = Array.from(doc.getElementsByTagName("noscript"));
1613
+ this._forEachNode(noscripts, function(noscript) {
1614
+ // Parse content of noscript and make sure it only contains image
1615
+ var tmp = doc.createElement("div");
1616
+ tmp.innerHTML = noscript.innerHTML;
1617
+ if (!this._isSingleImage(tmp)) {
1618
+ return;
1619
+ }
1620
+
1621
+ // If noscript has previous sibling and it only contains image,
1622
+ // replace it with noscript content. However we also keep old
1623
+ // attributes that might contains image.
1624
+ var prevElement = noscript.previousElementSibling;
1625
+ if (prevElement && this._isSingleImage(prevElement)) {
1626
+ var prevImg = prevElement;
1627
+ if (prevImg.tagName !== "IMG") {
1628
+ prevImg = prevElement.getElementsByTagName("img")[0];
1629
+ }
1630
+
1631
+ var newImg = tmp.getElementsByTagName("img")[0];
1632
+ for (var i = 0; i < prevImg.attributes.length; i++) {
1633
+ var attr = prevImg.attributes[i];
1634
+ if (attr.value === "") {
1635
+ continue;
1636
+ }
1637
+
1638
+ if (attr.name === "src" || attr.name === "srcset" || /\.(jpg|jpeg|png|webp)/i.test(attr.value)) {
1639
+ if (newImg.getAttribute(attr.name) === attr.value) {
1640
+ continue;
1641
+ }
1642
+
1643
+ var attrName = attr.name;
1644
+ if (newImg.hasAttribute(attrName)) {
1645
+ attrName = "data-old-" + attrName;
1646
+ }
1647
+
1648
+ newImg.setAttribute(attrName, attr.value);
1649
+ }
1650
+ }
1651
+
1652
+ noscript.parentNode.replaceChild(tmp.firstElementChild, prevElement);
1653
+ }
1654
+ });
1655
+ },
1656
+
1657
+ /**
1658
+ * Removes script tags from the document.
1659
+ *
1660
+ * @param Element
1661
+ **/
1662
+ _removeScripts: function(doc) {
1663
+ this._removeNodes(this._getAllNodesWithTag(doc, ["script", "noscript"]));
1664
+ },
1665
+
1666
+ /**
1667
+ * Check if this node has only whitespace and a single element with given tag
1668
+ * Returns false if the DIV node contains non-empty text nodes
1669
+ * or if it contains no element with given tag or more than 1 element.
1670
+ *
1671
+ * @param Element
1672
+ * @param string tag of child element
1673
+ **/
1674
+ _hasSingleTagInsideElement: function(element, tag) {
1675
+ // There should be exactly 1 element child with given tag
1676
+ if (element.children.length != 1 || element.children[0].tagName !== tag) {
1677
+ return false;
1678
+ }
1679
+
1680
+ // And there should be no text nodes with real content
1681
+ return !this._someNode(element.childNodes, function(node) {
1682
+ return node.nodeType === this.TEXT_NODE &&
1683
+ this.REGEXPS.hasContent.test(node.textContent);
1684
+ });
1685
+ },
1686
+
1687
+ _isElementWithoutContent: function(node) {
1688
+ return node.nodeType === this.ELEMENT_NODE &&
1689
+ node.textContent.trim().length == 0 &&
1690
+ (node.children.length == 0 ||
1691
+ node.children.length == node.getElementsByTagName("br").length + node.getElementsByTagName("hr").length);
1692
+ },
1693
+
1694
+ /**
1695
+ * Determine whether element has any children block level elements.
1696
+ *
1697
+ * @param Element
1698
+ */
1699
+ _hasChildBlockElement: function (element) {
1700
+ return this._someNode(element.childNodes, function(node) {
1701
+ return this.DIV_TO_P_ELEMS.has(node.tagName) ||
1702
+ this._hasChildBlockElement(node);
1703
+ });
1704
+ },
1705
+
1706
+ /***
1707
+ * Determine if a node qualifies as phrasing content.
1708
+ * https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content
1709
+ **/
1710
+ _isPhrasingContent: function(node) {
1711
+ return node.nodeType === this.TEXT_NODE || this.PHRASING_ELEMS.indexOf(node.tagName) !== -1 ||
1712
+ ((node.tagName === "A" || node.tagName === "DEL" || node.tagName === "INS") &&
1713
+ this._everyNode(node.childNodes, this._isPhrasingContent));
1714
+ },
1715
+
1716
+ _isWhitespace: function(node) {
1717
+ return (node.nodeType === this.TEXT_NODE && node.textContent.trim().length === 0) ||
1718
+ (node.nodeType === this.ELEMENT_NODE && node.tagName === "BR");
1719
+ },
1720
+
1721
+ /**
1722
+ * Get the inner text of a node - cross browser compatibly.
1723
+ * This also strips out any excess whitespace to be found.
1724
+ *
1725
+ * @param Element
1726
+ * @param Boolean normalizeSpaces (default: true)
1727
+ * @return string
1728
+ **/
1729
+ _getInnerText: function(e, normalizeSpaces) {
1730
+ normalizeSpaces = (typeof normalizeSpaces === "undefined") ? true : normalizeSpaces;
1731
+ var textContent = e.textContent.trim();
1732
+
1733
+ if (normalizeSpaces) {
1734
+ return textContent.replace(this.REGEXPS.normalize, " ");
1735
+ }
1736
+ return textContent;
1737
+ },
1738
+
1739
+ /**
1740
+ * Get the number of times a string s appears in the node e.
1741
+ *
1742
+ * @param Element
1743
+ * @param string - what to split on. Default is ","
1744
+ * @return number (integer)
1745
+ **/
1746
+ _getCharCount: function(e, s) {
1747
+ s = s || ",";
1748
+ return this._getInnerText(e).split(s).length - 1;
1749
+ },
1750
+
1751
+ /**
1752
+ * Remove the style attribute on every e and under.
1753
+ * TODO: Test if getElementsByTagName(*) is faster.
1754
+ *
1755
+ * @param Element
1756
+ * @return void
1757
+ **/
1758
+ _cleanStyles: function(e) {
1759
+ if (!e || e.tagName.toLowerCase() === "svg")
1760
+ return;
1761
+
1762
+ // Remove `style` and deprecated presentational attributes
1763
+ for (var i = 0; i < this.PRESENTATIONAL_ATTRIBUTES.length; i++) {
1764
+ e.removeAttribute(this.PRESENTATIONAL_ATTRIBUTES[i]);
1765
+ }
1766
+
1767
+ if (this.DEPRECATED_SIZE_ATTRIBUTE_ELEMS.indexOf(e.tagName) !== -1) {
1768
+ e.removeAttribute("width");
1769
+ e.removeAttribute("height");
1770
+ }
1771
+
1772
+ var cur = e.firstElementChild;
1773
+ while (cur !== null) {
1774
+ this._cleanStyles(cur);
1775
+ cur = cur.nextElementSibling;
1776
+ }
1777
+ },
1778
+
1779
+ /**
1780
+ * Get the density of links as a percentage of the content
1781
+ * This is the amount of text that is inside a link divided by the total text in the node.
1782
+ *
1783
+ * @param Element
1784
+ * @return number (float)
1785
+ **/
1786
+ _getLinkDensity: function(element) {
1787
+ var textLength = this._getInnerText(element).length;
1788
+ if (textLength === 0)
1789
+ return 0;
1790
+
1791
+ var linkLength = 0;
1792
+
1793
+ // XXX implement _reduceNodeList?
1794
+ this._forEachNode(element.getElementsByTagName("a"), function(linkNode) {
1795
+ var href = linkNode.getAttribute("href");
1796
+ var coefficient = href && this.REGEXPS.hashUrl.test(href) ? 0.3 : 1;
1797
+ linkLength += this._getInnerText(linkNode).length * coefficient;
1798
+ });
1799
+
1800
+ return linkLength / textLength;
1801
+ },
1802
+
1803
+ /**
1804
+ * Get an elements class/id weight. Uses regular expressions to tell if this
1805
+ * element looks good or bad.
1806
+ *
1807
+ * @param Element
1808
+ * @return number (Integer)
1809
+ **/
1810
+ _getClassWeight: function(e) {
1811
+ if (!this._flagIsActive(this.FLAG_WEIGHT_CLASSES))
1812
+ return 0;
1813
+
1814
+ var weight = 0;
1815
+
1816
+ // Look for a special classname
1817
+ if (typeof(e.className) === "string" && e.className !== "") {
1818
+ if (this.REGEXPS.negative.test(e.className))
1819
+ weight -= 25;
1820
+
1821
+ if (this.REGEXPS.positive.test(e.className))
1822
+ weight += 25;
1823
+ }
1824
+
1825
+ // Look for a special ID
1826
+ if (typeof(e.id) === "string" && e.id !== "") {
1827
+ if (this.REGEXPS.negative.test(e.id))
1828
+ weight -= 25;
1829
+
1830
+ if (this.REGEXPS.positive.test(e.id))
1831
+ weight += 25;
1832
+ }
1833
+
1834
+ return weight;
1835
+ },
1836
+
1837
+ /**
1838
+ * Clean a node of all elements of type "tag".
1839
+ * (Unless it's a youtube/vimeo video. People love movies.)
1840
+ *
1841
+ * @param Element
1842
+ * @param string tag to clean
1843
+ * @return void
1844
+ **/
1845
+ _clean: function(e, tag) {
1846
+ var isEmbed = ["object", "embed", "iframe"].indexOf(tag) !== -1;
1847
+
1848
+ this._removeNodes(this._getAllNodesWithTag(e, [tag]), function(element) {
1849
+ // Allow youtube and vimeo videos through as people usually want to see those.
1850
+ if (isEmbed) {
1851
+ // First, check the elements attributes to see if any of them contain youtube or vimeo
1852
+ for (var i = 0; i < element.attributes.length; i++) {
1853
+ if (this._allowedVideoRegex.test(element.attributes[i].value)) {
1854
+ return false;
1855
+ }
1856
+ }
1857
+
1858
+ // For embed with <object> tag, check inner HTML as well.
1859
+ if (element.tagName === "object" && this._allowedVideoRegex.test(element.innerHTML)) {
1860
+ return false;
1861
+ }
1862
+ }
1863
+
1864
+ return true;
1865
+ });
1866
+ },
1867
+
1868
+ /**
1869
+ * Check if a given node has one of its ancestor tag name matching the
1870
+ * provided one.
1871
+ * @param HTMLElement node
1872
+ * @param String tagName
1873
+ * @param Number maxDepth
1874
+ * @param Function filterFn a filter to invoke to determine whether this node 'counts'
1875
+ * @return Boolean
1876
+ */
1877
+ _hasAncestorTag: function(node, tagName, maxDepth, filterFn) {
1878
+ maxDepth = maxDepth || 3;
1879
+ tagName = tagName.toUpperCase();
1880
+ var depth = 0;
1881
+ while (node.parentNode) {
1882
+ if (maxDepth > 0 && depth > maxDepth)
1883
+ return false;
1884
+ if (node.parentNode.tagName === tagName && (!filterFn || filterFn(node.parentNode)))
1885
+ return true;
1886
+ node = node.parentNode;
1887
+ depth++;
1888
+ }
1889
+ return false;
1890
+ },
1891
+
1892
+ /**
1893
+ * Return an object indicating how many rows and columns this table has.
1894
+ */
1895
+ _getRowAndColumnCount: function(table) {
1896
+ var rows = 0;
1897
+ var columns = 0;
1898
+ var trs = table.getElementsByTagName("tr");
1899
+ for (var i = 0; i < trs.length; i++) {
1900
+ var rowspan = trs[i].getAttribute("rowspan") || 0;
1901
+ if (rowspan) {
1902
+ rowspan = parseInt(rowspan, 10);
1903
+ }
1904
+ rows += (rowspan || 1);
1905
+
1906
+ // Now look for column-related info
1907
+ var columnsInThisRow = 0;
1908
+ var cells = trs[i].getElementsByTagName("td");
1909
+ for (var j = 0; j < cells.length; j++) {
1910
+ var colspan = cells[j].getAttribute("colspan") || 0;
1911
+ if (colspan) {
1912
+ colspan = parseInt(colspan, 10);
1913
+ }
1914
+ columnsInThisRow += (colspan || 1);
1915
+ }
1916
+ columns = Math.max(columns, columnsInThisRow);
1917
+ }
1918
+ return {rows: rows, columns: columns};
1919
+ },
1920
+
1921
+ /**
1922
+ * Look for 'data' (as opposed to 'layout') tables, for which we use
1923
+ * similar checks as
1924
+ * https://searchfox.org/mozilla-central/rev/f82d5c549f046cb64ce5602bfd894b7ae807c8f8/accessible/generic/TableAccessible.cpp#19
1925
+ */
1926
+ _markDataTables: function(root) {
1927
+ var tables = root.getElementsByTagName("table");
1928
+ for (var i = 0; i < tables.length; i++) {
1929
+ var table = tables[i];
1930
+ var role = table.getAttribute("role");
1931
+ if (role == "presentation") {
1932
+ table._readabilityDataTable = false;
1933
+ continue;
1934
+ }
1935
+ var datatable = table.getAttribute("datatable");
1936
+ if (datatable == "0") {
1937
+ table._readabilityDataTable = false;
1938
+ continue;
1939
+ }
1940
+ var summary = table.getAttribute("summary");
1941
+ if (summary) {
1942
+ table._readabilityDataTable = true;
1943
+ continue;
1944
+ }
1945
+
1946
+ var caption = table.getElementsByTagName("caption")[0];
1947
+ if (caption && caption.childNodes.length > 0) {
1948
+ table._readabilityDataTable = true;
1949
+ continue;
1950
+ }
1951
+
1952
+ // If the table has a descendant with any of these tags, consider a data table:
1953
+ var dataTableDescendants = ["col", "colgroup", "tfoot", "thead", "th"];
1954
+ var descendantExists = function(tag) {
1955
+ return !!table.getElementsByTagName(tag)[0];
1956
+ };
1957
+ if (dataTableDescendants.some(descendantExists)) {
1958
+ this.log("Data table because found data-y descendant");
1959
+ table._readabilityDataTable = true;
1960
+ continue;
1961
+ }
1962
+
1963
+ // Nested tables indicate a layout table:
1964
+ if (table.getElementsByTagName("table")[0]) {
1965
+ table._readabilityDataTable = false;
1966
+ continue;
1967
+ }
1968
+
1969
+ var sizeInfo = this._getRowAndColumnCount(table);
1970
+ if (sizeInfo.rows >= 10 || sizeInfo.columns > 4) {
1971
+ table._readabilityDataTable = true;
1972
+ continue;
1973
+ }
1974
+ // Now just go by size entirely:
1975
+ table._readabilityDataTable = sizeInfo.rows * sizeInfo.columns > 10;
1976
+ }
1977
+ },
1978
+
1979
+ /* convert images and figures that have properties like data-src into images that can be loaded without JS */
1980
+ _fixLazyImages: function (root) {
1981
+ this._forEachNode(this._getAllNodesWithTag(root, ["img", "picture", "figure"]), function (elem) {
1982
+ // In some sites (e.g. Kotaku), they put 1px square image as base64 data uri in the src attribute.
1983
+ // So, here we check if the data uri is too short, just might as well remove it.
1984
+ if (elem.src && this.REGEXPS.b64DataUrl.test(elem.src)) {
1985
+ // Make sure it's not SVG, because SVG can have a meaningful image in under 133 bytes.
1986
+ var parts = this.REGEXPS.b64DataUrl.exec(elem.src);
1987
+ if (parts[1] === "image/svg+xml") {
1988
+ return;
1989
+ }
1990
+
1991
+ // Make sure this element has other attributes which contains image.
1992
+ // If it doesn't, then this src is important and shouldn't be removed.
1993
+ var srcCouldBeRemoved = false;
1994
+ for (var i = 0; i < elem.attributes.length; i++) {
1995
+ var attr = elem.attributes[i];
1996
+ if (attr.name === "src") {
1997
+ continue;
1998
+ }
1999
+
2000
+ if (/\.(jpg|jpeg|png|webp)/i.test(attr.value)) {
2001
+ srcCouldBeRemoved = true;
2002
+ break;
2003
+ }
2004
+ }
2005
+
2006
+ // Here we assume if image is less than 100 bytes (or 133B after encoded to base64)
2007
+ // it will be too small, therefore it might be placeholder image.
2008
+ if (srcCouldBeRemoved) {
2009
+ var b64starts = elem.src.search(/base64\s*/i) + 7;
2010
+ var b64length = elem.src.length - b64starts;
2011
+ if (b64length < 133) {
2012
+ elem.removeAttribute("src");
2013
+ }
2014
+ }
2015
+ }
2016
+
2017
+ // also check for "null" to work around https://github.com/jsdom/jsdom/issues/2580
2018
+ if ((elem.src || (elem.srcset && elem.srcset != "null")) && elem.className.toLowerCase().indexOf("lazy") === -1) {
2019
+ return;
2020
+ }
2021
+
2022
+ for (var j = 0; j < elem.attributes.length; j++) {
2023
+ attr = elem.attributes[j];
2024
+ if (attr.name === "src" || attr.name === "srcset" || attr.name === "alt") {
2025
+ continue;
2026
+ }
2027
+ var copyTo = null;
2028
+ if (/\.(jpg|jpeg|png|webp)\s+\d/.test(attr.value)) {
2029
+ copyTo = "srcset";
2030
+ } else if (/^\s*\S+\.(jpg|jpeg|png|webp)\S*\s*$/.test(attr.value)) {
2031
+ copyTo = "src";
2032
+ }
2033
+ if (copyTo) {
2034
+ //if this is an img or picture, set the attribute directly
2035
+ if (elem.tagName === "IMG" || elem.tagName === "PICTURE") {
2036
+ elem.setAttribute(copyTo, attr.value);
2037
+ } else if (elem.tagName === "FIGURE" && !this._getAllNodesWithTag(elem, ["img", "picture"]).length) {
2038
+ //if the item is a <figure> that does not contain an image or picture, create one and place it inside the figure
2039
+ //see the nytimes-3 testcase for an example
2040
+ var img = this._doc.createElement("img");
2041
+ img.setAttribute(copyTo, attr.value);
2042
+ elem.appendChild(img);
2043
+ }
2044
+ }
2045
+ }
2046
+ });
2047
+ },
2048
+
2049
+ _getTextDensity: function(e, tags) {
2050
+ var textLength = this._getInnerText(e, true).length;
2051
+ if (textLength === 0) {
2052
+ return 0;
2053
+ }
2054
+ var childrenLength = 0;
2055
+ var children = this._getAllNodesWithTag(e, tags);
2056
+ this._forEachNode(children, (child) => childrenLength += this._getInnerText(child, true).length);
2057
+ return childrenLength / textLength;
2058
+ },
2059
+
2060
+ /**
2061
+ * Clean an element of all tags of type "tag" if they look fishy.
2062
+ * "Fishy" is an algorithm based on content length, classnames, link density, number of images & embeds, etc.
2063
+ *
2064
+ * @return void
2065
+ **/
2066
+ _cleanConditionally: function(e, tag) {
2067
+ if (!this._flagIsActive(this.FLAG_CLEAN_CONDITIONALLY))
2068
+ return;
2069
+
2070
+ // Gather counts for other typical elements embedded within.
2071
+ // Traverse backwards so we can remove nodes at the same time
2072
+ // without effecting the traversal.
2073
+ //
2074
+ // TODO: Consider taking into account original contentScore here.
2075
+ this._removeNodes(this._getAllNodesWithTag(e, [tag]), function(node) {
2076
+ // First check if this node IS data table, in which case don't remove it.
2077
+ var isDataTable = function(t) {
2078
+ return t._readabilityDataTable;
2079
+ };
2080
+
2081
+ var isList = tag === "ul" || tag === "ol";
2082
+ if (!isList) {
2083
+ var listLength = 0;
2084
+ var listNodes = this._getAllNodesWithTag(node, ["ul", "ol"]);
2085
+ this._forEachNode(listNodes, (list) => listLength += this._getInnerText(list).length);
2086
+ isList = listLength / this._getInnerText(node).length > 0.9;
2087
+ }
2088
+
2089
+ if (tag === "table" && isDataTable(node)) {
2090
+ return false;
2091
+ }
2092
+
2093
+ // Next check if we're inside a data table, in which case don't remove it as well.
2094
+ if (this._hasAncestorTag(node, "table", -1, isDataTable)) {
2095
+ return false;
2096
+ }
2097
+
2098
+ if (this._hasAncestorTag(node, "code")) {
2099
+ return false;
2100
+ }
2101
+
2102
+ var weight = this._getClassWeight(node);
2103
+
2104
+ this.log("Cleaning Conditionally", node);
2105
+
2106
+ var contentScore = 0;
2107
+
2108
+ if (weight + contentScore < 0) {
2109
+ return true;
2110
+ }
2111
+
2112
+ if (this._getCharCount(node, ",") < 10) {
2113
+ // If there are not very many commas, and the number of
2114
+ // non-paragraph elements is more than paragraphs or other
2115
+ // ominous signs, remove the element.
2116
+ var p = node.getElementsByTagName("p").length;
2117
+ var img = node.getElementsByTagName("img").length;
2118
+ var li = node.getElementsByTagName("li").length - 100;
2119
+ var input = node.getElementsByTagName("input").length;
2120
+ var headingDensity = this._getTextDensity(node, ["h1", "h2", "h3", "h4", "h5", "h6"]);
2121
+
2122
+ var embedCount = 0;
2123
+ var embeds = this._getAllNodesWithTag(node, ["object", "embed", "iframe"]);
2124
+
2125
+ for (var i = 0; i < embeds.length; i++) {
2126
+ // If this embed has attribute that matches video regex, don't delete it.
2127
+ for (var j = 0; j < embeds[i].attributes.length; j++) {
2128
+ if (this._allowedVideoRegex.test(embeds[i].attributes[j].value)) {
2129
+ return false;
2130
+ }
2131
+ }
2132
+
2133
+ // For embed with <object> tag, check inner HTML as well.
2134
+ if (embeds[i].tagName === "object" && this._allowedVideoRegex.test(embeds[i].innerHTML)) {
2135
+ return false;
2136
+ }
2137
+
2138
+ embedCount++;
2139
+ }
2140
+
2141
+ var linkDensity = this._getLinkDensity(node);
2142
+ var contentLength = this._getInnerText(node).length;
2143
+
2144
+ var haveToRemove =
2145
+ (img > 1 && p / img < 0.5 && !this._hasAncestorTag(node, "figure")) ||
2146
+ (!isList && li > p) ||
2147
+ (input > Math.floor(p/3)) ||
2148
+ (!isList && headingDensity < 0.9 && contentLength < 25 && (img === 0 || img > 2) && !this._hasAncestorTag(node, "figure")) ||
2149
+ (!isList && weight < 25 && linkDensity > 0.2) ||
2150
+ (weight >= 25 && linkDensity > 0.5) ||
2151
+ ((embedCount === 1 && contentLength < 75) || embedCount > 1);
2152
+ // Allow simple lists of images to remain in pages
2153
+ if (isList && haveToRemove) {
2154
+ for (var x = 0; x < node.children.length; x++) {
2155
+ let child = node.children[x];
2156
+ // Don't filter in lists with li's that contain more than one child
2157
+ if (child.children.length > 1) {
2158
+ return haveToRemove;
2159
+ }
2160
+ }
2161
+ let li_count = node.getElementsByTagName("li").length;
2162
+ // Only allow the list to remain if every li contains an image
2163
+ if (img == li_count) {
2164
+ return false;
2165
+ }
2166
+ }
2167
+ return haveToRemove;
2168
+ }
2169
+ return false;
2170
+ });
2171
+ },
2172
+
2173
+ /**
2174
+ * Clean out elements that match the specified conditions
2175
+ *
2176
+ * @param Element
2177
+ * @param Function determines whether a node should be removed
2178
+ * @return void
2179
+ **/
2180
+ _cleanMatchedNodes: function(e, filter) {
2181
+ var endOfSearchMarkerNode = this._getNextNode(e, true);
2182
+ var next = this._getNextNode(e);
2183
+ while (next && next != endOfSearchMarkerNode) {
2184
+ if (filter.call(this, next, next.className + " " + next.id)) {
2185
+ next = this._removeAndGetNext(next);
2186
+ } else {
2187
+ next = this._getNextNode(next);
2188
+ }
2189
+ }
2190
+ },
2191
+
2192
+ /**
2193
+ * Clean out spurious headers from an Element.
2194
+ *
2195
+ * @param Element
2196
+ * @return void
2197
+ **/
2198
+ _cleanHeaders: function(e) {
2199
+ let headingNodes = this._getAllNodesWithTag(e, ["h1", "h2"]);
2200
+ this._removeNodes(headingNodes, function(node) {
2201
+ let shouldRemove = this._getClassWeight(node) < 0;
2202
+ if (shouldRemove) {
2203
+ this.log("Removing header with low class weight:", node);
2204
+ }
2205
+ return shouldRemove;
2206
+ });
2207
+ },
2208
+
2209
+ /**
2210
+ * Check if this node is an H1 or H2 element whose content is mostly
2211
+ * the same as the article title.
2212
+ *
2213
+ * @param Element the node to check.
2214
+ * @return boolean indicating whether this is a title-like header.
2215
+ */
2216
+ _headerDuplicatesTitle: function(node) {
2217
+ if (node.tagName != "H1" && node.tagName != "H2") {
2218
+ return false;
2219
+ }
2220
+ var heading = this._getInnerText(node, false);
2221
+ this.log("Evaluating similarity of header:", heading, this._articleTitle);
2222
+ return this._textSimilarity(this._articleTitle, heading) > 0.75;
2223
+ },
2224
+
2225
+ _flagIsActive: function(flag) {
2226
+ return (this._flags & flag) > 0;
2227
+ },
2228
+
2229
+ _removeFlag: function(flag) {
2230
+ this._flags = this._flags & ~flag;
2231
+ },
2232
+
2233
+ _isProbablyVisible: function(node) {
2234
+ // Have to null-check node.style and node.className.indexOf to deal with SVG and MathML nodes.
2235
+ return (!node.style || node.style.display != "none")
2236
+ && (!node.style || node.style.visibility != "hidden")
2237
+ && !node.hasAttribute("hidden")
2238
+ //check for "fallback-image" so that wikimedia math images are displayed
2239
+ && (!node.hasAttribute("aria-hidden") || node.getAttribute("aria-hidden") != "true" || (node.className && node.className.indexOf && node.className.indexOf("fallback-image") !== -1));
2240
+ },
2241
+
2242
+ /**
2243
+ * Runs readability.
2244
+ *
2245
+ * Workflow:
2246
+ * 1. Prep the document by removing script tags, css, etc.
2247
+ * 2. Build readability's DOM tree.
2248
+ * 3. Grab the article content from the current dom tree.
2249
+ * 4. Replace the current DOM tree with the new one.
2250
+ * 5. Read peacefully.
2251
+ *
2252
+ * @return void
2253
+ **/
2254
+ parse: function () {
2255
+ // Avoid parsing too large documents, as per configuration option
2256
+ if (this._maxElemsToParse > 0) {
2257
+ var numTags = this._doc.getElementsByTagName("*").length;
2258
+ if (numTags > this._maxElemsToParse) {
2259
+ throw new Error("Aborting parsing document; " + numTags + " elements found");
2260
+ }
2261
+ }
2262
+
2263
+ // Unwrap image from noscript
2264
+ this._unwrapNoscriptImages(this._doc);
2265
+
2266
+ // Extract JSON-LD metadata before removing scripts
2267
+ var jsonLd = this._disableJSONLD ? {} : this._getJSONLD(this._doc);
2268
+
2269
+ // Remove script tags from the document.
2270
+ this._removeScripts(this._doc);
2271
+
2272
+ this._prepDocument();
2273
+
2274
+ var metadata = this._getArticleMetadata(jsonLd);
2275
+ this._articleTitle = metadata.title;
2276
+
2277
+ var articleContent = this._grabArticle();
2278
+ if (!articleContent)
2279
+ return null;
2280
+
2281
+ this.log("Grabbed: " + articleContent.innerHTML);
2282
+
2283
+ this._postProcessContent(articleContent);
2284
+
2285
+ // If we haven't found an excerpt in the article's metadata, use the article's
2286
+ // first paragraph as the excerpt. This is used for displaying a preview of
2287
+ // the article's content.
2288
+ if (!metadata.excerpt) {
2289
+ var paragraphs = articleContent.getElementsByTagName("p");
2290
+ if (paragraphs.length > 0) {
2291
+ metadata.excerpt = paragraphs[0].textContent.trim();
2292
+ }
2293
+ }
2294
+
2295
+ var textContent = articleContent.textContent;
2296
+ return {
2297
+ title: this._articleTitle,
2298
+ byline: metadata.byline || this._articleByline,
2299
+ dir: this._articleDir,
2300
+ lang: this._articleLang,
2301
+ content: this._serializer(articleContent),
2302
+ textContent: textContent,
2303
+ length: textContent.length,
2304
+ excerpt: metadata.excerpt,
2305
+ siteName: metadata.siteName || this._articleSiteName,
2306
+ publishedTime: metadata.publishedTime
2307
+ };
2308
+ }
2309
+ };
2310
+
2311
+ if (typeof module === "object") {
2312
+ /* global module */
2313
+ module.exports = Readability;
2314
+ }