@zipify/wysiwyg 1.1.0 → 1.2.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 (1127) hide show
  1. package/.release-it.json +2 -1
  2. package/config/build/lambda.config.js +39 -0
  3. package/dist/cli.js +1 -1
  4. package/dist/lambda-to-json.zip +0 -0
  5. package/dist/wysiwyg.mjs +10 -17
  6. package/lib/entry-lambda-to-json.js +8 -0
  7. package/lib/extensions/Alignment.js +10 -8
  8. package/lib/extensions/FontSize.js +8 -3
  9. package/lib/extensions/LineHeight.js +10 -4
  10. package/lib/extensions/__tests__/__snapshots__/Alignment.test.js.snap +3 -3
  11. package/lib/extensions/__tests__/__snapshots__/FontSize.test.js.snap +9 -9
  12. package/lib/extensions/__tests__/__snapshots__/LineHeight.test.js.snap +5 -5
  13. package/lib/services/NodeFactory.js +4 -1
  14. package/node_modules_lambda/.bin/acorn +4 -0
  15. package/node_modules_lambda/.bin/escodegen +77 -0
  16. package/node_modules_lambda/.bin/esgenerate +64 -0
  17. package/node_modules_lambda/.bin/esparse +139 -0
  18. package/node_modules_lambda/.bin/esvalidate +236 -0
  19. package/node_modules_lambda/.package-lock.json +602 -0
  20. package/node_modules_lambda/@tootallnate/once/LICENSE +21 -0
  21. package/node_modules_lambda/@tootallnate/once/README.md +93 -0
  22. package/node_modules_lambda/@tootallnate/once/dist/index.d.ts +7 -0
  23. package/node_modules_lambda/@tootallnate/once/dist/index.js +24 -0
  24. package/node_modules_lambda/@tootallnate/once/dist/index.js.map +1 -0
  25. package/node_modules_lambda/@tootallnate/once/dist/overloaded-parameters.d.ts +231 -0
  26. package/node_modules_lambda/@tootallnate/once/dist/overloaded-parameters.js +3 -0
  27. package/node_modules_lambda/@tootallnate/once/dist/overloaded-parameters.js.map +1 -0
  28. package/node_modules_lambda/@tootallnate/once/dist/types.d.ts +17 -0
  29. package/node_modules_lambda/@tootallnate/once/dist/types.js +3 -0
  30. package/node_modules_lambda/@tootallnate/once/dist/types.js.map +1 -0
  31. package/node_modules_lambda/@tootallnate/once/package.json +52 -0
  32. package/node_modules_lambda/abab/LICENSE.md +13 -0
  33. package/node_modules_lambda/abab/README.md +51 -0
  34. package/node_modules_lambda/abab/index.d.ts +2 -0
  35. package/node_modules_lambda/abab/index.js +9 -0
  36. package/node_modules_lambda/abab/lib/atob.js +101 -0
  37. package/node_modules_lambda/abab/lib/btoa.js +62 -0
  38. package/node_modules_lambda/abab/package.json +42 -0
  39. package/node_modules_lambda/acorn/CHANGELOG.md +798 -0
  40. package/node_modules_lambda/acorn/LICENSE +21 -0
  41. package/node_modules_lambda/acorn/README.md +273 -0
  42. package/node_modules_lambda/acorn/bin/acorn +4 -0
  43. package/node_modules_lambda/acorn/dist/acorn.d.ts +252 -0
  44. package/node_modules_lambda/acorn/dist/acorn.js +5608 -0
  45. package/node_modules_lambda/acorn/dist/acorn.mjs +5577 -0
  46. package/node_modules_lambda/acorn/dist/acorn.mjs.d.ts +2 -0
  47. package/node_modules_lambda/acorn/dist/bin.js +91 -0
  48. package/node_modules_lambda/acorn/package.json +50 -0
  49. package/node_modules_lambda/acorn-globals/LICENSE +19 -0
  50. package/node_modules_lambda/acorn-globals/README.md +81 -0
  51. package/node_modules_lambda/acorn-globals/index.js +179 -0
  52. package/node_modules_lambda/acorn-globals/node_modules/.bin/acorn +4 -0
  53. package/node_modules_lambda/acorn-globals/node_modules/acorn/CHANGELOG.md +620 -0
  54. package/node_modules_lambda/acorn-globals/node_modules/acorn/LICENSE +21 -0
  55. package/node_modules_lambda/acorn-globals/node_modules/acorn/README.md +269 -0
  56. package/node_modules_lambda/acorn-globals/node_modules/acorn/bin/acorn +4 -0
  57. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.d.ts +209 -0
  58. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.js +5186 -0
  59. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.js.map +1 -0
  60. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.mjs +5155 -0
  61. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.mjs.d.ts +2 -0
  62. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.mjs.map +1 -0
  63. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/bin.js +64 -0
  64. package/node_modules_lambda/acorn-globals/node_modules/acorn/package.json +35 -0
  65. package/node_modules_lambda/acorn-globals/package.json +35 -0
  66. package/node_modules_lambda/acorn-walk/CHANGELOG.md +131 -0
  67. package/node_modules_lambda/acorn-walk/LICENSE +19 -0
  68. package/node_modules_lambda/acorn-walk/README.md +126 -0
  69. package/node_modules_lambda/acorn-walk/dist/walk.d.ts +112 -0
  70. package/node_modules_lambda/acorn-walk/dist/walk.js +463 -0
  71. package/node_modules_lambda/acorn-walk/dist/walk.js.map +1 -0
  72. package/node_modules_lambda/acorn-walk/dist/walk.mjs +443 -0
  73. package/node_modules_lambda/acorn-walk/dist/walk.mjs.map +1 -0
  74. package/node_modules_lambda/acorn-walk/package.json +34 -0
  75. package/node_modules_lambda/agent-base/README.md +145 -0
  76. package/node_modules_lambda/agent-base/dist/src/index.d.ts +78 -0
  77. package/node_modules_lambda/agent-base/dist/src/index.js +203 -0
  78. package/node_modules_lambda/agent-base/dist/src/index.js.map +1 -0
  79. package/node_modules_lambda/agent-base/dist/src/promisify.d.ts +4 -0
  80. package/node_modules_lambda/agent-base/dist/src/promisify.js +18 -0
  81. package/node_modules_lambda/agent-base/dist/src/promisify.js.map +1 -0
  82. package/node_modules_lambda/agent-base/package.json +64 -0
  83. package/node_modules_lambda/agent-base/src/index.ts +345 -0
  84. package/node_modules_lambda/agent-base/src/promisify.ts +33 -0
  85. package/node_modules_lambda/asynckit/LICENSE +21 -0
  86. package/node_modules_lambda/asynckit/README.md +233 -0
  87. package/node_modules_lambda/asynckit/bench.js +76 -0
  88. package/node_modules_lambda/asynckit/index.js +6 -0
  89. package/node_modules_lambda/asynckit/lib/abort.js +29 -0
  90. package/node_modules_lambda/asynckit/lib/async.js +34 -0
  91. package/node_modules_lambda/asynckit/lib/defer.js +26 -0
  92. package/node_modules_lambda/asynckit/lib/iterate.js +75 -0
  93. package/node_modules_lambda/asynckit/lib/readable_asynckit.js +91 -0
  94. package/node_modules_lambda/asynckit/lib/readable_parallel.js +25 -0
  95. package/node_modules_lambda/asynckit/lib/readable_serial.js +25 -0
  96. package/node_modules_lambda/asynckit/lib/readable_serial_ordered.js +29 -0
  97. package/node_modules_lambda/asynckit/lib/state.js +37 -0
  98. package/node_modules_lambda/asynckit/lib/streamify.js +141 -0
  99. package/node_modules_lambda/asynckit/lib/terminator.js +29 -0
  100. package/node_modules_lambda/asynckit/package.json +63 -0
  101. package/node_modules_lambda/asynckit/parallel.js +43 -0
  102. package/node_modules_lambda/asynckit/serial.js +17 -0
  103. package/node_modules_lambda/asynckit/serialOrdered.js +75 -0
  104. package/node_modules_lambda/asynckit/stream.js +21 -0
  105. package/node_modules_lambda/browser-process-hrtime/LICENSE +9 -0
  106. package/node_modules_lambda/browser-process-hrtime/README.md +27 -0
  107. package/node_modules_lambda/browser-process-hrtime/index.d.ts +4 -0
  108. package/node_modules_lambda/browser-process-hrtime/index.js +28 -0
  109. package/node_modules_lambda/browser-process-hrtime/package.json +15 -0
  110. package/node_modules_lambda/combined-stream/License +19 -0
  111. package/node_modules_lambda/combined-stream/Readme.md +138 -0
  112. package/node_modules_lambda/combined-stream/lib/combined_stream.js +208 -0
  113. package/node_modules_lambda/combined-stream/package.json +25 -0
  114. package/node_modules_lambda/combined-stream/yarn.lock +17 -0
  115. package/node_modules_lambda/cssom/LICENSE.txt +20 -0
  116. package/node_modules_lambda/cssom/README.mdown +67 -0
  117. package/node_modules_lambda/cssom/lib/CSSConditionRule.js +25 -0
  118. package/node_modules_lambda/cssom/lib/CSSDocumentRule.js +39 -0
  119. package/node_modules_lambda/cssom/lib/CSSFontFaceRule.js +36 -0
  120. package/node_modules_lambda/cssom/lib/CSSGroupingRule.js +68 -0
  121. package/node_modules_lambda/cssom/lib/CSSHostRule.js +37 -0
  122. package/node_modules_lambda/cssom/lib/CSSImportRule.js +132 -0
  123. package/node_modules_lambda/cssom/lib/CSSKeyframeRule.js +37 -0
  124. package/node_modules_lambda/cssom/lib/CSSKeyframesRule.js +39 -0
  125. package/node_modules_lambda/cssom/lib/CSSMediaRule.js +53 -0
  126. package/node_modules_lambda/cssom/lib/CSSOM.js +3 -0
  127. package/node_modules_lambda/cssom/lib/CSSRule.js +43 -0
  128. package/node_modules_lambda/cssom/lib/CSSStyleDeclaration.js +148 -0
  129. package/node_modules_lambda/cssom/lib/CSSStyleRule.js +190 -0
  130. package/node_modules_lambda/cssom/lib/CSSStyleSheet.js +88 -0
  131. package/node_modules_lambda/cssom/lib/CSSSupportsRule.js +36 -0
  132. package/node_modules_lambda/cssom/lib/CSSValue.js +43 -0
  133. package/node_modules_lambda/cssom/lib/CSSValueExpression.js +344 -0
  134. package/node_modules_lambda/cssom/lib/MatcherList.js +62 -0
  135. package/node_modules_lambda/cssom/lib/MediaList.js +61 -0
  136. package/node_modules_lambda/cssom/lib/StyleSheet.js +17 -0
  137. package/node_modules_lambda/cssom/lib/clone.js +74 -0
  138. package/node_modules_lambda/cssom/lib/index.js +23 -0
  139. package/node_modules_lambda/cssom/lib/parse.js +465 -0
  140. package/node_modules_lambda/cssom/package.json +18 -0
  141. package/node_modules_lambda/cssstyle/LICENSE +20 -0
  142. package/node_modules_lambda/cssstyle/README.md +15 -0
  143. package/node_modules_lambda/cssstyle/lib/CSSStyleDeclaration.js +260 -0
  144. package/node_modules_lambda/cssstyle/lib/CSSStyleDeclaration.test.js +556 -0
  145. package/node_modules_lambda/cssstyle/lib/allExtraProperties.js +67 -0
  146. package/node_modules_lambda/cssstyle/lib/allProperties.js +462 -0
  147. package/node_modules_lambda/cssstyle/lib/allWebkitProperties.js +194 -0
  148. package/node_modules_lambda/cssstyle/lib/constants.js +6 -0
  149. package/node_modules_lambda/cssstyle/lib/implementedProperties.js +90 -0
  150. package/node_modules_lambda/cssstyle/lib/named_colors.json +152 -0
  151. package/node_modules_lambda/cssstyle/lib/parsers.js +722 -0
  152. package/node_modules_lambda/cssstyle/lib/parsers.test.js +139 -0
  153. package/node_modules_lambda/cssstyle/lib/properties/azimuth.js +67 -0
  154. package/node_modules_lambda/cssstyle/lib/properties/background.js +19 -0
  155. package/node_modules_lambda/cssstyle/lib/properties/backgroundAttachment.js +24 -0
  156. package/node_modules_lambda/cssstyle/lib/properties/backgroundColor.js +36 -0
  157. package/node_modules_lambda/cssstyle/lib/properties/backgroundImage.js +32 -0
  158. package/node_modules_lambda/cssstyle/lib/properties/backgroundPosition.js +58 -0
  159. package/node_modules_lambda/cssstyle/lib/properties/backgroundRepeat.js +32 -0
  160. package/node_modules_lambda/cssstyle/lib/properties/border.js +33 -0
  161. package/node_modules_lambda/cssstyle/lib/properties/borderBottom.js +17 -0
  162. package/node_modules_lambda/cssstyle/lib/properties/borderBottomColor.js +16 -0
  163. package/node_modules_lambda/cssstyle/lib/properties/borderBottomStyle.js +21 -0
  164. package/node_modules_lambda/cssstyle/lib/properties/borderBottomWidth.js +16 -0
  165. package/node_modules_lambda/cssstyle/lib/properties/borderCollapse.js +26 -0
  166. package/node_modules_lambda/cssstyle/lib/properties/borderColor.js +30 -0
  167. package/node_modules_lambda/cssstyle/lib/properties/borderLeft.js +17 -0
  168. package/node_modules_lambda/cssstyle/lib/properties/borderLeftColor.js +16 -0
  169. package/node_modules_lambda/cssstyle/lib/properties/borderLeftStyle.js +21 -0
  170. package/node_modules_lambda/cssstyle/lib/properties/borderLeftWidth.js +16 -0
  171. package/node_modules_lambda/cssstyle/lib/properties/borderRight.js +17 -0
  172. package/node_modules_lambda/cssstyle/lib/properties/borderRightColor.js +16 -0
  173. package/node_modules_lambda/cssstyle/lib/properties/borderRightStyle.js +21 -0
  174. package/node_modules_lambda/cssstyle/lib/properties/borderRightWidth.js +16 -0
  175. package/node_modules_lambda/cssstyle/lib/properties/borderSpacing.js +41 -0
  176. package/node_modules_lambda/cssstyle/lib/properties/borderStyle.js +38 -0
  177. package/node_modules_lambda/cssstyle/lib/properties/borderTop.js +17 -0
  178. package/node_modules_lambda/cssstyle/lib/properties/borderTopColor.js +16 -0
  179. package/node_modules_lambda/cssstyle/lib/properties/borderTopStyle.js +21 -0
  180. package/node_modules_lambda/cssstyle/lib/properties/borderTopWidth.js +17 -0
  181. package/node_modules_lambda/cssstyle/lib/properties/borderWidth.js +46 -0
  182. package/node_modules_lambda/cssstyle/lib/properties/bottom.js +14 -0
  183. package/node_modules_lambda/cssstyle/lib/properties/clear.js +16 -0
  184. package/node_modules_lambda/cssstyle/lib/properties/clip.js +47 -0
  185. package/node_modules_lambda/cssstyle/lib/properties/color.js +14 -0
  186. package/node_modules_lambda/cssstyle/lib/properties/cssFloat.js +12 -0
  187. package/node_modules_lambda/cssstyle/lib/properties/flex.js +45 -0
  188. package/node_modules_lambda/cssstyle/lib/properties/flexBasis.js +28 -0
  189. package/node_modules_lambda/cssstyle/lib/properties/flexGrow.js +19 -0
  190. package/node_modules_lambda/cssstyle/lib/properties/flexShrink.js +19 -0
  191. package/node_modules_lambda/cssstyle/lib/properties/float.js +12 -0
  192. package/node_modules_lambda/cssstyle/lib/properties/floodColor.js +14 -0
  193. package/node_modules_lambda/cssstyle/lib/properties/font.js +43 -0
  194. package/node_modules_lambda/cssstyle/lib/properties/fontFamily.js +33 -0
  195. package/node_modules_lambda/cssstyle/lib/properties/fontSize.js +38 -0
  196. package/node_modules_lambda/cssstyle/lib/properties/fontStyle.js +18 -0
  197. package/node_modules_lambda/cssstyle/lib/properties/fontVariant.js +18 -0
  198. package/node_modules_lambda/cssstyle/lib/properties/fontWeight.js +33 -0
  199. package/node_modules_lambda/cssstyle/lib/properties/height.js +24 -0
  200. package/node_modules_lambda/cssstyle/lib/properties/left.js +14 -0
  201. package/node_modules_lambda/cssstyle/lib/properties/lightingColor.js +14 -0
  202. package/node_modules_lambda/cssstyle/lib/properties/lineHeight.js +26 -0
  203. package/node_modules_lambda/cssstyle/lib/properties/margin.js +68 -0
  204. package/node_modules_lambda/cssstyle/lib/properties/marginBottom.js +13 -0
  205. package/node_modules_lambda/cssstyle/lib/properties/marginLeft.js +13 -0
  206. package/node_modules_lambda/cssstyle/lib/properties/marginRight.js +13 -0
  207. package/node_modules_lambda/cssstyle/lib/properties/marginTop.js +13 -0
  208. package/node_modules_lambda/cssstyle/lib/properties/opacity.js +14 -0
  209. package/node_modules_lambda/cssstyle/lib/properties/outlineColor.js +14 -0
  210. package/node_modules_lambda/cssstyle/lib/properties/padding.js +61 -0
  211. package/node_modules_lambda/cssstyle/lib/properties/paddingBottom.js +13 -0
  212. package/node_modules_lambda/cssstyle/lib/properties/paddingLeft.js +13 -0
  213. package/node_modules_lambda/cssstyle/lib/properties/paddingRight.js +13 -0
  214. package/node_modules_lambda/cssstyle/lib/properties/paddingTop.js +13 -0
  215. package/node_modules_lambda/cssstyle/lib/properties/right.js +14 -0
  216. package/node_modules_lambda/cssstyle/lib/properties/stopColor.js +14 -0
  217. package/node_modules_lambda/cssstyle/lib/properties/textLineThroughColor.js +14 -0
  218. package/node_modules_lambda/cssstyle/lib/properties/textOverlineColor.js +14 -0
  219. package/node_modules_lambda/cssstyle/lib/properties/textUnderlineColor.js +14 -0
  220. package/node_modules_lambda/cssstyle/lib/properties/top.js +14 -0
  221. package/node_modules_lambda/cssstyle/lib/properties/webkitBorderAfterColor.js +14 -0
  222. package/node_modules_lambda/cssstyle/lib/properties/webkitBorderBeforeColor.js +14 -0
  223. package/node_modules_lambda/cssstyle/lib/properties/webkitBorderEndColor.js +14 -0
  224. package/node_modules_lambda/cssstyle/lib/properties/webkitBorderStartColor.js +14 -0
  225. package/node_modules_lambda/cssstyle/lib/properties/webkitColumnRuleColor.js +14 -0
  226. package/node_modules_lambda/cssstyle/lib/properties/webkitMatchNearestMailBlockquoteColor.js +14 -0
  227. package/node_modules_lambda/cssstyle/lib/properties/webkitTapHighlightColor.js +14 -0
  228. package/node_modules_lambda/cssstyle/lib/properties/webkitTextEmphasisColor.js +14 -0
  229. package/node_modules_lambda/cssstyle/lib/properties/webkitTextFillColor.js +14 -0
  230. package/node_modules_lambda/cssstyle/lib/properties/webkitTextStrokeColor.js +14 -0
  231. package/node_modules_lambda/cssstyle/lib/properties/width.js +24 -0
  232. package/node_modules_lambda/cssstyle/lib/properties.js +1833 -0
  233. package/node_modules_lambda/cssstyle/lib/utils/colorSpace.js +21 -0
  234. package/node_modules_lambda/cssstyle/lib/utils/getBasicPropertyDescriptor.js +14 -0
  235. package/node_modules_lambda/cssstyle/node_modules/cssom/LICENSE.txt +20 -0
  236. package/node_modules_lambda/cssstyle/node_modules/cssom/README.mdown +67 -0
  237. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
  238. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
  239. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSHostRule.js +37 -0
  240. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSImportRule.js +132 -0
  241. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
  242. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
  243. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSMediaRule.js +41 -0
  244. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSOM.js +3 -0
  245. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSRule.js +43 -0
  246. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
  247. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSStyleRule.js +190 -0
  248. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
  249. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
  250. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSValue.js +43 -0
  251. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSValueExpression.js +344 -0
  252. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/MatcherList.js +62 -0
  253. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/MediaList.js +61 -0
  254. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/StyleSheet.js +17 -0
  255. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/clone.js +82 -0
  256. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/index.js +21 -0
  257. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/parse.js +464 -0
  258. package/node_modules_lambda/cssstyle/node_modules/cssom/package.json +18 -0
  259. package/node_modules_lambda/cssstyle/package.json +72 -0
  260. package/node_modules_lambda/data-urls/LICENSE.txt +7 -0
  261. package/node_modules_lambda/data-urls/README.md +62 -0
  262. package/node_modules_lambda/data-urls/lib/parser.js +69 -0
  263. package/node_modules_lambda/data-urls/lib/utils.js +18 -0
  264. package/node_modules_lambda/data-urls/node_modules/whatwg-url/LICENSE.txt +21 -0
  265. package/node_modules_lambda/data-urls/node_modules/whatwg-url/README.md +106 -0
  266. package/node_modules_lambda/data-urls/node_modules/whatwg-url/index.js +27 -0
  267. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/Function.js +42 -0
  268. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URL-impl.js +209 -0
  269. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URL.js +442 -0
  270. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URLSearchParams-impl.js +130 -0
  271. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URLSearchParams.js +472 -0
  272. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/VoidFunction.js +26 -0
  273. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/encoding.js +16 -0
  274. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/infra.js +26 -0
  275. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/percent-encoding.js +142 -0
  276. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/url-state-machine.js +1244 -0
  277. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/urlencoded.js +106 -0
  278. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/utils.js +190 -0
  279. package/node_modules_lambda/data-urls/node_modules/whatwg-url/package.json +58 -0
  280. package/node_modules_lambda/data-urls/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
  281. package/node_modules_lambda/data-urls/package.json +54 -0
  282. package/node_modules_lambda/debug/LICENSE +20 -0
  283. package/node_modules_lambda/debug/README.md +481 -0
  284. package/node_modules_lambda/debug/package.json +59 -0
  285. package/node_modules_lambda/debug/src/browser.js +269 -0
  286. package/node_modules_lambda/debug/src/common.js +274 -0
  287. package/node_modules_lambda/debug/src/index.js +10 -0
  288. package/node_modules_lambda/debug/src/node.js +263 -0
  289. package/node_modules_lambda/decimal.js/CHANGELOG.md +231 -0
  290. package/node_modules_lambda/decimal.js/LICENCE.md +23 -0
  291. package/node_modules_lambda/decimal.js/README.md +246 -0
  292. package/node_modules_lambda/decimal.js/decimal.d.ts +300 -0
  293. package/node_modules_lambda/decimal.js/decimal.js +4934 -0
  294. package/node_modules_lambda/decimal.js/decimal.mjs +4898 -0
  295. package/node_modules_lambda/decimal.js/package.json +40 -0
  296. package/node_modules_lambda/deep-is/.travis.yml +5 -0
  297. package/node_modules_lambda/deep-is/LICENSE +22 -0
  298. package/node_modules_lambda/deep-is/README.markdown +70 -0
  299. package/node_modules_lambda/deep-is/example/cmp.js +11 -0
  300. package/node_modules_lambda/deep-is/index.js +102 -0
  301. package/node_modules_lambda/deep-is/package.json +58 -0
  302. package/node_modules_lambda/deep-is/test/NaN.js +16 -0
  303. package/node_modules_lambda/deep-is/test/cmp.js +23 -0
  304. package/node_modules_lambda/deep-is/test/neg-vs-pos-0.js +15 -0
  305. package/node_modules_lambda/delayed-stream/License +19 -0
  306. package/node_modules_lambda/delayed-stream/Makefile +7 -0
  307. package/node_modules_lambda/delayed-stream/Readme.md +141 -0
  308. package/node_modules_lambda/delayed-stream/lib/delayed_stream.js +107 -0
  309. package/node_modules_lambda/delayed-stream/package.json +27 -0
  310. package/node_modules_lambda/domexception/LICENSE.txt +21 -0
  311. package/node_modules_lambda/domexception/README.md +31 -0
  312. package/node_modules_lambda/domexception/index.js +7 -0
  313. package/node_modules_lambda/domexception/lib/DOMException-impl.js +22 -0
  314. package/node_modules_lambda/domexception/lib/DOMException.js +222 -0
  315. package/node_modules_lambda/domexception/lib/Function.js +42 -0
  316. package/node_modules_lambda/domexception/lib/VoidFunction.js +26 -0
  317. package/node_modules_lambda/domexception/lib/legacy-error-codes.json +24 -0
  318. package/node_modules_lambda/domexception/lib/utils.js +190 -0
  319. package/node_modules_lambda/domexception/package.json +42 -0
  320. package/node_modules_lambda/domexception/webidl2js-wrapper.js +15 -0
  321. package/node_modules_lambda/escodegen/LICENSE.BSD +21 -0
  322. package/node_modules_lambda/escodegen/README.md +84 -0
  323. package/node_modules_lambda/escodegen/bin/escodegen.js +77 -0
  324. package/node_modules_lambda/escodegen/bin/esgenerate.js +64 -0
  325. package/node_modules_lambda/escodegen/escodegen.js +2647 -0
  326. package/node_modules_lambda/escodegen/node_modules/estraverse/.jshintrc +16 -0
  327. package/node_modules_lambda/escodegen/node_modules/estraverse/LICENSE.BSD +19 -0
  328. package/node_modules_lambda/escodegen/node_modules/estraverse/README.md +153 -0
  329. package/node_modules_lambda/escodegen/node_modules/estraverse/estraverse.js +805 -0
  330. package/node_modules_lambda/escodegen/node_modules/estraverse/gulpfile.js +70 -0
  331. package/node_modules_lambda/escodegen/node_modules/estraverse/package.json +40 -0
  332. package/node_modules_lambda/escodegen/node_modules/levn/LICENSE +22 -0
  333. package/node_modules_lambda/escodegen/node_modules/levn/README.md +196 -0
  334. package/node_modules_lambda/escodegen/node_modules/levn/lib/cast.js +298 -0
  335. package/node_modules_lambda/escodegen/node_modules/levn/lib/coerce.js +285 -0
  336. package/node_modules_lambda/escodegen/node_modules/levn/lib/index.js +22 -0
  337. package/node_modules_lambda/escodegen/node_modules/levn/lib/parse-string.js +113 -0
  338. package/node_modules_lambda/escodegen/node_modules/levn/lib/parse.js +102 -0
  339. package/node_modules_lambda/escodegen/node_modules/levn/package.json +47 -0
  340. package/node_modules_lambda/escodegen/node_modules/optionator/CHANGELOG.md +56 -0
  341. package/node_modules_lambda/escodegen/node_modules/optionator/LICENSE +22 -0
  342. package/node_modules_lambda/escodegen/node_modules/optionator/README.md +238 -0
  343. package/node_modules_lambda/escodegen/node_modules/optionator/lib/help.js +260 -0
  344. package/node_modules_lambda/escodegen/node_modules/optionator/lib/index.js +465 -0
  345. package/node_modules_lambda/escodegen/node_modules/optionator/lib/util.js +54 -0
  346. package/node_modules_lambda/escodegen/node_modules/optionator/package.json +44 -0
  347. package/node_modules_lambda/escodegen/node_modules/prelude-ls/CHANGELOG.md +99 -0
  348. package/node_modules_lambda/escodegen/node_modules/prelude-ls/LICENSE +22 -0
  349. package/node_modules_lambda/escodegen/node_modules/prelude-ls/README.md +15 -0
  350. package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Func.js +65 -0
  351. package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/List.js +686 -0
  352. package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Num.js +130 -0
  353. package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Obj.js +154 -0
  354. package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Str.js +92 -0
  355. package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/index.js +178 -0
  356. package/node_modules_lambda/escodegen/node_modules/prelude-ls/package.json +52 -0
  357. package/node_modules_lambda/escodegen/node_modules/source-map/CHANGELOG.md +301 -0
  358. package/node_modules_lambda/escodegen/node_modules/source-map/LICENSE +28 -0
  359. package/node_modules_lambda/escodegen/node_modules/source-map/README.md +742 -0
  360. package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.debug.js +3234 -0
  361. package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.js +3233 -0
  362. package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.min.js +2 -0
  363. package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.min.js.map +1 -0
  364. package/node_modules_lambda/escodegen/node_modules/source-map/lib/array-set.js +121 -0
  365. package/node_modules_lambda/escodegen/node_modules/source-map/lib/base64-vlq.js +140 -0
  366. package/node_modules_lambda/escodegen/node_modules/source-map/lib/base64.js +67 -0
  367. package/node_modules_lambda/escodegen/node_modules/source-map/lib/binary-search.js +111 -0
  368. package/node_modules_lambda/escodegen/node_modules/source-map/lib/mapping-list.js +79 -0
  369. package/node_modules_lambda/escodegen/node_modules/source-map/lib/quick-sort.js +114 -0
  370. package/node_modules_lambda/escodegen/node_modules/source-map/lib/source-map-consumer.js +1145 -0
  371. package/node_modules_lambda/escodegen/node_modules/source-map/lib/source-map-generator.js +425 -0
  372. package/node_modules_lambda/escodegen/node_modules/source-map/lib/source-node.js +413 -0
  373. package/node_modules_lambda/escodegen/node_modules/source-map/lib/util.js +488 -0
  374. package/node_modules_lambda/escodegen/node_modules/source-map/package.json +73 -0
  375. package/node_modules_lambda/escodegen/node_modules/source-map/source-map.d.ts +98 -0
  376. package/node_modules_lambda/escodegen/node_modules/source-map/source-map.js +8 -0
  377. package/node_modules_lambda/escodegen/node_modules/type-check/LICENSE +22 -0
  378. package/node_modules_lambda/escodegen/node_modules/type-check/README.md +210 -0
  379. package/node_modules_lambda/escodegen/node_modules/type-check/lib/check.js +126 -0
  380. package/node_modules_lambda/escodegen/node_modules/type-check/lib/index.js +16 -0
  381. package/node_modules_lambda/escodegen/node_modules/type-check/lib/parse-type.js +196 -0
  382. package/node_modules_lambda/escodegen/node_modules/type-check/package.json +40 -0
  383. package/node_modules_lambda/escodegen/package.json +62 -0
  384. package/node_modules_lambda/esprima/ChangeLog +235 -0
  385. package/node_modules_lambda/esprima/LICENSE.BSD +21 -0
  386. package/node_modules_lambda/esprima/README.md +46 -0
  387. package/node_modules_lambda/esprima/bin/esparse.js +139 -0
  388. package/node_modules_lambda/esprima/bin/esvalidate.js +236 -0
  389. package/node_modules_lambda/esprima/dist/esprima.js +6709 -0
  390. package/node_modules_lambda/esprima/package.json +112 -0
  391. package/node_modules_lambda/esutils/LICENSE.BSD +19 -0
  392. package/node_modules_lambda/esutils/README.md +174 -0
  393. package/node_modules_lambda/esutils/lib/ast.js +144 -0
  394. package/node_modules_lambda/esutils/lib/code.js +135 -0
  395. package/node_modules_lambda/esutils/lib/keyword.js +165 -0
  396. package/node_modules_lambda/esutils/lib/utils.js +33 -0
  397. package/node_modules_lambda/esutils/package.json +44 -0
  398. package/node_modules_lambda/fast-levenshtein/LICENSE.md +25 -0
  399. package/node_modules_lambda/fast-levenshtein/README.md +104 -0
  400. package/node_modules_lambda/fast-levenshtein/levenshtein.js +136 -0
  401. package/node_modules_lambda/fast-levenshtein/package.json +39 -0
  402. package/node_modules_lambda/form-data/License +19 -0
  403. package/node_modules_lambda/form-data/README.md.bak +358 -0
  404. package/node_modules_lambda/form-data/Readme.md +358 -0
  405. package/node_modules_lambda/form-data/index.d.ts +62 -0
  406. package/node_modules_lambda/form-data/lib/browser.js +2 -0
  407. package/node_modules_lambda/form-data/lib/form_data.js +501 -0
  408. package/node_modules_lambda/form-data/lib/populate.js +10 -0
  409. package/node_modules_lambda/form-data/package.json +68 -0
  410. package/node_modules_lambda/html-encoding-sniffer/LICENSE.txt +7 -0
  411. package/node_modules_lambda/html-encoding-sniffer/README.md +40 -0
  412. package/node_modules_lambda/html-encoding-sniffer/lib/html-encoding-sniffer.js +295 -0
  413. package/node_modules_lambda/html-encoding-sniffer/package.json +31 -0
  414. package/node_modules_lambda/http-proxy-agent/README.md +74 -0
  415. package/node_modules_lambda/http-proxy-agent/dist/agent.d.ts +32 -0
  416. package/node_modules_lambda/http-proxy-agent/dist/agent.js +145 -0
  417. package/node_modules_lambda/http-proxy-agent/dist/agent.js.map +1 -0
  418. package/node_modules_lambda/http-proxy-agent/dist/index.d.ts +21 -0
  419. package/node_modules_lambda/http-proxy-agent/dist/index.js +14 -0
  420. package/node_modules_lambda/http-proxy-agent/dist/index.js.map +1 -0
  421. package/node_modules_lambda/http-proxy-agent/package.json +57 -0
  422. package/node_modules_lambda/https-proxy-agent/README.md +137 -0
  423. package/node_modules_lambda/https-proxy-agent/dist/agent.d.ts +30 -0
  424. package/node_modules_lambda/https-proxy-agent/dist/agent.js +177 -0
  425. package/node_modules_lambda/https-proxy-agent/dist/agent.js.map +1 -0
  426. package/node_modules_lambda/https-proxy-agent/dist/index.d.ts +23 -0
  427. package/node_modules_lambda/https-proxy-agent/dist/index.js +14 -0
  428. package/node_modules_lambda/https-proxy-agent/dist/index.js.map +1 -0
  429. package/node_modules_lambda/https-proxy-agent/dist/parse-proxy-response.d.ts +7 -0
  430. package/node_modules_lambda/https-proxy-agent/dist/parse-proxy-response.js +66 -0
  431. package/node_modules_lambda/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
  432. package/node_modules_lambda/https-proxy-agent/package.json +56 -0
  433. package/node_modules_lambda/is-potential-custom-element-name/LICENSE-MIT.txt +20 -0
  434. package/node_modules_lambda/is-potential-custom-element-name/README.md +40 -0
  435. package/node_modules_lambda/is-potential-custom-element-name/index.js +9 -0
  436. package/node_modules_lambda/is-potential-custom-element-name/package.json +35 -0
  437. package/node_modules_lambda/jsdom/LICENSE.txt +22 -0
  438. package/node_modules_lambda/jsdom/README.md +522 -0
  439. package/node_modules_lambda/jsdom/lib/api.js +333 -0
  440. package/node_modules_lambda/jsdom/lib/jsdom/browser/Window.js +933 -0
  441. package/node_modules_lambda/jsdom/lib/jsdom/browser/default-stylesheet.js +789 -0
  442. package/node_modules_lambda/jsdom/lib/jsdom/browser/js-globals.json +307 -0
  443. package/node_modules_lambda/jsdom/lib/jsdom/browser/not-implemented.js +13 -0
  444. package/node_modules_lambda/jsdom/lib/jsdom/browser/parser/html.js +224 -0
  445. package/node_modules_lambda/jsdom/lib/jsdom/browser/parser/index.js +37 -0
  446. package/node_modules_lambda/jsdom/lib/jsdom/browser/parser/xml.js +202 -0
  447. package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/async-resource-queue.js +114 -0
  448. package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/no-op-resource-loader.js +8 -0
  449. package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/per-document-resource-loader.js +95 -0
  450. package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/request-manager.js +33 -0
  451. package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/resource-loader.js +142 -0
  452. package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/resource-queue.js +142 -0
  453. package/node_modules_lambda/jsdom/lib/jsdom/level2/style.js +57 -0
  454. package/node_modules_lambda/jsdom/lib/jsdom/level3/xpath.js +1874 -0
  455. package/node_modules_lambda/jsdom/lib/jsdom/living/aborting/AbortController-impl.js +17 -0
  456. package/node_modules_lambda/jsdom/lib/jsdom/living/aborting/AbortSignal-impl.js +69 -0
  457. package/node_modules_lambda/jsdom/lib/jsdom/living/attributes/Attr-impl.js +60 -0
  458. package/node_modules_lambda/jsdom/lib/jsdom/living/attributes/NamedNodeMap-impl.js +78 -0
  459. package/node_modules_lambda/jsdom/lib/jsdom/living/attributes.js +312 -0
  460. package/node_modules_lambda/jsdom/lib/jsdom/living/constraint-validation/DefaultConstraintValidation-impl.js +75 -0
  461. package/node_modules_lambda/jsdom/lib/jsdom/living/constraint-validation/ValidityState-impl.js +66 -0
  462. package/node_modules_lambda/jsdom/lib/jsdom/living/cssom/StyleSheetList-impl.js +38 -0
  463. package/node_modules_lambda/jsdom/lib/jsdom/living/custom-elements/CustomElementRegistry-impl.js +265 -0
  464. package/node_modules_lambda/jsdom/lib/jsdom/living/documents.js +15 -0
  465. package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/DOMParser-impl.js +58 -0
  466. package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/InnerHTML-impl.js +29 -0
  467. package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/XMLSerializer-impl.js +18 -0
  468. package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/parse5-adapter-serialization.js +63 -0
  469. package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/serialization.js +45 -0
  470. package/node_modules_lambda/jsdom/lib/jsdom/living/events/CloseEvent-impl.js +10 -0
  471. package/node_modules_lambda/jsdom/lib/jsdom/living/events/CompositionEvent-impl.js +20 -0
  472. package/node_modules_lambda/jsdom/lib/jsdom/living/events/CustomEvent-impl.js +21 -0
  473. package/node_modules_lambda/jsdom/lib/jsdom/living/events/ErrorEvent-impl.js +14 -0
  474. package/node_modules_lambda/jsdom/lib/jsdom/living/events/Event-impl.js +197 -0
  475. package/node_modules_lambda/jsdom/lib/jsdom/living/events/EventModifierMixin-impl.js +18 -0
  476. package/node_modules_lambda/jsdom/lib/jsdom/living/events/EventTarget-impl.js +405 -0
  477. package/node_modules_lambda/jsdom/lib/jsdom/living/events/FocusEvent-impl.js +9 -0
  478. package/node_modules_lambda/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js +14 -0
  479. package/node_modules_lambda/jsdom/lib/jsdom/living/events/InputEvent-impl.js +11 -0
  480. package/node_modules_lambda/jsdom/lib/jsdom/living/events/KeyboardEvent-impl.js +29 -0
  481. package/node_modules_lambda/jsdom/lib/jsdom/living/events/MessageEvent-impl.js +25 -0
  482. package/node_modules_lambda/jsdom/lib/jsdom/living/events/MouseEvent-impl.js +49 -0
  483. package/node_modules_lambda/jsdom/lib/jsdom/living/events/PageTransitionEvent-impl.js +20 -0
  484. package/node_modules_lambda/jsdom/lib/jsdom/living/events/PopStateEvent-impl.js +9 -0
  485. package/node_modules_lambda/jsdom/lib/jsdom/living/events/ProgressEvent-impl.js +14 -0
  486. package/node_modules_lambda/jsdom/lib/jsdom/living/events/StorageEvent-impl.js +26 -0
  487. package/node_modules_lambda/jsdom/lib/jsdom/living/events/TouchEvent-impl.js +14 -0
  488. package/node_modules_lambda/jsdom/lib/jsdom/living/events/UIEvent-impl.js +59 -0
  489. package/node_modules_lambda/jsdom/lib/jsdom/living/events/WheelEvent-impl.js +12 -0
  490. package/node_modules_lambda/jsdom/lib/jsdom/living/fetch/Headers-impl.js +170 -0
  491. package/node_modules_lambda/jsdom/lib/jsdom/living/fetch/header-list.js +54 -0
  492. package/node_modules_lambda/jsdom/lib/jsdom/living/fetch/header-types.js +103 -0
  493. package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/Blob-impl.js +93 -0
  494. package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/File-impl.js +12 -0
  495. package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/FileList-impl.js +15 -0
  496. package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/FileReader-impl.js +130 -0
  497. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AbortController.js +143 -0
  498. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AbortSignal.js +184 -0
  499. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AbstractRange.js +171 -0
  500. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AddEventListenerOptions.js +44 -0
  501. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AssignedNodesOptions.js +28 -0
  502. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Attr.js +217 -0
  503. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BarProp.js +117 -0
  504. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BinaryType.js +12 -0
  505. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Blob.js +203 -0
  506. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BlobCallback.js +30 -0
  507. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BlobPropertyBag.js +42 -0
  508. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CDATASection.js +109 -0
  509. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CanPlayTypeResult.js +12 -0
  510. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CharacterData.js +453 -0
  511. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CloseEvent.js +168 -0
  512. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CloseEventInit.js +65 -0
  513. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Comment.js +120 -0
  514. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CompositionEvent.js +219 -0
  515. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CompositionEventInit.js +32 -0
  516. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomElementConstructor.js +34 -0
  517. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomElementRegistry.js +242 -0
  518. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomEvent.js +206 -0
  519. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomEventInit.js +32 -0
  520. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMImplementation.js +237 -0
  521. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMParser.js +140 -0
  522. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMStringMap.js +323 -0
  523. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMTokenList.js +563 -0
  524. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Document.js +3593 -0
  525. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DocumentFragment.js +334 -0
  526. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DocumentReadyState.js +12 -0
  527. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DocumentType.js +252 -0
  528. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Element.js +1718 -0
  529. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ElementCreationOptions.js +26 -0
  530. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ElementDefinitionOptions.js +29 -0
  531. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EndingType.js +12 -0
  532. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ErrorEvent.js +192 -0
  533. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ErrorEventInit.js +92 -0
  534. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Event.js +430 -0
  535. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventHandlerNonNull.js +36 -0
  536. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventInit.js +58 -0
  537. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventListener.js +35 -0
  538. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventListenerOptions.js +28 -0
  539. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventModifierInit.js +221 -0
  540. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventTarget.js +259 -0
  541. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/External.js +130 -0
  542. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/File.js +177 -0
  543. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FileList.js +324 -0
  544. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FilePropertyBag.js +33 -0
  545. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FileReader.js +468 -0
  546. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FocusEvent.js +144 -0
  547. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FocusEventInit.js +36 -0
  548. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FormData.js +452 -0
  549. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Function.js +42 -0
  550. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/GetRootNodeOptions.js +31 -0
  551. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLAnchorElement.js +1023 -0
  552. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLAreaElement.js +822 -0
  553. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLAudioElement.js +110 -0
  554. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLBRElement.js +153 -0
  555. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLBaseElement.js +193 -0
  556. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLBodyElement.js +877 -0
  557. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLButtonElement.js +522 -0
  558. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLCanvasElement.js +304 -0
  559. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLCollection.js +378 -0
  560. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDListElement.js +156 -0
  561. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDataElement.js +153 -0
  562. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDataListElement.js +125 -0
  563. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDetailsElement.js +156 -0
  564. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDialogElement.js +156 -0
  565. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDirectoryElement.js +156 -0
  566. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDivElement.js +153 -0
  567. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLElement.js +2549 -0
  568. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLEmbedElement.js +371 -0
  569. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFieldSetElement.js +329 -0
  570. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFontElement.js +236 -0
  571. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFormElement.js +501 -0
  572. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFrameElement.js +494 -0
  573. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFrameSetElement.js +708 -0
  574. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHRElement.js +320 -0
  575. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHeadElement.js +110 -0
  576. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHeadingElement.js +153 -0
  577. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHtmlElement.js +153 -0
  578. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLIFrameElement.js +670 -0
  579. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLImageElement.js +870 -0
  580. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLInputElement.js +1875 -0
  581. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLIElement.js +199 -0
  582. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLabelElement.js +179 -0
  583. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLegendElement.js +166 -0
  584. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLinkElement.js +542 -0
  585. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMapElement.js +168 -0
  586. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMarqueeElement.js +546 -0
  587. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMediaElement.js +888 -0
  588. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMenuElement.js +156 -0
  589. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMetaElement.js +276 -0
  590. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMeterElement.js +365 -0
  591. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLModElement.js +207 -0
  592. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOListElement.js +281 -0
  593. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLObjectElement.js +921 -0
  594. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOptGroupElement.js +197 -0
  595. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOptionElement.js +376 -0
  596. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOptionsCollection.js +537 -0
  597. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOutputElement.js +392 -0
  598. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLParagraphElement.js +153 -0
  599. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLParamElement.js +276 -0
  600. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLPictureElement.js +110 -0
  601. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLPreElement.js +158 -0
  602. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLProgressElement.js +218 -0
  603. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLQuoteElement.js +166 -0
  604. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLScriptElement.js +459 -0
  605. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSelectElement.js +1013 -0
  606. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSlotElement.js +192 -0
  607. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSourceElement.js +330 -0
  608. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSpanElement.js +110 -0
  609. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLStyleElement.js +207 -0
  610. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableCaptionElement.js +153 -0
  611. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableCellElement.js +700 -0
  612. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableColElement.js +364 -0
  613. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableElement.js +799 -0
  614. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableRowElement.js +414 -0
  615. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableSectionElement.js +346 -0
  616. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTemplateElement.js +123 -0
  617. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTextAreaElement.js +1171 -0
  618. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTimeElement.js +153 -0
  619. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTitleElement.js +152 -0
  620. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTrackElement.js +356 -0
  621. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLUListElement.js +197 -0
  622. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLUnknownElement.js +109 -0
  623. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLVideoElement.js +329 -0
  624. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HashChangeEvent.js +157 -0
  625. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HashChangeEventInit.js +50 -0
  626. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Headers.js +408 -0
  627. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/History.js +266 -0
  628. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/InputEvent.js +168 -0
  629. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/InputEventInit.js +68 -0
  630. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/KeyboardEvent.js +445 -0
  631. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/KeyboardEventInit.js +116 -0
  632. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Location.js +404 -0
  633. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MessageEvent.js +317 -0
  634. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MessageEventInit.js +100 -0
  635. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MimeType.js +156 -0
  636. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MimeTypeArray.js +352 -0
  637. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MouseEvent.js +499 -0
  638. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MouseEventInit.js +111 -0
  639. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationCallback.js +34 -0
  640. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationObserver.js +178 -0
  641. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationObserverInit.js +121 -0
  642. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationRecord.js +229 -0
  643. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NamedNodeMap.js +553 -0
  644. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Navigator.js +326 -0
  645. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Node.js +763 -0
  646. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NodeFilter.js +75 -0
  647. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NodeIterator.js +207 -0
  648. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NodeList.js +328 -0
  649. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/OnBeforeUnloadEventHandlerNonNull.js +42 -0
  650. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/OnErrorEventHandlerNonNull.js +56 -0
  651. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PageTransitionEvent.js +144 -0
  652. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PageTransitionEventInit.js +35 -0
  653. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Performance.js +142 -0
  654. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Plugin.js +385 -0
  655. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PluginArray.js +362 -0
  656. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PopStateEvent.js +144 -0
  657. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PopStateEventInit.js +32 -0
  658. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ProcessingInstruction.js +122 -0
  659. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ProgressEvent.js +170 -0
  660. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ProgressEventInit.js +65 -0
  661. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Range.js +641 -0
  662. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGAnimatedString.js +149 -0
  663. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGBoundingBoxOptions.js +64 -0
  664. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGElement.js +2227 -0
  665. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGGraphicsElement.js +139 -0
  666. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGNumber.js +132 -0
  667. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGSVGElement.js +737 -0
  668. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGStringList.js +537 -0
  669. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGTitleElement.js +109 -0
  670. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Screen.js +180 -0
  671. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollBehavior.js +12 -0
  672. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollIntoViewOptions.js +45 -0
  673. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollLogicalPosition.js +14 -0
  674. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollOptions.js +30 -0
  675. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollRestoration.js +12 -0
  676. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Selection.js +569 -0
  677. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SelectionMode.js +12 -0
  678. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ShadowRoot.js +187 -0
  679. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ShadowRootInit.js +30 -0
  680. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ShadowRootMode.js +12 -0
  681. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StaticRange.js +123 -0
  682. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StaticRangeInit.js +72 -0
  683. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Storage.js +423 -0
  684. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StorageEvent.js +318 -0
  685. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StorageEventInit.js +99 -0
  686. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StyleSheetList.js +326 -0
  687. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SupportedType.js +18 -0
  688. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Text.js +170 -0
  689. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TextTrackKind.js +12 -0
  690. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TouchEvent.js +222 -0
  691. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TouchEventInit.js +89 -0
  692. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TreeWalker.js +255 -0
  693. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/UIEvent.js +235 -0
  694. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/UIEventInit.js +62 -0
  695. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ValidityState.js +249 -0
  696. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/VisibilityState.js +12 -0
  697. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/VoidFunction.js +26 -0
  698. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/WebSocket.js +476 -0
  699. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/WheelEvent.js +191 -0
  700. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/WheelEventInit.js +71 -0
  701. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLDocument.js +109 -0
  702. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequest.js +655 -0
  703. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequestEventTarget.js +334 -0
  704. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequestResponseType.js +14 -0
  705. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequestUpload.js +109 -0
  706. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLSerializer.js +132 -0
  707. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/utils.js +190 -0
  708. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/agent-factory.js +15 -0
  709. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/binary-data.js +9 -0
  710. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/create-element.js +320 -0
  711. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/create-event-accessor.js +188 -0
  712. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/custom-elements.js +270 -0
  713. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/dates-and-times.js +270 -0
  714. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/details.js +15 -0
  715. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/document-base-url.js +54 -0
  716. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/events.js +24 -0
  717. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/focusing.js +104 -0
  718. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/form-controls.js +306 -0
  719. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/html-constructor.js +78 -0
  720. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/http-request.js +254 -0
  721. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/internal-constants.js +12 -0
  722. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/iterable-weak-set.js +48 -0
  723. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/json.js +12 -0
  724. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/mutation-observers.js +198 -0
  725. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/namespaces.js +15 -0
  726. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/node.js +68 -0
  727. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/number-and-date-inputs.js +195 -0
  728. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/ordered-set.js +104 -0
  729. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/page-transition-event.js +9 -0
  730. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js +76 -0
  731. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/selectors.js +47 -0
  732. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/shadow-dom.js +285 -0
  733. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/strings.js +148 -0
  734. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/style-rules.js +114 -0
  735. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/stylesheets.js +113 -0
  736. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/svg/basic-types.js +41 -0
  737. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/svg/render.js +46 -0
  738. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/text.js +19 -0
  739. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/traversal.js +72 -0
  740. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/validate-names.js +65 -0
  741. package/node_modules_lambda/jsdom/lib/jsdom/living/hr-time/Performance-impl.js +25 -0
  742. package/node_modules_lambda/jsdom/lib/jsdom/living/interfaces.js +217 -0
  743. package/node_modules_lambda/jsdom/lib/jsdom/living/mutation-observer/MutationObserver-impl.js +95 -0
  744. package/node_modules_lambda/jsdom/lib/jsdom/living/mutation-observer/MutationRecord-impl.js +37 -0
  745. package/node_modules_lambda/jsdom/lib/jsdom/living/named-properties-window.js +141 -0
  746. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/MimeType-impl.js +3 -0
  747. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/MimeTypeArray-impl.js +21 -0
  748. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/Navigator-impl.js +29 -0
  749. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js +8 -0
  750. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorCookies-impl.js +7 -0
  751. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorID-impl.js +37 -0
  752. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorLanguage-impl.js +9 -0
  753. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorOnLine-impl.js +7 -0
  754. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorPlugins-impl.js +8 -0
  755. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/Plugin-impl.js +3 -0
  756. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/PluginArray-impl.js +23 -0
  757. package/node_modules_lambda/jsdom/lib/jsdom/living/node-document-position.js +10 -0
  758. package/node_modules_lambda/jsdom/lib/jsdom/living/node-type.js +16 -0
  759. package/node_modules_lambda/jsdom/lib/jsdom/living/node.js +331 -0
  760. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/CDATASection-impl.js +16 -0
  761. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/CharacterData-impl.js +118 -0
  762. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js +80 -0
  763. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Comment-impl.js +20 -0
  764. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DOMImplementation-impl.js +120 -0
  765. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DOMStringMap-impl.js +64 -0
  766. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DOMTokenList-impl.js +171 -0
  767. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Document-impl.js +946 -0
  768. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DocumentFragment-impl.js +44 -0
  769. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DocumentOrShadowRoot-impl.js +28 -0
  770. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DocumentType-impl.js +24 -0
  771. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Element-impl.js +582 -0
  772. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ElementCSSInlineStyle-impl.js +25 -0
  773. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ElementContentEditable-impl.js +7 -0
  774. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/GlobalEventHandlers-impl.js +95 -0
  775. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLAnchorElement-impl.js +50 -0
  776. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLAreaElement-impl.js +43 -0
  777. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLAudioElement-impl.js +9 -0
  778. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLBRElement-impl.js +9 -0
  779. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLBaseElement-impl.js +27 -0
  780. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLBodyElement-impl.js +17 -0
  781. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js +79 -0
  782. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLCanvasElement-impl.js +130 -0
  783. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLCollection-impl.js +96 -0
  784. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDListElement-impl.js +9 -0
  785. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDataElement-impl.js +9 -0
  786. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDataListElement-impl.js +20 -0
  787. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDetailsElement-impl.js +35 -0
  788. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDialogElement-impl.js +9 -0
  789. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDirectoryElement-impl.js +9 -0
  790. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDivElement-impl.js +9 -0
  791. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js +160 -0
  792. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLEmbedElement-impl.js +8 -0
  793. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFieldSetElement-impl.js +43 -0
  794. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFontElement-impl.js +9 -0
  795. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js +232 -0
  796. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFrameElement-impl.js +261 -0
  797. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFrameSetElement-impl.js +17 -0
  798. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHRElement-impl.js +9 -0
  799. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHeadElement-impl.js +9 -0
  800. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHeadingElement-impl.js +9 -0
  801. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHtmlElement-impl.js +9 -0
  802. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHyperlinkElementUtils-impl.js +371 -0
  803. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLIFrameElement-impl.js +9 -0
  804. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLImageElement-impl.js +132 -0
  805. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js +1129 -0
  806. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLIElement-impl.js +9 -0
  807. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLabelElement-impl.js +94 -0
  808. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLegendElement-impl.js +18 -0
  809. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLinkElement-impl.js +101 -0
  810. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMapElement-impl.js +13 -0
  811. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMarqueeElement-impl.js +9 -0
  812. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMediaElement-impl.js +138 -0
  813. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMenuElement-impl.js +9 -0
  814. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMetaElement-impl.js +9 -0
  815. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMeterElement-impl.js +180 -0
  816. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLModElement-impl.js +9 -0
  817. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js +22 -0
  818. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js +26 -0
  819. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOptGroupElement-impl.js +9 -0
  820. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOptionElement-impl.js +146 -0
  821. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOptionsCollection-impl.js +110 -0
  822. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js +85 -0
  823. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOutputElement-impl.js +88 -0
  824. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLParagraphElement-impl.js +9 -0
  825. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLParamElement-impl.js +9 -0
  826. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLPictureElement-impl.js +9 -0
  827. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLPreElement-impl.js +9 -0
  828. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLProgressElement-impl.js +74 -0
  829. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLQuoteElement-impl.js +9 -0
  830. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLScriptElement-impl.js +265 -0
  831. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSelectElement-impl.js +283 -0
  832. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSlotElement-impl.js +59 -0
  833. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSourceElement-impl.js +8 -0
  834. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSpanElement-impl.js +9 -0
  835. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl.js +74 -0
  836. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableCaptionElement-impl.js +9 -0
  837. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableCellElement-impl.js +73 -0
  838. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableColElement-impl.js +9 -0
  839. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableElement-impl.js +236 -0
  840. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableRowElement-impl.js +88 -0
  841. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js +61 -0
  842. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTemplateElement-impl.js +67 -0
  843. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js +272 -0
  844. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTimeElement-impl.js +9 -0
  845. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTitleElement-impl.js +18 -0
  846. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js +13 -0
  847. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLUListElement-impl.js +9 -0
  848. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLUnknownElement-impl.js +9 -0
  849. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLVideoElement-impl.js +17 -0
  850. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/LinkStyle-impl.js +2 -0
  851. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Node-impl.js +1159 -0
  852. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/NodeList-impl.js +43 -0
  853. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/NonDocumentTypeChildNode-impl.js +28 -0
  854. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/NonElementParentNode-impl.js +11 -0
  855. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ParentNode-impl.js +91 -0
  856. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ProcessingInstruction-impl.js +22 -0
  857. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGElement-impl.js +64 -0
  858. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js +16 -0
  859. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGSVGElement-impl.js +42 -0
  860. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGTests-impl.js +42 -0
  861. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGTitleElement-impl.js +9 -0
  862. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ShadowRoot-impl.js +40 -0
  863. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Slotable-impl.js +48 -0
  864. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Text-impl.js +96 -0
  865. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/WindowEventHandlers-impl.js +52 -0
  866. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/XMLDocument-impl.js +4 -0
  867. package/node_modules_lambda/jsdom/lib/jsdom/living/post-message.js +39 -0
  868. package/node_modules_lambda/jsdom/lib/jsdom/living/range/AbstractRange-impl.js +43 -0
  869. package/node_modules_lambda/jsdom/lib/jsdom/living/range/Range-impl.js +897 -0
  870. package/node_modules_lambda/jsdom/lib/jsdom/living/range/StaticRange-impl.js +39 -0
  871. package/node_modules_lambda/jsdom/lib/jsdom/living/range/boundary-point.js +47 -0
  872. package/node_modules_lambda/jsdom/lib/jsdom/living/selection/Selection-impl.js +342 -0
  873. package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGAnimatedString-impl.js +38 -0
  874. package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGListBase.js +195 -0
  875. package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGNumber-impl.js +48 -0
  876. package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGStringList-impl.js +16 -0
  877. package/node_modules_lambda/jsdom/lib/jsdom/living/traversal/NodeIterator-impl.js +127 -0
  878. package/node_modules_lambda/jsdom/lib/jsdom/living/traversal/TreeWalker-impl.js +217 -0
  879. package/node_modules_lambda/jsdom/lib/jsdom/living/traversal/helpers.js +44 -0
  880. package/node_modules_lambda/jsdom/lib/jsdom/living/websockets/WebSocket-impl-browser.js +175 -0
  881. package/node_modules_lambda/jsdom/lib/jsdom/living/websockets/WebSocket-impl.js +328 -0
  882. package/node_modules_lambda/jsdom/lib/jsdom/living/webstorage/Storage-impl.js +102 -0
  883. package/node_modules_lambda/jsdom/lib/jsdom/living/window/BarProp-impl.js +10 -0
  884. package/node_modules_lambda/jsdom/lib/jsdom/living/window/External-impl.js +9 -0
  885. package/node_modules_lambda/jsdom/lib/jsdom/living/window/History-impl.js +134 -0
  886. package/node_modules_lambda/jsdom/lib/jsdom/living/window/Location-impl.js +238 -0
  887. package/node_modules_lambda/jsdom/lib/jsdom/living/window/Screen-impl.js +13 -0
  888. package/node_modules_lambda/jsdom/lib/jsdom/living/window/SessionHistory.js +163 -0
  889. package/node_modules_lambda/jsdom/lib/jsdom/living/window/navigation.js +85 -0
  890. package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/FormData-impl.js +171 -0
  891. package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/XMLHttpRequest-impl.js +1023 -0
  892. package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/XMLHttpRequestEventTarget-impl.js +17 -0
  893. package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/XMLHttpRequestUpload-impl.js +4 -0
  894. package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/xhr-sync-worker.js +60 -0
  895. package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/xhr-utils.js +438 -0
  896. package/node_modules_lambda/jsdom/lib/jsdom/named-properties-tracker.js +158 -0
  897. package/node_modules_lambda/jsdom/lib/jsdom/utils.js +165 -0
  898. package/node_modules_lambda/jsdom/lib/jsdom/virtual-console.js +34 -0
  899. package/node_modules_lambda/jsdom/lib/jsdom/vm-shim.js +106 -0
  900. package/node_modules_lambda/jsdom/package.json +116 -0
  901. package/node_modules_lambda/mime-db/HISTORY.md +507 -0
  902. package/node_modules_lambda/mime-db/LICENSE +23 -0
  903. package/node_modules_lambda/mime-db/README.md +100 -0
  904. package/node_modules_lambda/mime-db/db.json +8519 -0
  905. package/node_modules_lambda/mime-db/index.js +12 -0
  906. package/node_modules_lambda/mime-db/package.json +60 -0
  907. package/node_modules_lambda/mime-types/HISTORY.md +397 -0
  908. package/node_modules_lambda/mime-types/LICENSE +23 -0
  909. package/node_modules_lambda/mime-types/README.md +113 -0
  910. package/node_modules_lambda/mime-types/index.js +188 -0
  911. package/node_modules_lambda/mime-types/package.json +44 -0
  912. package/node_modules_lambda/ms/index.js +162 -0
  913. package/node_modules_lambda/ms/license.md +21 -0
  914. package/node_modules_lambda/ms/package.json +37 -0
  915. package/node_modules_lambda/ms/readme.md +60 -0
  916. package/node_modules_lambda/nwsapi/LICENSE +22 -0
  917. package/node_modules_lambda/nwsapi/README.md +132 -0
  918. package/node_modules_lambda/nwsapi/dist/lint.log +0 -0
  919. package/node_modules_lambda/nwsapi/package.json +38 -0
  920. package/node_modules_lambda/nwsapi/src/modules/nwsapi-jquery.js +135 -0
  921. package/node_modules_lambda/nwsapi/src/modules/nwsapi-traversal.js +90 -0
  922. package/node_modules_lambda/nwsapi/src/nwsapi.js +1800 -0
  923. package/node_modules_lambda/parse5/LICENSE +19 -0
  924. package/node_modules_lambda/parse5/README.md +38 -0
  925. package/node_modules_lambda/parse5/lib/common/doctype.js +162 -0
  926. package/node_modules_lambda/parse5/lib/common/error-codes.js +65 -0
  927. package/node_modules_lambda/parse5/lib/common/foreign-content.js +265 -0
  928. package/node_modules_lambda/parse5/lib/common/html.js +272 -0
  929. package/node_modules_lambda/parse5/lib/common/unicode.js +109 -0
  930. package/node_modules_lambda/parse5/lib/extensions/error-reporting/mixin-base.js +43 -0
  931. package/node_modules_lambda/parse5/lib/extensions/error-reporting/parser-mixin.js +52 -0
  932. package/node_modules_lambda/parse5/lib/extensions/error-reporting/preprocessor-mixin.js +24 -0
  933. package/node_modules_lambda/parse5/lib/extensions/error-reporting/tokenizer-mixin.js +17 -0
  934. package/node_modules_lambda/parse5/lib/extensions/location-info/open-element-stack-mixin.js +35 -0
  935. package/node_modules_lambda/parse5/lib/extensions/location-info/parser-mixin.js +223 -0
  936. package/node_modules_lambda/parse5/lib/extensions/location-info/tokenizer-mixin.js +146 -0
  937. package/node_modules_lambda/parse5/lib/extensions/position-tracking/preprocessor-mixin.js +64 -0
  938. package/node_modules_lambda/parse5/lib/index.js +29 -0
  939. package/node_modules_lambda/parse5/lib/parser/formatting-element-list.js +181 -0
  940. package/node_modules_lambda/parse5/lib/parser/index.js +2956 -0
  941. package/node_modules_lambda/parse5/lib/parser/open-element-stack.js +482 -0
  942. package/node_modules_lambda/parse5/lib/serializer/index.js +176 -0
  943. package/node_modules_lambda/parse5/lib/tokenizer/index.js +2196 -0
  944. package/node_modules_lambda/parse5/lib/tokenizer/named-entity-data.js +5 -0
  945. package/node_modules_lambda/parse5/lib/tokenizer/preprocessor.js +159 -0
  946. package/node_modules_lambda/parse5/lib/tree-adapters/default.js +221 -0
  947. package/node_modules_lambda/parse5/lib/utils/merge-options.js +13 -0
  948. package/node_modules_lambda/parse5/lib/utils/mixin.js +39 -0
  949. package/node_modules_lambda/parse5/package.json +35 -0
  950. package/node_modules_lambda/psl/LICENSE +9 -0
  951. package/node_modules_lambda/psl/README.md +215 -0
  952. package/node_modules_lambda/psl/browserstack-logo.svg +90 -0
  953. package/node_modules_lambda/psl/data/rules.json +8834 -0
  954. package/node_modules_lambda/psl/dist/psl.js +9645 -0
  955. package/node_modules_lambda/psl/dist/psl.min.js +1 -0
  956. package/node_modules_lambda/psl/index.js +269 -0
  957. package/node_modules_lambda/psl/package.json +44 -0
  958. package/node_modules_lambda/punycode/LICENSE-MIT.txt +20 -0
  959. package/node_modules_lambda/punycode/README.md +122 -0
  960. package/node_modules_lambda/punycode/package.json +58 -0
  961. package/node_modules_lambda/punycode/punycode.es6.js +441 -0
  962. package/node_modules_lambda/punycode/punycode.js +440 -0
  963. package/node_modules_lambda/safer-buffer/LICENSE +21 -0
  964. package/node_modules_lambda/safer-buffer/Porting-Buffer.md +268 -0
  965. package/node_modules_lambda/safer-buffer/Readme.md +156 -0
  966. package/node_modules_lambda/safer-buffer/dangerous.js +58 -0
  967. package/node_modules_lambda/safer-buffer/package.json +34 -0
  968. package/node_modules_lambda/safer-buffer/safer.js +77 -0
  969. package/node_modules_lambda/safer-buffer/tests.js +406 -0
  970. package/node_modules_lambda/saxes/README.md +323 -0
  971. package/node_modules_lambda/saxes/package.json +70 -0
  972. package/node_modules_lambda/saxes/saxes.d.ts +635 -0
  973. package/node_modules_lambda/saxes/saxes.js +2064 -0
  974. package/node_modules_lambda/saxes/saxes.js.map +1 -0
  975. package/node_modules_lambda/symbol-tree/LICENSE +21 -0
  976. package/node_modules_lambda/symbol-tree/README.md +545 -0
  977. package/node_modules_lambda/symbol-tree/lib/SymbolTree.js +838 -0
  978. package/node_modules_lambda/symbol-tree/lib/SymbolTreeNode.js +54 -0
  979. package/node_modules_lambda/symbol-tree/lib/TreeIterator.js +69 -0
  980. package/node_modules_lambda/symbol-tree/lib/TreePosition.js +11 -0
  981. package/node_modules_lambda/symbol-tree/package.json +47 -0
  982. package/node_modules_lambda/tough-cookie/LICENSE +12 -0
  983. package/node_modules_lambda/tough-cookie/README.md +582 -0
  984. package/node_modules_lambda/tough-cookie/lib/cookie.js +1671 -0
  985. package/node_modules_lambda/tough-cookie/lib/memstore.js +190 -0
  986. package/node_modules_lambda/tough-cookie/lib/pathMatch.js +61 -0
  987. package/node_modules_lambda/tough-cookie/lib/permuteDomain.js +70 -0
  988. package/node_modules_lambda/tough-cookie/lib/pubsuffix-psl.js +38 -0
  989. package/node_modules_lambda/tough-cookie/lib/store.js +76 -0
  990. package/node_modules_lambda/tough-cookie/lib/version.js +2 -0
  991. package/node_modules_lambda/tough-cookie/package.json +109 -0
  992. package/node_modules_lambda/tr46/LICENSE.md +21 -0
  993. package/node_modules_lambda/tr46/README.md +78 -0
  994. package/node_modules_lambda/tr46/index.js +298 -0
  995. package/node_modules_lambda/tr46/lib/mappingTable.json +1 -0
  996. package/node_modules_lambda/tr46/lib/regexes.js +29 -0
  997. package/node_modules_lambda/tr46/lib/statusMapping.js +11 -0
  998. package/node_modules_lambda/tr46/package.json +47 -0
  999. package/node_modules_lambda/universalify/LICENSE +20 -0
  1000. package/node_modules_lambda/universalify/README.md +76 -0
  1001. package/node_modules_lambda/universalify/index.js +25 -0
  1002. package/node_modules_lambda/universalify/package.json +34 -0
  1003. package/node_modules_lambda/w3c-hr-time/CHANGELOG.md +19 -0
  1004. package/node_modules_lambda/w3c-hr-time/LICENSE.md +21 -0
  1005. package/node_modules_lambda/w3c-hr-time/README.md +130 -0
  1006. package/node_modules_lambda/w3c-hr-time/index.js +11 -0
  1007. package/node_modules_lambda/w3c-hr-time/lib/calculate-clock-offset.js +39 -0
  1008. package/node_modules_lambda/w3c-hr-time/lib/clock-is-accurate.js +61 -0
  1009. package/node_modules_lambda/w3c-hr-time/lib/global-monotonic-clock.js +10 -0
  1010. package/node_modules_lambda/w3c-hr-time/lib/performance.js +53 -0
  1011. package/node_modules_lambda/w3c-hr-time/lib/utils.js +11 -0
  1012. package/node_modules_lambda/w3c-hr-time/package.json +26 -0
  1013. package/node_modules_lambda/w3c-xmlserializer/LICENSE.md +25 -0
  1014. package/node_modules_lambda/w3c-xmlserializer/README.md +41 -0
  1015. package/node_modules_lambda/w3c-xmlserializer/lib/attributes.js +125 -0
  1016. package/node_modules_lambda/w3c-xmlserializer/lib/constants.js +44 -0
  1017. package/node_modules_lambda/w3c-xmlserializer/lib/serialize.js +365 -0
  1018. package/node_modules_lambda/w3c-xmlserializer/package.json +33 -0
  1019. package/node_modules_lambda/webidl-conversions/LICENSE.md +12 -0
  1020. package/node_modules_lambda/webidl-conversions/README.md +99 -0
  1021. package/node_modules_lambda/webidl-conversions/lib/index.js +450 -0
  1022. package/node_modules_lambda/webidl-conversions/package.json +35 -0
  1023. package/node_modules_lambda/whatwg-encoding/LICENSE.txt +7 -0
  1024. package/node_modules_lambda/whatwg-encoding/README.md +50 -0
  1025. package/node_modules_lambda/whatwg-encoding/lib/labels-to-names.json +216 -0
  1026. package/node_modules_lambda/whatwg-encoding/lib/supported-names.json +37 -0
  1027. package/node_modules_lambda/whatwg-encoding/lib/whatwg-encoding.js +47 -0
  1028. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/.github/dependabot.yml +11 -0
  1029. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/Changelog.md +212 -0
  1030. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/LICENSE +21 -0
  1031. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/README.md +130 -0
  1032. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
  1033. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
  1034. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/index.js +23 -0
  1035. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/internal.js +198 -0
  1036. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  1037. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  1038. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
  1039. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  1040. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  1041. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  1042. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  1043. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  1044. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  1045. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  1046. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  1047. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/utf16.js +197 -0
  1048. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/utf32.js +319 -0
  1049. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/utf7.js +290 -0
  1050. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  1051. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/index.d.ts +41 -0
  1052. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/index.js +180 -0
  1053. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/streams.js +109 -0
  1054. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/package.json +44 -0
  1055. package/node_modules_lambda/whatwg-encoding/package.json +33 -0
  1056. package/node_modules_lambda/whatwg-mimetype/LICENSE.txt +7 -0
  1057. package/node_modules_lambda/whatwg-mimetype/README.md +101 -0
  1058. package/node_modules_lambda/whatwg-mimetype/lib/mime-type-parameters.js +70 -0
  1059. package/node_modules_lambda/whatwg-mimetype/lib/mime-type.js +127 -0
  1060. package/node_modules_lambda/whatwg-mimetype/lib/parser.js +105 -0
  1061. package/node_modules_lambda/whatwg-mimetype/lib/serializer.js +25 -0
  1062. package/node_modules_lambda/whatwg-mimetype/lib/utils.js +60 -0
  1063. package/node_modules_lambda/whatwg-mimetype/package.json +47 -0
  1064. package/node_modules_lambda/whatwg-url/LICENSE.txt +21 -0
  1065. package/node_modules_lambda/whatwg-url/README.md +105 -0
  1066. package/node_modules_lambda/whatwg-url/index.js +25 -0
  1067. package/node_modules_lambda/whatwg-url/lib/Function.js +42 -0
  1068. package/node_modules_lambda/whatwg-url/lib/URL-impl.js +217 -0
  1069. package/node_modules_lambda/whatwg-url/lib/URL.js +442 -0
  1070. package/node_modules_lambda/whatwg-url/lib/URLSearchParams-impl.js +130 -0
  1071. package/node_modules_lambda/whatwg-url/lib/URLSearchParams.js +472 -0
  1072. package/node_modules_lambda/whatwg-url/lib/VoidFunction.js +26 -0
  1073. package/node_modules_lambda/whatwg-url/lib/encoding.js +16 -0
  1074. package/node_modules_lambda/whatwg-url/lib/infra.js +26 -0
  1075. package/node_modules_lambda/whatwg-url/lib/percent-encoding.js +142 -0
  1076. package/node_modules_lambda/whatwg-url/lib/url-state-machine.js +1234 -0
  1077. package/node_modules_lambda/whatwg-url/lib/urlencoded.js +106 -0
  1078. package/node_modules_lambda/whatwg-url/lib/utils.js +190 -0
  1079. package/node_modules_lambda/whatwg-url/package.json +58 -0
  1080. package/node_modules_lambda/whatwg-url/webidl2js-wrapper.js +7 -0
  1081. package/node_modules_lambda/word-wrap/LICENSE +21 -0
  1082. package/node_modules_lambda/word-wrap/README.md +182 -0
  1083. package/node_modules_lambda/word-wrap/index.d.ts +50 -0
  1084. package/node_modules_lambda/word-wrap/index.js +46 -0
  1085. package/node_modules_lambda/word-wrap/package.json +77 -0
  1086. package/node_modules_lambda/ws/LICENSE +19 -0
  1087. package/node_modules_lambda/ws/README.md +495 -0
  1088. package/node_modules_lambda/ws/browser.js +8 -0
  1089. package/node_modules_lambda/ws/index.js +13 -0
  1090. package/node_modules_lambda/ws/lib/buffer-util.js +127 -0
  1091. package/node_modules_lambda/ws/lib/constants.js +12 -0
  1092. package/node_modules_lambda/ws/lib/event-target.js +266 -0
  1093. package/node_modules_lambda/ws/lib/extension.js +203 -0
  1094. package/node_modules_lambda/ws/lib/limiter.js +55 -0
  1095. package/node_modules_lambda/ws/lib/permessage-deflate.js +511 -0
  1096. package/node_modules_lambda/ws/lib/receiver.js +618 -0
  1097. package/node_modules_lambda/ws/lib/sender.js +478 -0
  1098. package/node_modules_lambda/ws/lib/stream.js +159 -0
  1099. package/node_modules_lambda/ws/lib/subprotocol.js +62 -0
  1100. package/node_modules_lambda/ws/lib/validation.js +125 -0
  1101. package/node_modules_lambda/ws/lib/websocket-server.js +535 -0
  1102. package/node_modules_lambda/ws/lib/websocket.js +1296 -0
  1103. package/node_modules_lambda/ws/package.json +61 -0
  1104. package/node_modules_lambda/ws/wrapper.mjs +8 -0
  1105. package/node_modules_lambda/xml-name-validator/LICENSE.txt +176 -0
  1106. package/node_modules_lambda/xml-name-validator/README.md +35 -0
  1107. package/node_modules_lambda/xml-name-validator/lib/xml-name-validator.js +9 -0
  1108. package/node_modules_lambda/xml-name-validator/package.json +30 -0
  1109. package/node_modules_lambda/xmlchars/LICENSE +18 -0
  1110. package/node_modules_lambda/xmlchars/README.md +33 -0
  1111. package/node_modules_lambda/xmlchars/package.json +51 -0
  1112. package/node_modules_lambda/xmlchars/xml/1.0/ed4.d.ts +31 -0
  1113. package/node_modules_lambda/xmlchars/xml/1.0/ed4.js +44 -0
  1114. package/node_modules_lambda/xmlchars/xml/1.0/ed4.js.map +1 -0
  1115. package/node_modules_lambda/xmlchars/xml/1.0/ed5.d.ts +51 -0
  1116. package/node_modules_lambda/xmlchars/xml/1.0/ed5.js +105 -0
  1117. package/node_modules_lambda/xmlchars/xml/1.0/ed5.js.map +1 -0
  1118. package/node_modules_lambda/xmlchars/xml/1.1/ed2.d.ts +73 -0
  1119. package/node_modules_lambda/xmlchars/xml/1.1/ed2.js +145 -0
  1120. package/node_modules_lambda/xmlchars/xml/1.1/ed2.js.map +1 -0
  1121. package/node_modules_lambda/xmlchars/xmlchars.d.ts +170 -0
  1122. package/node_modules_lambda/xmlchars/xmlchars.js +191 -0
  1123. package/node_modules_lambda/xmlchars/xmlchars.js.map +1 -0
  1124. package/node_modules_lambda/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
  1125. package/node_modules_lambda/xmlchars/xmlns/1.0/ed3.js +65 -0
  1126. package/node_modules_lambda/xmlchars/xmlns/1.0/ed3.js.map +1 -0
  1127. package/package.json +8 -3
@@ -0,0 +1,1671 @@
1
+ /*!
2
+ * Copyright (c) 2015, Salesforce.com, Inc.
3
+ * All rights reserved.
4
+ *
5
+ * Redistribution and use in source and binary forms, with or without
6
+ * modification, are permitted provided that the following conditions are met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright notice,
9
+ * this list of conditions and the following disclaimer.
10
+ *
11
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ * this list of conditions and the following disclaimer in the documentation
13
+ * and/or other materials provided with the distribution.
14
+ *
15
+ * 3. Neither the name of Salesforce.com nor the names of its contributors may
16
+ * be used to endorse or promote products derived from this software without
17
+ * specific prior written permission.
18
+ *
19
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
+ * POSSIBILITY OF SUCH DAMAGE.
30
+ */
31
+ "use strict";
32
+ const punycode = require("punycode");
33
+ const urlParse = require("url").parse;
34
+ const util = require("util");
35
+ const pubsuffix = require("./pubsuffix-psl");
36
+ const Store = require("./store").Store;
37
+ const MemoryCookieStore = require("./memstore").MemoryCookieStore;
38
+ const pathMatch = require("./pathMatch").pathMatch;
39
+ const VERSION = require("./version");
40
+ const { fromCallback } = require("universalify");
41
+
42
+ // From RFC6265 S4.1.1
43
+ // note that it excludes \x3B ";"
44
+ const COOKIE_OCTETS = /^[\x21\x23-\x2B\x2D-\x3A\x3C-\x5B\x5D-\x7E]+$/;
45
+
46
+ const CONTROL_CHARS = /[\x00-\x1F]/;
47
+
48
+ // From Chromium // '\r', '\n' and '\0' should be treated as a terminator in
49
+ // the "relaxed" mode, see:
50
+ // https://github.com/ChromiumWebApps/chromium/blob/b3d3b4da8bb94c1b2e061600df106d590fda3620/net/cookies/parsed_cookie.cc#L60
51
+ const TERMINATORS = ["\n", "\r", "\0"];
52
+
53
+ // RFC6265 S4.1.1 defines path value as 'any CHAR except CTLs or ";"'
54
+ // Note ';' is \x3B
55
+ const PATH_VALUE = /[\x20-\x3A\x3C-\x7E]+/;
56
+
57
+ // date-time parsing constants (RFC6265 S5.1.1)
58
+
59
+ const DATE_DELIM = /[\x09\x20-\x2F\x3B-\x40\x5B-\x60\x7B-\x7E]/;
60
+
61
+ const MONTH_TO_NUM = {
62
+ jan: 0,
63
+ feb: 1,
64
+ mar: 2,
65
+ apr: 3,
66
+ may: 4,
67
+ jun: 5,
68
+ jul: 6,
69
+ aug: 7,
70
+ sep: 8,
71
+ oct: 9,
72
+ nov: 10,
73
+ dec: 11
74
+ };
75
+
76
+ const MAX_TIME = 2147483647000; // 31-bit max
77
+ const MIN_TIME = 0; // 31-bit min
78
+ const SAME_SITE_CONTEXT_VAL_ERR =
79
+ 'Invalid sameSiteContext option for getCookies(); expected one of "strict", "lax", or "none"';
80
+
81
+ function checkSameSiteContext(value) {
82
+ const context = String(value).toLowerCase();
83
+ if (context === "none" || context === "lax" || context === "strict") {
84
+ return context;
85
+ } else {
86
+ return null;
87
+ }
88
+ }
89
+
90
+ const PrefixSecurityEnum = Object.freeze({
91
+ SILENT: "silent",
92
+ STRICT: "strict",
93
+ DISABLED: "unsafe-disabled"
94
+ });
95
+
96
+ // Dumped from ip-regex@4.0.0, with the following changes:
97
+ // * all capturing groups converted to non-capturing -- "(?:)"
98
+ // * support for IPv6 Scoped Literal ("%eth1") removed
99
+ // * lowercase hexadecimal only
100
+ var IP_REGEX_LOWERCASE =/(?:^(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}$)|(?:^(?:(?:[a-f\d]{1,4}:){7}(?:[a-f\d]{1,4}|:)|(?:[a-f\d]{1,4}:){6}(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|:[a-f\d]{1,4}|:)|(?:[a-f\d]{1,4}:){5}(?::(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|(?::[a-f\d]{1,4}){1,2}|:)|(?:[a-f\d]{1,4}:){4}(?:(?::[a-f\d]{1,4}){0,1}:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|(?::[a-f\d]{1,4}){1,3}|:)|(?:[a-f\d]{1,4}:){3}(?:(?::[a-f\d]{1,4}){0,2}:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|(?::[a-f\d]{1,4}){1,4}|:)|(?:[a-f\d]{1,4}:){2}(?:(?::[a-f\d]{1,4}){0,3}:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|(?::[a-f\d]{1,4}){1,5}|:)|(?:[a-f\d]{1,4}:){1}(?:(?::[a-f\d]{1,4}){0,4}:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|(?::[a-f\d]{1,4}){1,6}|:)|(?::(?:(?::[a-f\d]{1,4}){0,5}:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|(?::[a-f\d]{1,4}){1,7}|:)))$)/;
101
+
102
+ /*
103
+ * Parses a Natural number (i.e., non-negative integer) with either the
104
+ * <min>*<max>DIGIT ( non-digit *OCTET )
105
+ * or
106
+ * <min>*<max>DIGIT
107
+ * grammar (RFC6265 S5.1.1).
108
+ *
109
+ * The "trailingOK" boolean controls if the grammar accepts a
110
+ * "( non-digit *OCTET )" trailer.
111
+ */
112
+ function parseDigits(token, minDigits, maxDigits, trailingOK) {
113
+ let count = 0;
114
+ while (count < token.length) {
115
+ const c = token.charCodeAt(count);
116
+ // "non-digit = %x00-2F / %x3A-FF"
117
+ if (c <= 0x2f || c >= 0x3a) {
118
+ break;
119
+ }
120
+ count++;
121
+ }
122
+
123
+ // constrain to a minimum and maximum number of digits.
124
+ if (count < minDigits || count > maxDigits) {
125
+ return null;
126
+ }
127
+
128
+ if (!trailingOK && count != token.length) {
129
+ return null;
130
+ }
131
+
132
+ return parseInt(token.substr(0, count), 10);
133
+ }
134
+
135
+ function parseTime(token) {
136
+ const parts = token.split(":");
137
+ const result = [0, 0, 0];
138
+
139
+ /* RF6256 S5.1.1:
140
+ * time = hms-time ( non-digit *OCTET )
141
+ * hms-time = time-field ":" time-field ":" time-field
142
+ * time-field = 1*2DIGIT
143
+ */
144
+
145
+ if (parts.length !== 3) {
146
+ return null;
147
+ }
148
+
149
+ for (let i = 0; i < 3; i++) {
150
+ // "time-field" must be strictly "1*2DIGIT", HOWEVER, "hms-time" can be
151
+ // followed by "( non-digit *OCTET )" so therefore the last time-field can
152
+ // have a trailer
153
+ const trailingOK = i == 2;
154
+ const num = parseDigits(parts[i], 1, 2, trailingOK);
155
+ if (num === null) {
156
+ return null;
157
+ }
158
+ result[i] = num;
159
+ }
160
+
161
+ return result;
162
+ }
163
+
164
+ function parseMonth(token) {
165
+ token = String(token)
166
+ .substr(0, 3)
167
+ .toLowerCase();
168
+ const num = MONTH_TO_NUM[token];
169
+ return num >= 0 ? num : null;
170
+ }
171
+
172
+ /*
173
+ * RFC6265 S5.1.1 date parser (see RFC for full grammar)
174
+ */
175
+ function parseDate(str) {
176
+ if (!str) {
177
+ return;
178
+ }
179
+
180
+ /* RFC6265 S5.1.1:
181
+ * 2. Process each date-token sequentially in the order the date-tokens
182
+ * appear in the cookie-date
183
+ */
184
+ const tokens = str.split(DATE_DELIM);
185
+ if (!tokens) {
186
+ return;
187
+ }
188
+
189
+ let hour = null;
190
+ let minute = null;
191
+ let second = null;
192
+ let dayOfMonth = null;
193
+ let month = null;
194
+ let year = null;
195
+
196
+ for (let i = 0; i < tokens.length; i++) {
197
+ const token = tokens[i].trim();
198
+ if (!token.length) {
199
+ continue;
200
+ }
201
+
202
+ let result;
203
+
204
+ /* 2.1. If the found-time flag is not set and the token matches the time
205
+ * production, set the found-time flag and set the hour- value,
206
+ * minute-value, and second-value to the numbers denoted by the digits in
207
+ * the date-token, respectively. Skip the remaining sub-steps and continue
208
+ * to the next date-token.
209
+ */
210
+ if (second === null) {
211
+ result = parseTime(token);
212
+ if (result) {
213
+ hour = result[0];
214
+ minute = result[1];
215
+ second = result[2];
216
+ continue;
217
+ }
218
+ }
219
+
220
+ /* 2.2. If the found-day-of-month flag is not set and the date-token matches
221
+ * the day-of-month production, set the found-day-of- month flag and set
222
+ * the day-of-month-value to the number denoted by the date-token. Skip
223
+ * the remaining sub-steps and continue to the next date-token.
224
+ */
225
+ if (dayOfMonth === null) {
226
+ // "day-of-month = 1*2DIGIT ( non-digit *OCTET )"
227
+ result = parseDigits(token, 1, 2, true);
228
+ if (result !== null) {
229
+ dayOfMonth = result;
230
+ continue;
231
+ }
232
+ }
233
+
234
+ /* 2.3. If the found-month flag is not set and the date-token matches the
235
+ * month production, set the found-month flag and set the month-value to
236
+ * the month denoted by the date-token. Skip the remaining sub-steps and
237
+ * continue to the next date-token.
238
+ */
239
+ if (month === null) {
240
+ result = parseMonth(token);
241
+ if (result !== null) {
242
+ month = result;
243
+ continue;
244
+ }
245
+ }
246
+
247
+ /* 2.4. If the found-year flag is not set and the date-token matches the
248
+ * year production, set the found-year flag and set the year-value to the
249
+ * number denoted by the date-token. Skip the remaining sub-steps and
250
+ * continue to the next date-token.
251
+ */
252
+ if (year === null) {
253
+ // "year = 2*4DIGIT ( non-digit *OCTET )"
254
+ result = parseDigits(token, 2, 4, true);
255
+ if (result !== null) {
256
+ year = result;
257
+ /* From S5.1.1:
258
+ * 3. If the year-value is greater than or equal to 70 and less
259
+ * than or equal to 99, increment the year-value by 1900.
260
+ * 4. If the year-value is greater than or equal to 0 and less
261
+ * than or equal to 69, increment the year-value by 2000.
262
+ */
263
+ if (year >= 70 && year <= 99) {
264
+ year += 1900;
265
+ } else if (year >= 0 && year <= 69) {
266
+ year += 2000;
267
+ }
268
+ }
269
+ }
270
+ }
271
+
272
+ /* RFC 6265 S5.1.1
273
+ * "5. Abort these steps and fail to parse the cookie-date if:
274
+ * * at least one of the found-day-of-month, found-month, found-
275
+ * year, or found-time flags is not set,
276
+ * * the day-of-month-value is less than 1 or greater than 31,
277
+ * * the year-value is less than 1601,
278
+ * * the hour-value is greater than 23,
279
+ * * the minute-value is greater than 59, or
280
+ * * the second-value is greater than 59.
281
+ * (Note that leap seconds cannot be represented in this syntax.)"
282
+ *
283
+ * So, in order as above:
284
+ */
285
+ if (
286
+ dayOfMonth === null ||
287
+ month === null ||
288
+ year === null ||
289
+ second === null ||
290
+ dayOfMonth < 1 ||
291
+ dayOfMonth > 31 ||
292
+ year < 1601 ||
293
+ hour > 23 ||
294
+ minute > 59 ||
295
+ second > 59
296
+ ) {
297
+ return;
298
+ }
299
+
300
+ return new Date(Date.UTC(year, month, dayOfMonth, hour, minute, second));
301
+ }
302
+
303
+ function formatDate(date) {
304
+ return date.toUTCString();
305
+ }
306
+
307
+ // S5.1.2 Canonicalized Host Names
308
+ function canonicalDomain(str) {
309
+ if (str == null) {
310
+ return null;
311
+ }
312
+ str = str.trim().replace(/^\./, ""); // S4.1.2.3 & S5.2.3: ignore leading .
313
+
314
+ // convert to IDN if any non-ASCII characters
315
+ if (punycode && /[^\u0001-\u007f]/.test(str)) {
316
+ str = punycode.toASCII(str);
317
+ }
318
+
319
+ return str.toLowerCase();
320
+ }
321
+
322
+ // S5.1.3 Domain Matching
323
+ function domainMatch(str, domStr, canonicalize) {
324
+ if (str == null || domStr == null) {
325
+ return null;
326
+ }
327
+ if (canonicalize !== false) {
328
+ str = canonicalDomain(str);
329
+ domStr = canonicalDomain(domStr);
330
+ }
331
+
332
+ /*
333
+ * S5.1.3:
334
+ * "A string domain-matches a given domain string if at least one of the
335
+ * following conditions hold:"
336
+ *
337
+ * " o The domain string and the string are identical. (Note that both the
338
+ * domain string and the string will have been canonicalized to lower case at
339
+ * this point)"
340
+ */
341
+ if (str == domStr) {
342
+ return true;
343
+ }
344
+
345
+ /* " o All of the following [three] conditions hold:" */
346
+
347
+ /* "* The domain string is a suffix of the string" */
348
+ const idx = str.indexOf(domStr);
349
+ if (idx <= 0) {
350
+ return false; // it's a non-match (-1) or prefix (0)
351
+ }
352
+
353
+ // next, check it's a proper suffix
354
+ // e.g., "a.b.c".indexOf("b.c") === 2
355
+ // 5 === 3+2
356
+ if (str.length !== domStr.length + idx) {
357
+ return false; // it's not a suffix
358
+ }
359
+
360
+ /* " * The last character of the string that is not included in the
361
+ * domain string is a %x2E (".") character." */
362
+ if (str.substr(idx-1,1) !== '.') {
363
+ return false; // doesn't align on "."
364
+ }
365
+
366
+ /* " * The string is a host name (i.e., not an IP address)." */
367
+ if (IP_REGEX_LOWERCASE.test(str)) {
368
+ return false; // it's an IP address
369
+ }
370
+
371
+ return true;
372
+ }
373
+
374
+ // RFC6265 S5.1.4 Paths and Path-Match
375
+
376
+ /*
377
+ * "The user agent MUST use an algorithm equivalent to the following algorithm
378
+ * to compute the default-path of a cookie:"
379
+ *
380
+ * Assumption: the path (and not query part or absolute uri) is passed in.
381
+ */
382
+ function defaultPath(path) {
383
+ // "2. If the uri-path is empty or if the first character of the uri-path is not
384
+ // a %x2F ("/") character, output %x2F ("/") and skip the remaining steps.
385
+ if (!path || path.substr(0, 1) !== "/") {
386
+ return "/";
387
+ }
388
+
389
+ // "3. If the uri-path contains no more than one %x2F ("/") character, output
390
+ // %x2F ("/") and skip the remaining step."
391
+ if (path === "/") {
392
+ return path;
393
+ }
394
+
395
+ const rightSlash = path.lastIndexOf("/");
396
+ if (rightSlash === 0) {
397
+ return "/";
398
+ }
399
+
400
+ // "4. Output the characters of the uri-path from the first character up to,
401
+ // but not including, the right-most %x2F ("/")."
402
+ return path.slice(0, rightSlash);
403
+ }
404
+
405
+ function trimTerminator(str) {
406
+ for (let t = 0; t < TERMINATORS.length; t++) {
407
+ const terminatorIdx = str.indexOf(TERMINATORS[t]);
408
+ if (terminatorIdx !== -1) {
409
+ str = str.substr(0, terminatorIdx);
410
+ }
411
+ }
412
+
413
+ return str;
414
+ }
415
+
416
+ function parseCookiePair(cookiePair, looseMode) {
417
+ cookiePair = trimTerminator(cookiePair);
418
+
419
+ let firstEq = cookiePair.indexOf("=");
420
+ if (looseMode) {
421
+ if (firstEq === 0) {
422
+ // '=' is immediately at start
423
+ cookiePair = cookiePair.substr(1);
424
+ firstEq = cookiePair.indexOf("="); // might still need to split on '='
425
+ }
426
+ } else {
427
+ // non-loose mode
428
+ if (firstEq <= 0) {
429
+ // no '=' or is at start
430
+ return; // needs to have non-empty "cookie-name"
431
+ }
432
+ }
433
+
434
+ let cookieName, cookieValue;
435
+ if (firstEq <= 0) {
436
+ cookieName = "";
437
+ cookieValue = cookiePair.trim();
438
+ } else {
439
+ cookieName = cookiePair.substr(0, firstEq).trim();
440
+ cookieValue = cookiePair.substr(firstEq + 1).trim();
441
+ }
442
+
443
+ if (CONTROL_CHARS.test(cookieName) || CONTROL_CHARS.test(cookieValue)) {
444
+ return;
445
+ }
446
+
447
+ const c = new Cookie();
448
+ c.key = cookieName;
449
+ c.value = cookieValue;
450
+ return c;
451
+ }
452
+
453
+ function parse(str, options) {
454
+ if (!options || typeof options !== "object") {
455
+ options = {};
456
+ }
457
+ str = str.trim();
458
+
459
+ // We use a regex to parse the "name-value-pair" part of S5.2
460
+ const firstSemi = str.indexOf(";"); // S5.2 step 1
461
+ const cookiePair = firstSemi === -1 ? str : str.substr(0, firstSemi);
462
+ const c = parseCookiePair(cookiePair, !!options.loose);
463
+ if (!c) {
464
+ return;
465
+ }
466
+
467
+ if (firstSemi === -1) {
468
+ return c;
469
+ }
470
+
471
+ // S5.2.3 "unparsed-attributes consist of the remainder of the set-cookie-string
472
+ // (including the %x3B (";") in question)." plus later on in the same section
473
+ // "discard the first ";" and trim".
474
+ const unparsed = str.slice(firstSemi + 1).trim();
475
+
476
+ // "If the unparsed-attributes string is empty, skip the rest of these
477
+ // steps."
478
+ if (unparsed.length === 0) {
479
+ return c;
480
+ }
481
+
482
+ /*
483
+ * S5.2 says that when looping over the items "[p]rocess the attribute-name
484
+ * and attribute-value according to the requirements in the following
485
+ * subsections" for every item. Plus, for many of the individual attributes
486
+ * in S5.3 it says to use the "attribute-value of the last attribute in the
487
+ * cookie-attribute-list". Therefore, in this implementation, we overwrite
488
+ * the previous value.
489
+ */
490
+ const cookie_avs = unparsed.split(";");
491
+ while (cookie_avs.length) {
492
+ const av = cookie_avs.shift().trim();
493
+ if (av.length === 0) {
494
+ // happens if ";;" appears
495
+ continue;
496
+ }
497
+ const av_sep = av.indexOf("=");
498
+ let av_key, av_value;
499
+
500
+ if (av_sep === -1) {
501
+ av_key = av;
502
+ av_value = null;
503
+ } else {
504
+ av_key = av.substr(0, av_sep);
505
+ av_value = av.substr(av_sep + 1);
506
+ }
507
+
508
+ av_key = av_key.trim().toLowerCase();
509
+
510
+ if (av_value) {
511
+ av_value = av_value.trim();
512
+ }
513
+
514
+ switch (av_key) {
515
+ case "expires": // S5.2.1
516
+ if (av_value) {
517
+ const exp = parseDate(av_value);
518
+ // "If the attribute-value failed to parse as a cookie date, ignore the
519
+ // cookie-av."
520
+ if (exp) {
521
+ // over and underflow not realistically a concern: V8's getTime() seems to
522
+ // store something larger than a 32-bit time_t (even with 32-bit node)
523
+ c.expires = exp;
524
+ }
525
+ }
526
+ break;
527
+
528
+ case "max-age": // S5.2.2
529
+ if (av_value) {
530
+ // "If the first character of the attribute-value is not a DIGIT or a "-"
531
+ // character ...[or]... If the remainder of attribute-value contains a
532
+ // non-DIGIT character, ignore the cookie-av."
533
+ if (/^-?[0-9]+$/.test(av_value)) {
534
+ const delta = parseInt(av_value, 10);
535
+ // "If delta-seconds is less than or equal to zero (0), let expiry-time
536
+ // be the earliest representable date and time."
537
+ c.setMaxAge(delta);
538
+ }
539
+ }
540
+ break;
541
+
542
+ case "domain": // S5.2.3
543
+ // "If the attribute-value is empty, the behavior is undefined. However,
544
+ // the user agent SHOULD ignore the cookie-av entirely."
545
+ if (av_value) {
546
+ // S5.2.3 "Let cookie-domain be the attribute-value without the leading %x2E
547
+ // (".") character."
548
+ const domain = av_value.trim().replace(/^\./, "");
549
+ if (domain) {
550
+ // "Convert the cookie-domain to lower case."
551
+ c.domain = domain.toLowerCase();
552
+ }
553
+ }
554
+ break;
555
+
556
+ case "path": // S5.2.4
557
+ /*
558
+ * "If the attribute-value is empty or if the first character of the
559
+ * attribute-value is not %x2F ("/"):
560
+ * Let cookie-path be the default-path.
561
+ * Otherwise:
562
+ * Let cookie-path be the attribute-value."
563
+ *
564
+ * We'll represent the default-path as null since it depends on the
565
+ * context of the parsing.
566
+ */
567
+ c.path = av_value && av_value[0] === "/" ? av_value : null;
568
+ break;
569
+
570
+ case "secure": // S5.2.5
571
+ /*
572
+ * "If the attribute-name case-insensitively matches the string "Secure",
573
+ * the user agent MUST append an attribute to the cookie-attribute-list
574
+ * with an attribute-name of Secure and an empty attribute-value."
575
+ */
576
+ c.secure = true;
577
+ break;
578
+
579
+ case "httponly": // S5.2.6 -- effectively the same as 'secure'
580
+ c.httpOnly = true;
581
+ break;
582
+
583
+ case "samesite": // RFC6265bis-02 S5.3.7
584
+ const enforcement = av_value ? av_value.toLowerCase() : "";
585
+ switch (enforcement) {
586
+ case "strict":
587
+ c.sameSite = "strict";
588
+ break;
589
+ case "lax":
590
+ c.sameSite = "lax";
591
+ break;
592
+ default:
593
+ // RFC6265bis-02 S5.3.7 step 1:
594
+ // "If cookie-av's attribute-value is not a case-insensitive match
595
+ // for "Strict" or "Lax", ignore the "cookie-av"."
596
+ // This effectively sets it to 'none' from the prototype.
597
+ break;
598
+ }
599
+ break;
600
+
601
+ default:
602
+ c.extensions = c.extensions || [];
603
+ c.extensions.push(av);
604
+ break;
605
+ }
606
+ }
607
+
608
+ return c;
609
+ }
610
+
611
+ /**
612
+ * If the cookie-name begins with a case-sensitive match for the
613
+ * string "__Secure-", abort these steps and ignore the cookie
614
+ * entirely unless the cookie's secure-only-flag is true.
615
+ * @param cookie
616
+ * @returns boolean
617
+ */
618
+ function isSecurePrefixConditionMet(cookie) {
619
+ return !cookie.key.startsWith("__Secure-") || cookie.secure;
620
+ }
621
+
622
+ /**
623
+ * If the cookie-name begins with a case-sensitive match for the
624
+ * string "__Host-", abort these steps and ignore the cookie
625
+ * entirely unless the cookie meets all the following criteria:
626
+ * 1. The cookie's secure-only-flag is true.
627
+ * 2. The cookie's host-only-flag is true.
628
+ * 3. The cookie-attribute-list contains an attribute with an
629
+ * attribute-name of "Path", and the cookie's path is "/".
630
+ * @param cookie
631
+ * @returns boolean
632
+ */
633
+ function isHostPrefixConditionMet(cookie) {
634
+ return (
635
+ !cookie.key.startsWith("__Host-") ||
636
+ (cookie.secure &&
637
+ cookie.hostOnly &&
638
+ cookie.path != null &&
639
+ cookie.path === "/")
640
+ );
641
+ }
642
+
643
+ // avoid the V8 deoptimization monster!
644
+ function jsonParse(str) {
645
+ let obj;
646
+ try {
647
+ obj = JSON.parse(str);
648
+ } catch (e) {
649
+ return e;
650
+ }
651
+ return obj;
652
+ }
653
+
654
+ function fromJSON(str) {
655
+ if (!str) {
656
+ return null;
657
+ }
658
+
659
+ let obj;
660
+ if (typeof str === "string") {
661
+ obj = jsonParse(str);
662
+ if (obj instanceof Error) {
663
+ return null;
664
+ }
665
+ } else {
666
+ // assume it's an Object
667
+ obj = str;
668
+ }
669
+
670
+ const c = new Cookie();
671
+ for (let i = 0; i < Cookie.serializableProperties.length; i++) {
672
+ const prop = Cookie.serializableProperties[i];
673
+ if (obj[prop] === undefined || obj[prop] === cookieDefaults[prop]) {
674
+ continue; // leave as prototype default
675
+ }
676
+
677
+ if (prop === "expires" || prop === "creation" || prop === "lastAccessed") {
678
+ if (obj[prop] === null) {
679
+ c[prop] = null;
680
+ } else {
681
+ c[prop] = obj[prop] == "Infinity" ? "Infinity" : new Date(obj[prop]);
682
+ }
683
+ } else {
684
+ c[prop] = obj[prop];
685
+ }
686
+ }
687
+
688
+ return c;
689
+ }
690
+
691
+ /* Section 5.4 part 2:
692
+ * "* Cookies with longer paths are listed before cookies with
693
+ * shorter paths.
694
+ *
695
+ * * Among cookies that have equal-length path fields, cookies with
696
+ * earlier creation-times are listed before cookies with later
697
+ * creation-times."
698
+ */
699
+
700
+ function cookieCompare(a, b) {
701
+ let cmp = 0;
702
+
703
+ // descending for length: b CMP a
704
+ const aPathLen = a.path ? a.path.length : 0;
705
+ const bPathLen = b.path ? b.path.length : 0;
706
+ cmp = bPathLen - aPathLen;
707
+ if (cmp !== 0) {
708
+ return cmp;
709
+ }
710
+
711
+ // ascending for time: a CMP b
712
+ const aTime = a.creation ? a.creation.getTime() : MAX_TIME;
713
+ const bTime = b.creation ? b.creation.getTime() : MAX_TIME;
714
+ cmp = aTime - bTime;
715
+ if (cmp !== 0) {
716
+ return cmp;
717
+ }
718
+
719
+ // break ties for the same millisecond (precision of JavaScript's clock)
720
+ cmp = a.creationIndex - b.creationIndex;
721
+
722
+ return cmp;
723
+ }
724
+
725
+ // Gives the permutation of all possible pathMatch()es of a given path. The
726
+ // array is in longest-to-shortest order. Handy for indexing.
727
+ function permutePath(path) {
728
+ if (path === "/") {
729
+ return ["/"];
730
+ }
731
+ const permutations = [path];
732
+ while (path.length > 1) {
733
+ const lindex = path.lastIndexOf("/");
734
+ if (lindex === 0) {
735
+ break;
736
+ }
737
+ path = path.substr(0, lindex);
738
+ permutations.push(path);
739
+ }
740
+ permutations.push("/");
741
+ return permutations;
742
+ }
743
+
744
+ function getCookieContext(url) {
745
+ if (url instanceof Object) {
746
+ return url;
747
+ }
748
+ // NOTE: decodeURI will throw on malformed URIs (see GH-32).
749
+ // Therefore, we will just skip decoding for such URIs.
750
+ try {
751
+ url = decodeURI(url);
752
+ } catch (err) {
753
+ // Silently swallow error
754
+ }
755
+
756
+ return urlParse(url);
757
+ }
758
+
759
+ const cookieDefaults = {
760
+ // the order in which the RFC has them:
761
+ key: "",
762
+ value: "",
763
+ expires: "Infinity",
764
+ maxAge: null,
765
+ domain: null,
766
+ path: null,
767
+ secure: false,
768
+ httpOnly: false,
769
+ extensions: null,
770
+ // set by the CookieJar:
771
+ hostOnly: null,
772
+ pathIsDefault: null,
773
+ creation: null,
774
+ lastAccessed: null,
775
+ sameSite: "none"
776
+ };
777
+
778
+ class Cookie {
779
+ constructor(options = {}) {
780
+ if (util.inspect.custom) {
781
+ this[util.inspect.custom] = this.inspect;
782
+ }
783
+
784
+ Object.assign(this, cookieDefaults, options);
785
+ this.creation = this.creation || new Date();
786
+
787
+ // used to break creation ties in cookieCompare():
788
+ Object.defineProperty(this, "creationIndex", {
789
+ configurable: false,
790
+ enumerable: false, // important for assert.deepEqual checks
791
+ writable: true,
792
+ value: ++Cookie.cookiesCreated
793
+ });
794
+ }
795
+
796
+ inspect() {
797
+ const now = Date.now();
798
+ const hostOnly = this.hostOnly != null ? this.hostOnly : "?";
799
+ const createAge = this.creation
800
+ ? `${now - this.creation.getTime()}ms`
801
+ : "?";
802
+ const accessAge = this.lastAccessed
803
+ ? `${now - this.lastAccessed.getTime()}ms`
804
+ : "?";
805
+ return `Cookie="${this.toString()}; hostOnly=${hostOnly}; aAge=${accessAge}; cAge=${createAge}"`;
806
+ }
807
+
808
+ toJSON() {
809
+ const obj = {};
810
+
811
+ for (const prop of Cookie.serializableProperties) {
812
+ if (this[prop] === cookieDefaults[prop]) {
813
+ continue; // leave as prototype default
814
+ }
815
+
816
+ if (
817
+ prop === "expires" ||
818
+ prop === "creation" ||
819
+ prop === "lastAccessed"
820
+ ) {
821
+ if (this[prop] === null) {
822
+ obj[prop] = null;
823
+ } else {
824
+ obj[prop] =
825
+ this[prop] == "Infinity" // intentionally not ===
826
+ ? "Infinity"
827
+ : this[prop].toISOString();
828
+ }
829
+ } else if (prop === "maxAge") {
830
+ if (this[prop] !== null) {
831
+ // again, intentionally not ===
832
+ obj[prop] =
833
+ this[prop] == Infinity || this[prop] == -Infinity
834
+ ? this[prop].toString()
835
+ : this[prop];
836
+ }
837
+ } else {
838
+ if (this[prop] !== cookieDefaults[prop]) {
839
+ obj[prop] = this[prop];
840
+ }
841
+ }
842
+ }
843
+
844
+ return obj;
845
+ }
846
+
847
+ clone() {
848
+ return fromJSON(this.toJSON());
849
+ }
850
+
851
+ validate() {
852
+ if (!COOKIE_OCTETS.test(this.value)) {
853
+ return false;
854
+ }
855
+ if (
856
+ this.expires != Infinity &&
857
+ !(this.expires instanceof Date) &&
858
+ !parseDate(this.expires)
859
+ ) {
860
+ return false;
861
+ }
862
+ if (this.maxAge != null && this.maxAge <= 0) {
863
+ return false; // "Max-Age=" non-zero-digit *DIGIT
864
+ }
865
+ if (this.path != null && !PATH_VALUE.test(this.path)) {
866
+ return false;
867
+ }
868
+
869
+ const cdomain = this.cdomain();
870
+ if (cdomain) {
871
+ if (cdomain.match(/\.$/)) {
872
+ return false; // S4.1.2.3 suggests that this is bad. domainMatch() tests confirm this
873
+ }
874
+ const suffix = pubsuffix.getPublicSuffix(cdomain);
875
+ if (suffix == null) {
876
+ // it's a public suffix
877
+ return false;
878
+ }
879
+ }
880
+ return true;
881
+ }
882
+
883
+ setExpires(exp) {
884
+ if (exp instanceof Date) {
885
+ this.expires = exp;
886
+ } else {
887
+ this.expires = parseDate(exp) || "Infinity";
888
+ }
889
+ }
890
+
891
+ setMaxAge(age) {
892
+ if (age === Infinity || age === -Infinity) {
893
+ this.maxAge = age.toString(); // so JSON.stringify() works
894
+ } else {
895
+ this.maxAge = age;
896
+ }
897
+ }
898
+
899
+ cookieString() {
900
+ let val = this.value;
901
+ if (val == null) {
902
+ val = "";
903
+ }
904
+ if (this.key === "") {
905
+ return val;
906
+ }
907
+ return `${this.key}=${val}`;
908
+ }
909
+
910
+ // gives Set-Cookie header format
911
+ toString() {
912
+ let str = this.cookieString();
913
+
914
+ if (this.expires != Infinity) {
915
+ if (this.expires instanceof Date) {
916
+ str += `; Expires=${formatDate(this.expires)}`;
917
+ } else {
918
+ str += `; Expires=${this.expires}`;
919
+ }
920
+ }
921
+
922
+ if (this.maxAge != null && this.maxAge != Infinity) {
923
+ str += `; Max-Age=${this.maxAge}`;
924
+ }
925
+
926
+ if (this.domain && !this.hostOnly) {
927
+ str += `; Domain=${this.domain}`;
928
+ }
929
+ if (this.path) {
930
+ str += `; Path=${this.path}`;
931
+ }
932
+
933
+ if (this.secure) {
934
+ str += "; Secure";
935
+ }
936
+ if (this.httpOnly) {
937
+ str += "; HttpOnly";
938
+ }
939
+ if (this.sameSite && this.sameSite !== "none") {
940
+ const ssCanon = Cookie.sameSiteCanonical[this.sameSite.toLowerCase()];
941
+ str += `; SameSite=${ssCanon ? ssCanon : this.sameSite}`;
942
+ }
943
+ if (this.extensions) {
944
+ this.extensions.forEach(ext => {
945
+ str += `; ${ext}`;
946
+ });
947
+ }
948
+
949
+ return str;
950
+ }
951
+
952
+ // TTL() partially replaces the "expiry-time" parts of S5.3 step 3 (setCookie()
953
+ // elsewhere)
954
+ // S5.3 says to give the "latest representable date" for which we use Infinity
955
+ // For "expired" we use 0
956
+ TTL(now) {
957
+ /* RFC6265 S4.1.2.2 If a cookie has both the Max-Age and the Expires
958
+ * attribute, the Max-Age attribute has precedence and controls the
959
+ * expiration date of the cookie.
960
+ * (Concurs with S5.3 step 3)
961
+ */
962
+ if (this.maxAge != null) {
963
+ return this.maxAge <= 0 ? 0 : this.maxAge * 1000;
964
+ }
965
+
966
+ let expires = this.expires;
967
+ if (expires != Infinity) {
968
+ if (!(expires instanceof Date)) {
969
+ expires = parseDate(expires) || Infinity;
970
+ }
971
+
972
+ if (expires == Infinity) {
973
+ return Infinity;
974
+ }
975
+
976
+ return expires.getTime() - (now || Date.now());
977
+ }
978
+
979
+ return Infinity;
980
+ }
981
+
982
+ // expiryTime() replaces the "expiry-time" parts of S5.3 step 3 (setCookie()
983
+ // elsewhere)
984
+ expiryTime(now) {
985
+ if (this.maxAge != null) {
986
+ const relativeTo = now || this.creation || new Date();
987
+ const age = this.maxAge <= 0 ? -Infinity : this.maxAge * 1000;
988
+ return relativeTo.getTime() + age;
989
+ }
990
+
991
+ if (this.expires == Infinity) {
992
+ return Infinity;
993
+ }
994
+ return this.expires.getTime();
995
+ }
996
+
997
+ // expiryDate() replaces the "expiry-time" parts of S5.3 step 3 (setCookie()
998
+ // elsewhere), except it returns a Date
999
+ expiryDate(now) {
1000
+ const millisec = this.expiryTime(now);
1001
+ if (millisec == Infinity) {
1002
+ return new Date(MAX_TIME);
1003
+ } else if (millisec == -Infinity) {
1004
+ return new Date(MIN_TIME);
1005
+ } else {
1006
+ return new Date(millisec);
1007
+ }
1008
+ }
1009
+
1010
+ // This replaces the "persistent-flag" parts of S5.3 step 3
1011
+ isPersistent() {
1012
+ return this.maxAge != null || this.expires != Infinity;
1013
+ }
1014
+
1015
+ // Mostly S5.1.2 and S5.2.3:
1016
+ canonicalizedDomain() {
1017
+ if (this.domain == null) {
1018
+ return null;
1019
+ }
1020
+ return canonicalDomain(this.domain);
1021
+ }
1022
+
1023
+ cdomain() {
1024
+ return this.canonicalizedDomain();
1025
+ }
1026
+ }
1027
+
1028
+ Cookie.cookiesCreated = 0;
1029
+ Cookie.parse = parse;
1030
+ Cookie.fromJSON = fromJSON;
1031
+ Cookie.serializableProperties = Object.keys(cookieDefaults);
1032
+ Cookie.sameSiteLevel = {
1033
+ strict: 3,
1034
+ lax: 2,
1035
+ none: 1
1036
+ };
1037
+
1038
+ Cookie.sameSiteCanonical = {
1039
+ strict: "Strict",
1040
+ lax: "Lax"
1041
+ };
1042
+
1043
+ function getNormalizedPrefixSecurity(prefixSecurity) {
1044
+ if (prefixSecurity != null) {
1045
+ const normalizedPrefixSecurity = prefixSecurity.toLowerCase();
1046
+ /* The three supported options */
1047
+ switch (normalizedPrefixSecurity) {
1048
+ case PrefixSecurityEnum.STRICT:
1049
+ case PrefixSecurityEnum.SILENT:
1050
+ case PrefixSecurityEnum.DISABLED:
1051
+ return normalizedPrefixSecurity;
1052
+ }
1053
+ }
1054
+ /* Default is SILENT */
1055
+ return PrefixSecurityEnum.SILENT;
1056
+ }
1057
+
1058
+ class CookieJar {
1059
+ constructor(store, options = { rejectPublicSuffixes: true }) {
1060
+ if (typeof options === "boolean") {
1061
+ options = { rejectPublicSuffixes: options };
1062
+ }
1063
+ this.rejectPublicSuffixes = options.rejectPublicSuffixes;
1064
+ this.enableLooseMode = !!options.looseMode;
1065
+ this.allowSpecialUseDomain = !!options.allowSpecialUseDomain;
1066
+ this.store = store || new MemoryCookieStore();
1067
+ this.prefixSecurity = getNormalizedPrefixSecurity(options.prefixSecurity);
1068
+ this._cloneSync = syncWrap("clone");
1069
+ this._importCookiesSync = syncWrap("_importCookies");
1070
+ this.getCookiesSync = syncWrap("getCookies");
1071
+ this.getCookieStringSync = syncWrap("getCookieString");
1072
+ this.getSetCookieStringsSync = syncWrap("getSetCookieStrings");
1073
+ this.removeAllCookiesSync = syncWrap("removeAllCookies");
1074
+ this.setCookieSync = syncWrap("setCookie");
1075
+ this.serializeSync = syncWrap("serialize");
1076
+ }
1077
+
1078
+ setCookie(cookie, url, options, cb) {
1079
+ let err;
1080
+ const context = getCookieContext(url);
1081
+ if (typeof options === "function") {
1082
+ cb = options;
1083
+ options = {};
1084
+ }
1085
+
1086
+ const host = canonicalDomain(context.hostname);
1087
+ const loose = options.loose || this.enableLooseMode;
1088
+
1089
+ let sameSiteContext = null;
1090
+ if (options.sameSiteContext) {
1091
+ sameSiteContext = checkSameSiteContext(options.sameSiteContext);
1092
+ if (!sameSiteContext) {
1093
+ return cb(new Error(SAME_SITE_CONTEXT_VAL_ERR));
1094
+ }
1095
+ }
1096
+
1097
+ // S5.3 step 1
1098
+ if (typeof cookie === "string" || cookie instanceof String) {
1099
+ cookie = Cookie.parse(cookie, { loose: loose });
1100
+ if (!cookie) {
1101
+ err = new Error("Cookie failed to parse");
1102
+ return cb(options.ignoreError ? null : err);
1103
+ }
1104
+ } else if (!(cookie instanceof Cookie)) {
1105
+ // If you're seeing this error, and are passing in a Cookie object,
1106
+ // it *might* be a Cookie object from another loaded version of tough-cookie.
1107
+ err = new Error(
1108
+ "First argument to setCookie must be a Cookie object or string"
1109
+ );
1110
+ return cb(options.ignoreError ? null : err);
1111
+ }
1112
+
1113
+ // S5.3 step 2
1114
+ const now = options.now || new Date(); // will assign later to save effort in the face of errors
1115
+
1116
+ // S5.3 step 3: NOOP; persistent-flag and expiry-time is handled by getCookie()
1117
+
1118
+ // S5.3 step 4: NOOP; domain is null by default
1119
+
1120
+ // S5.3 step 5: public suffixes
1121
+ if (this.rejectPublicSuffixes && cookie.domain) {
1122
+ const suffix = pubsuffix.getPublicSuffix(cookie.cdomain());
1123
+ if (suffix == null) {
1124
+ // e.g. "com"
1125
+ err = new Error("Cookie has domain set to a public suffix");
1126
+ return cb(options.ignoreError ? null : err);
1127
+ }
1128
+ }
1129
+
1130
+ // S5.3 step 6:
1131
+ if (cookie.domain) {
1132
+ if (!domainMatch(host, cookie.cdomain(), false)) {
1133
+ err = new Error(
1134
+ `Cookie not in this host's domain. Cookie:${cookie.cdomain()} Request:${host}`
1135
+ );
1136
+ return cb(options.ignoreError ? null : err);
1137
+ }
1138
+
1139
+ if (cookie.hostOnly == null) {
1140
+ // don't reset if already set
1141
+ cookie.hostOnly = false;
1142
+ }
1143
+ } else {
1144
+ cookie.hostOnly = true;
1145
+ cookie.domain = host;
1146
+ }
1147
+
1148
+ //S5.2.4 If the attribute-value is empty or if the first character of the
1149
+ //attribute-value is not %x2F ("/"):
1150
+ //Let cookie-path be the default-path.
1151
+ if (!cookie.path || cookie.path[0] !== "/") {
1152
+ cookie.path = defaultPath(context.pathname);
1153
+ cookie.pathIsDefault = true;
1154
+ }
1155
+
1156
+ // S5.3 step 8: NOOP; secure attribute
1157
+ // S5.3 step 9: NOOP; httpOnly attribute
1158
+
1159
+ // S5.3 step 10
1160
+ if (options.http === false && cookie.httpOnly) {
1161
+ err = new Error("Cookie is HttpOnly and this isn't an HTTP API");
1162
+ return cb(options.ignoreError ? null : err);
1163
+ }
1164
+
1165
+ // 6252bis-02 S5.4 Step 13 & 14:
1166
+ if (cookie.sameSite !== "none" && sameSiteContext) {
1167
+ // "If the cookie's "same-site-flag" is not "None", and the cookie
1168
+ // is being set from a context whose "site for cookies" is not an
1169
+ // exact match for request-uri's host's registered domain, then
1170
+ // abort these steps and ignore the newly created cookie entirely."
1171
+ if (sameSiteContext === "none") {
1172
+ err = new Error(
1173
+ "Cookie is SameSite but this is a cross-origin request"
1174
+ );
1175
+ return cb(options.ignoreError ? null : err);
1176
+ }
1177
+ }
1178
+
1179
+ /* 6265bis-02 S5.4 Steps 15 & 16 */
1180
+ const ignoreErrorForPrefixSecurity =
1181
+ this.prefixSecurity === PrefixSecurityEnum.SILENT;
1182
+ const prefixSecurityDisabled =
1183
+ this.prefixSecurity === PrefixSecurityEnum.DISABLED;
1184
+ /* If prefix checking is not disabled ...*/
1185
+ if (!prefixSecurityDisabled) {
1186
+ let errorFound = false;
1187
+ let errorMsg;
1188
+ /* Check secure prefix condition */
1189
+ if (!isSecurePrefixConditionMet(cookie)) {
1190
+ errorFound = true;
1191
+ errorMsg = "Cookie has __Secure prefix but Secure attribute is not set";
1192
+ } else if (!isHostPrefixConditionMet(cookie)) {
1193
+ /* Check host prefix condition */
1194
+ errorFound = true;
1195
+ errorMsg =
1196
+ "Cookie has __Host prefix but either Secure or HostOnly attribute is not set or Path is not '/'";
1197
+ }
1198
+ if (errorFound) {
1199
+ return cb(
1200
+ options.ignoreError || ignoreErrorForPrefixSecurity
1201
+ ? null
1202
+ : new Error(errorMsg)
1203
+ );
1204
+ }
1205
+ }
1206
+
1207
+ const store = this.store;
1208
+
1209
+ if (!store.updateCookie) {
1210
+ store.updateCookie = function(oldCookie, newCookie, cb) {
1211
+ this.putCookie(newCookie, cb);
1212
+ };
1213
+ }
1214
+
1215
+ function withCookie(err, oldCookie) {
1216
+ if (err) {
1217
+ return cb(err);
1218
+ }
1219
+
1220
+ const next = function(err) {
1221
+ if (err) {
1222
+ return cb(err);
1223
+ } else {
1224
+ cb(null, cookie);
1225
+ }
1226
+ };
1227
+
1228
+ if (oldCookie) {
1229
+ // S5.3 step 11 - "If the cookie store contains a cookie with the same name,
1230
+ // domain, and path as the newly created cookie:"
1231
+ if (options.http === false && oldCookie.httpOnly) {
1232
+ // step 11.2
1233
+ err = new Error("old Cookie is HttpOnly and this isn't an HTTP API");
1234
+ return cb(options.ignoreError ? null : err);
1235
+ }
1236
+ cookie.creation = oldCookie.creation; // step 11.3
1237
+ cookie.creationIndex = oldCookie.creationIndex; // preserve tie-breaker
1238
+ cookie.lastAccessed = now;
1239
+ // Step 11.4 (delete cookie) is implied by just setting the new one:
1240
+ store.updateCookie(oldCookie, cookie, next); // step 12
1241
+ } else {
1242
+ cookie.creation = cookie.lastAccessed = now;
1243
+ store.putCookie(cookie, next); // step 12
1244
+ }
1245
+ }
1246
+
1247
+ store.findCookie(cookie.domain, cookie.path, cookie.key, withCookie);
1248
+ }
1249
+
1250
+ // RFC6365 S5.4
1251
+ getCookies(url, options, cb) {
1252
+ const context = getCookieContext(url);
1253
+ if (typeof options === "function") {
1254
+ cb = options;
1255
+ options = {};
1256
+ }
1257
+
1258
+ const host = canonicalDomain(context.hostname);
1259
+ const path = context.pathname || "/";
1260
+
1261
+ let secure = options.secure;
1262
+ if (
1263
+ secure == null &&
1264
+ context.protocol &&
1265
+ (context.protocol == "https:" || context.protocol == "wss:")
1266
+ ) {
1267
+ secure = true;
1268
+ }
1269
+
1270
+ let sameSiteLevel = 0;
1271
+ if (options.sameSiteContext) {
1272
+ const sameSiteContext = checkSameSiteContext(options.sameSiteContext);
1273
+ sameSiteLevel = Cookie.sameSiteLevel[sameSiteContext];
1274
+ if (!sameSiteLevel) {
1275
+ return cb(new Error(SAME_SITE_CONTEXT_VAL_ERR));
1276
+ }
1277
+ }
1278
+
1279
+ let http = options.http;
1280
+ if (http == null) {
1281
+ http = true;
1282
+ }
1283
+
1284
+ const now = options.now || Date.now();
1285
+ const expireCheck = options.expire !== false;
1286
+ const allPaths = !!options.allPaths;
1287
+ const store = this.store;
1288
+
1289
+ function matchingCookie(c) {
1290
+ // "Either:
1291
+ // The cookie's host-only-flag is true and the canonicalized
1292
+ // request-host is identical to the cookie's domain.
1293
+ // Or:
1294
+ // The cookie's host-only-flag is false and the canonicalized
1295
+ // request-host domain-matches the cookie's domain."
1296
+ if (c.hostOnly) {
1297
+ if (c.domain != host) {
1298
+ return false;
1299
+ }
1300
+ } else {
1301
+ if (!domainMatch(host, c.domain, false)) {
1302
+ return false;
1303
+ }
1304
+ }
1305
+
1306
+ // "The request-uri's path path-matches the cookie's path."
1307
+ if (!allPaths && !pathMatch(path, c.path)) {
1308
+ return false;
1309
+ }
1310
+
1311
+ // "If the cookie's secure-only-flag is true, then the request-uri's
1312
+ // scheme must denote a "secure" protocol"
1313
+ if (c.secure && !secure) {
1314
+ return false;
1315
+ }
1316
+
1317
+ // "If the cookie's http-only-flag is true, then exclude the cookie if the
1318
+ // cookie-string is being generated for a "non-HTTP" API"
1319
+ if (c.httpOnly && !http) {
1320
+ return false;
1321
+ }
1322
+
1323
+ // RFC6265bis-02 S5.3.7
1324
+ if (sameSiteLevel) {
1325
+ const cookieLevel = Cookie.sameSiteLevel[c.sameSite || "none"];
1326
+ if (cookieLevel > sameSiteLevel) {
1327
+ // only allow cookies at or below the request level
1328
+ return false;
1329
+ }
1330
+ }
1331
+
1332
+ // deferred from S5.3
1333
+ // non-RFC: allow retention of expired cookies by choice
1334
+ if (expireCheck && c.expiryTime() <= now) {
1335
+ store.removeCookie(c.domain, c.path, c.key, () => {}); // result ignored
1336
+ return false;
1337
+ }
1338
+
1339
+ return true;
1340
+ }
1341
+
1342
+ store.findCookies(
1343
+ host,
1344
+ allPaths ? null : path,
1345
+ this.allowSpecialUseDomain,
1346
+ (err, cookies) => {
1347
+ if (err) {
1348
+ return cb(err);
1349
+ }
1350
+
1351
+ cookies = cookies.filter(matchingCookie);
1352
+
1353
+ // sorting of S5.4 part 2
1354
+ if (options.sort !== false) {
1355
+ cookies = cookies.sort(cookieCompare);
1356
+ }
1357
+
1358
+ // S5.4 part 3
1359
+ const now = new Date();
1360
+ for (const cookie of cookies) {
1361
+ cookie.lastAccessed = now;
1362
+ }
1363
+ // TODO persist lastAccessed
1364
+
1365
+ cb(null, cookies);
1366
+ }
1367
+ );
1368
+ }
1369
+
1370
+ getCookieString(...args) {
1371
+ const cb = args.pop();
1372
+ const next = function(err, cookies) {
1373
+ if (err) {
1374
+ cb(err);
1375
+ } else {
1376
+ cb(
1377
+ null,
1378
+ cookies
1379
+ .sort(cookieCompare)
1380
+ .map(c => c.cookieString())
1381
+ .join("; ")
1382
+ );
1383
+ }
1384
+ };
1385
+ args.push(next);
1386
+ this.getCookies.apply(this, args);
1387
+ }
1388
+
1389
+ getSetCookieStrings(...args) {
1390
+ const cb = args.pop();
1391
+ const next = function(err, cookies) {
1392
+ if (err) {
1393
+ cb(err);
1394
+ } else {
1395
+ cb(
1396
+ null,
1397
+ cookies.map(c => {
1398
+ return c.toString();
1399
+ })
1400
+ );
1401
+ }
1402
+ };
1403
+ args.push(next);
1404
+ this.getCookies.apply(this, args);
1405
+ }
1406
+
1407
+ serialize(cb) {
1408
+ let type = this.store.constructor.name;
1409
+ if (type === "Object") {
1410
+ type = null;
1411
+ }
1412
+
1413
+ // update README.md "Serialization Format" if you change this, please!
1414
+ const serialized = {
1415
+ // The version of tough-cookie that serialized this jar. Generally a good
1416
+ // practice since future versions can make data import decisions based on
1417
+ // known past behavior. When/if this matters, use `semver`.
1418
+ version: `tough-cookie@${VERSION}`,
1419
+
1420
+ // add the store type, to make humans happy:
1421
+ storeType: type,
1422
+
1423
+ // CookieJar configuration:
1424
+ rejectPublicSuffixes: !!this.rejectPublicSuffixes,
1425
+
1426
+ // this gets filled from getAllCookies:
1427
+ cookies: []
1428
+ };
1429
+
1430
+ if (
1431
+ !(
1432
+ this.store.getAllCookies &&
1433
+ typeof this.store.getAllCookies === "function"
1434
+ )
1435
+ ) {
1436
+ return cb(
1437
+ new Error(
1438
+ "store does not support getAllCookies and cannot be serialized"
1439
+ )
1440
+ );
1441
+ }
1442
+
1443
+ this.store.getAllCookies((err, cookies) => {
1444
+ if (err) {
1445
+ return cb(err);
1446
+ }
1447
+
1448
+ serialized.cookies = cookies.map(cookie => {
1449
+ // convert to serialized 'raw' cookies
1450
+ cookie = cookie instanceof Cookie ? cookie.toJSON() : cookie;
1451
+
1452
+ // Remove the index so new ones get assigned during deserialization
1453
+ delete cookie.creationIndex;
1454
+
1455
+ return cookie;
1456
+ });
1457
+
1458
+ return cb(null, serialized);
1459
+ });
1460
+ }
1461
+
1462
+ toJSON() {
1463
+ return this.serializeSync();
1464
+ }
1465
+
1466
+ // use the class method CookieJar.deserialize instead of calling this directly
1467
+ _importCookies(serialized, cb) {
1468
+ let cookies = serialized.cookies;
1469
+ if (!cookies || !Array.isArray(cookies)) {
1470
+ return cb(new Error("serialized jar has no cookies array"));
1471
+ }
1472
+ cookies = cookies.slice(); // do not modify the original
1473
+
1474
+ const putNext = err => {
1475
+ if (err) {
1476
+ return cb(err);
1477
+ }
1478
+
1479
+ if (!cookies.length) {
1480
+ return cb(err, this);
1481
+ }
1482
+
1483
+ let cookie;
1484
+ try {
1485
+ cookie = fromJSON(cookies.shift());
1486
+ } catch (e) {
1487
+ return cb(e);
1488
+ }
1489
+
1490
+ if (cookie === null) {
1491
+ return putNext(null); // skip this cookie
1492
+ }
1493
+
1494
+ this.store.putCookie(cookie, putNext);
1495
+ };
1496
+
1497
+ putNext();
1498
+ }
1499
+
1500
+ clone(newStore, cb) {
1501
+ if (arguments.length === 1) {
1502
+ cb = newStore;
1503
+ newStore = null;
1504
+ }
1505
+
1506
+ this.serialize((err, serialized) => {
1507
+ if (err) {
1508
+ return cb(err);
1509
+ }
1510
+ CookieJar.deserialize(serialized, newStore, cb);
1511
+ });
1512
+ }
1513
+
1514
+ cloneSync(newStore) {
1515
+ if (arguments.length === 0) {
1516
+ return this._cloneSync();
1517
+ }
1518
+ if (!newStore.synchronous) {
1519
+ throw new Error(
1520
+ "CookieJar clone destination store is not synchronous; use async API instead."
1521
+ );
1522
+ }
1523
+ return this._cloneSync(newStore);
1524
+ }
1525
+
1526
+ removeAllCookies(cb) {
1527
+ const store = this.store;
1528
+
1529
+ // Check that the store implements its own removeAllCookies(). The default
1530
+ // implementation in Store will immediately call the callback with a "not
1531
+ // implemented" Error.
1532
+ if (
1533
+ typeof store.removeAllCookies === "function" &&
1534
+ store.removeAllCookies !== Store.prototype.removeAllCookies
1535
+ ) {
1536
+ return store.removeAllCookies(cb);
1537
+ }
1538
+
1539
+ store.getAllCookies((err, cookies) => {
1540
+ if (err) {
1541
+ return cb(err);
1542
+ }
1543
+
1544
+ if (cookies.length === 0) {
1545
+ return cb(null);
1546
+ }
1547
+
1548
+ let completedCount = 0;
1549
+ const removeErrors = [];
1550
+
1551
+ function removeCookieCb(removeErr) {
1552
+ if (removeErr) {
1553
+ removeErrors.push(removeErr);
1554
+ }
1555
+
1556
+ completedCount++;
1557
+
1558
+ if (completedCount === cookies.length) {
1559
+ return cb(removeErrors.length ? removeErrors[0] : null);
1560
+ }
1561
+ }
1562
+
1563
+ cookies.forEach(cookie => {
1564
+ store.removeCookie(
1565
+ cookie.domain,
1566
+ cookie.path,
1567
+ cookie.key,
1568
+ removeCookieCb
1569
+ );
1570
+ });
1571
+ });
1572
+ }
1573
+
1574
+ static deserialize(strOrObj, store, cb) {
1575
+ if (arguments.length !== 3) {
1576
+ // store is optional
1577
+ cb = store;
1578
+ store = null;
1579
+ }
1580
+
1581
+ let serialized;
1582
+ if (typeof strOrObj === "string") {
1583
+ serialized = jsonParse(strOrObj);
1584
+ if (serialized instanceof Error) {
1585
+ return cb(serialized);
1586
+ }
1587
+ } else {
1588
+ serialized = strOrObj;
1589
+ }
1590
+
1591
+ const jar = new CookieJar(store, serialized.rejectPublicSuffixes);
1592
+ jar._importCookies(serialized, err => {
1593
+ if (err) {
1594
+ return cb(err);
1595
+ }
1596
+ cb(null, jar);
1597
+ });
1598
+ }
1599
+
1600
+ static deserializeSync(strOrObj, store) {
1601
+ const serialized =
1602
+ typeof strOrObj === "string" ? JSON.parse(strOrObj) : strOrObj;
1603
+ const jar = new CookieJar(store, serialized.rejectPublicSuffixes);
1604
+
1605
+ // catch this mistake early:
1606
+ if (!jar.store.synchronous) {
1607
+ throw new Error(
1608
+ "CookieJar store is not synchronous; use async API instead."
1609
+ );
1610
+ }
1611
+
1612
+ jar._importCookiesSync(serialized);
1613
+ return jar;
1614
+ }
1615
+ }
1616
+ CookieJar.fromJSON = CookieJar.deserializeSync;
1617
+
1618
+ [
1619
+ "_importCookies",
1620
+ "clone",
1621
+ "getCookies",
1622
+ "getCookieString",
1623
+ "getSetCookieStrings",
1624
+ "removeAllCookies",
1625
+ "serialize",
1626
+ "setCookie"
1627
+ ].forEach(name => {
1628
+ CookieJar.prototype[name] = fromCallback(CookieJar.prototype[name]);
1629
+ });
1630
+ CookieJar.deserialize = fromCallback(CookieJar.deserialize);
1631
+
1632
+ // Use a closure to provide a true imperative API for synchronous stores.
1633
+ function syncWrap(method) {
1634
+ return function(...args) {
1635
+ if (!this.store.synchronous) {
1636
+ throw new Error(
1637
+ "CookieJar store is not synchronous; use async API instead."
1638
+ );
1639
+ }
1640
+
1641
+ let syncErr, syncResult;
1642
+ this[method](...args, (err, result) => {
1643
+ syncErr = err;
1644
+ syncResult = result;
1645
+ });
1646
+
1647
+ if (syncErr) {
1648
+ throw syncErr;
1649
+ }
1650
+ return syncResult;
1651
+ };
1652
+ }
1653
+
1654
+ exports.version = VERSION;
1655
+ exports.CookieJar = CookieJar;
1656
+ exports.Cookie = Cookie;
1657
+ exports.Store = Store;
1658
+ exports.MemoryCookieStore = MemoryCookieStore;
1659
+ exports.parseDate = parseDate;
1660
+ exports.formatDate = formatDate;
1661
+ exports.parse = parse;
1662
+ exports.fromJSON = fromJSON;
1663
+ exports.domainMatch = domainMatch;
1664
+ exports.defaultPath = defaultPath;
1665
+ exports.pathMatch = pathMatch;
1666
+ exports.getPublicSuffix = pubsuffix.getPublicSuffix;
1667
+ exports.cookieCompare = cookieCompare;
1668
+ exports.permuteDomain = require("./permuteDomain").permuteDomain;
1669
+ exports.permutePath = permutePath;
1670
+ exports.canonicalDomain = canonicalDomain;
1671
+ exports.PrefixSecurityEnum = PrefixSecurityEnum;