@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.
- package/.release-it.json +2 -1
- package/config/build/lambda.config.js +39 -0
- package/dist/cli.js +1 -1
- package/dist/lambda-to-json.zip +0 -0
- package/dist/wysiwyg.mjs +10 -17
- package/lib/entry-lambda-to-json.js +8 -0
- package/lib/extensions/Alignment.js +10 -8
- package/lib/extensions/FontSize.js +8 -3
- package/lib/extensions/LineHeight.js +10 -4
- package/lib/extensions/__tests__/__snapshots__/Alignment.test.js.snap +3 -3
- package/lib/extensions/__tests__/__snapshots__/FontSize.test.js.snap +9 -9
- package/lib/extensions/__tests__/__snapshots__/LineHeight.test.js.snap +5 -5
- package/lib/services/NodeFactory.js +4 -1
- package/node_modules_lambda/.bin/acorn +4 -0
- package/node_modules_lambda/.bin/escodegen +77 -0
- package/node_modules_lambda/.bin/esgenerate +64 -0
- package/node_modules_lambda/.bin/esparse +139 -0
- package/node_modules_lambda/.bin/esvalidate +236 -0
- package/node_modules_lambda/.package-lock.json +602 -0
- package/node_modules_lambda/@tootallnate/once/LICENSE +21 -0
- package/node_modules_lambda/@tootallnate/once/README.md +93 -0
- package/node_modules_lambda/@tootallnate/once/dist/index.d.ts +7 -0
- package/node_modules_lambda/@tootallnate/once/dist/index.js +24 -0
- package/node_modules_lambda/@tootallnate/once/dist/index.js.map +1 -0
- package/node_modules_lambda/@tootallnate/once/dist/overloaded-parameters.d.ts +231 -0
- package/node_modules_lambda/@tootallnate/once/dist/overloaded-parameters.js +3 -0
- package/node_modules_lambda/@tootallnate/once/dist/overloaded-parameters.js.map +1 -0
- package/node_modules_lambda/@tootallnate/once/dist/types.d.ts +17 -0
- package/node_modules_lambda/@tootallnate/once/dist/types.js +3 -0
- package/node_modules_lambda/@tootallnate/once/dist/types.js.map +1 -0
- package/node_modules_lambda/@tootallnate/once/package.json +52 -0
- package/node_modules_lambda/abab/LICENSE.md +13 -0
- package/node_modules_lambda/abab/README.md +51 -0
- package/node_modules_lambda/abab/index.d.ts +2 -0
- package/node_modules_lambda/abab/index.js +9 -0
- package/node_modules_lambda/abab/lib/atob.js +101 -0
- package/node_modules_lambda/abab/lib/btoa.js +62 -0
- package/node_modules_lambda/abab/package.json +42 -0
- package/node_modules_lambda/acorn/CHANGELOG.md +798 -0
- package/node_modules_lambda/acorn/LICENSE +21 -0
- package/node_modules_lambda/acorn/README.md +273 -0
- package/node_modules_lambda/acorn/bin/acorn +4 -0
- package/node_modules_lambda/acorn/dist/acorn.d.ts +252 -0
- package/node_modules_lambda/acorn/dist/acorn.js +5608 -0
- package/node_modules_lambda/acorn/dist/acorn.mjs +5577 -0
- package/node_modules_lambda/acorn/dist/acorn.mjs.d.ts +2 -0
- package/node_modules_lambda/acorn/dist/bin.js +91 -0
- package/node_modules_lambda/acorn/package.json +50 -0
- package/node_modules_lambda/acorn-globals/LICENSE +19 -0
- package/node_modules_lambda/acorn-globals/README.md +81 -0
- package/node_modules_lambda/acorn-globals/index.js +179 -0
- package/node_modules_lambda/acorn-globals/node_modules/.bin/acorn +4 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/CHANGELOG.md +620 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/LICENSE +21 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/README.md +269 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/bin/acorn +4 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.d.ts +209 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.js +5186 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.js.map +1 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.mjs +5155 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.mjs.d.ts +2 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.mjs.map +1 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/bin.js +64 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/package.json +35 -0
- package/node_modules_lambda/acorn-globals/package.json +35 -0
- package/node_modules_lambda/acorn-walk/CHANGELOG.md +131 -0
- package/node_modules_lambda/acorn-walk/LICENSE +19 -0
- package/node_modules_lambda/acorn-walk/README.md +126 -0
- package/node_modules_lambda/acorn-walk/dist/walk.d.ts +112 -0
- package/node_modules_lambda/acorn-walk/dist/walk.js +463 -0
- package/node_modules_lambda/acorn-walk/dist/walk.js.map +1 -0
- package/node_modules_lambda/acorn-walk/dist/walk.mjs +443 -0
- package/node_modules_lambda/acorn-walk/dist/walk.mjs.map +1 -0
- package/node_modules_lambda/acorn-walk/package.json +34 -0
- package/node_modules_lambda/agent-base/README.md +145 -0
- package/node_modules_lambda/agent-base/dist/src/index.d.ts +78 -0
- package/node_modules_lambda/agent-base/dist/src/index.js +203 -0
- package/node_modules_lambda/agent-base/dist/src/index.js.map +1 -0
- package/node_modules_lambda/agent-base/dist/src/promisify.d.ts +4 -0
- package/node_modules_lambda/agent-base/dist/src/promisify.js +18 -0
- package/node_modules_lambda/agent-base/dist/src/promisify.js.map +1 -0
- package/node_modules_lambda/agent-base/package.json +64 -0
- package/node_modules_lambda/agent-base/src/index.ts +345 -0
- package/node_modules_lambda/agent-base/src/promisify.ts +33 -0
- package/node_modules_lambda/asynckit/LICENSE +21 -0
- package/node_modules_lambda/asynckit/README.md +233 -0
- package/node_modules_lambda/asynckit/bench.js +76 -0
- package/node_modules_lambda/asynckit/index.js +6 -0
- package/node_modules_lambda/asynckit/lib/abort.js +29 -0
- package/node_modules_lambda/asynckit/lib/async.js +34 -0
- package/node_modules_lambda/asynckit/lib/defer.js +26 -0
- package/node_modules_lambda/asynckit/lib/iterate.js +75 -0
- package/node_modules_lambda/asynckit/lib/readable_asynckit.js +91 -0
- package/node_modules_lambda/asynckit/lib/readable_parallel.js +25 -0
- package/node_modules_lambda/asynckit/lib/readable_serial.js +25 -0
- package/node_modules_lambda/asynckit/lib/readable_serial_ordered.js +29 -0
- package/node_modules_lambda/asynckit/lib/state.js +37 -0
- package/node_modules_lambda/asynckit/lib/streamify.js +141 -0
- package/node_modules_lambda/asynckit/lib/terminator.js +29 -0
- package/node_modules_lambda/asynckit/package.json +63 -0
- package/node_modules_lambda/asynckit/parallel.js +43 -0
- package/node_modules_lambda/asynckit/serial.js +17 -0
- package/node_modules_lambda/asynckit/serialOrdered.js +75 -0
- package/node_modules_lambda/asynckit/stream.js +21 -0
- package/node_modules_lambda/browser-process-hrtime/LICENSE +9 -0
- package/node_modules_lambda/browser-process-hrtime/README.md +27 -0
- package/node_modules_lambda/browser-process-hrtime/index.d.ts +4 -0
- package/node_modules_lambda/browser-process-hrtime/index.js +28 -0
- package/node_modules_lambda/browser-process-hrtime/package.json +15 -0
- package/node_modules_lambda/combined-stream/License +19 -0
- package/node_modules_lambda/combined-stream/Readme.md +138 -0
- package/node_modules_lambda/combined-stream/lib/combined_stream.js +208 -0
- package/node_modules_lambda/combined-stream/package.json +25 -0
- package/node_modules_lambda/combined-stream/yarn.lock +17 -0
- package/node_modules_lambda/cssom/LICENSE.txt +20 -0
- package/node_modules_lambda/cssom/README.mdown +67 -0
- package/node_modules_lambda/cssom/lib/CSSConditionRule.js +25 -0
- package/node_modules_lambda/cssom/lib/CSSDocumentRule.js +39 -0
- package/node_modules_lambda/cssom/lib/CSSFontFaceRule.js +36 -0
- package/node_modules_lambda/cssom/lib/CSSGroupingRule.js +68 -0
- package/node_modules_lambda/cssom/lib/CSSHostRule.js +37 -0
- package/node_modules_lambda/cssom/lib/CSSImportRule.js +132 -0
- package/node_modules_lambda/cssom/lib/CSSKeyframeRule.js +37 -0
- package/node_modules_lambda/cssom/lib/CSSKeyframesRule.js +39 -0
- package/node_modules_lambda/cssom/lib/CSSMediaRule.js +53 -0
- package/node_modules_lambda/cssom/lib/CSSOM.js +3 -0
- package/node_modules_lambda/cssom/lib/CSSRule.js +43 -0
- package/node_modules_lambda/cssom/lib/CSSStyleDeclaration.js +148 -0
- package/node_modules_lambda/cssom/lib/CSSStyleRule.js +190 -0
- package/node_modules_lambda/cssom/lib/CSSStyleSheet.js +88 -0
- package/node_modules_lambda/cssom/lib/CSSSupportsRule.js +36 -0
- package/node_modules_lambda/cssom/lib/CSSValue.js +43 -0
- package/node_modules_lambda/cssom/lib/CSSValueExpression.js +344 -0
- package/node_modules_lambda/cssom/lib/MatcherList.js +62 -0
- package/node_modules_lambda/cssom/lib/MediaList.js +61 -0
- package/node_modules_lambda/cssom/lib/StyleSheet.js +17 -0
- package/node_modules_lambda/cssom/lib/clone.js +74 -0
- package/node_modules_lambda/cssom/lib/index.js +23 -0
- package/node_modules_lambda/cssom/lib/parse.js +465 -0
- package/node_modules_lambda/cssom/package.json +18 -0
- package/node_modules_lambda/cssstyle/LICENSE +20 -0
- package/node_modules_lambda/cssstyle/README.md +15 -0
- package/node_modules_lambda/cssstyle/lib/CSSStyleDeclaration.js +260 -0
- package/node_modules_lambda/cssstyle/lib/CSSStyleDeclaration.test.js +556 -0
- package/node_modules_lambda/cssstyle/lib/allExtraProperties.js +67 -0
- package/node_modules_lambda/cssstyle/lib/allProperties.js +462 -0
- package/node_modules_lambda/cssstyle/lib/allWebkitProperties.js +194 -0
- package/node_modules_lambda/cssstyle/lib/constants.js +6 -0
- package/node_modules_lambda/cssstyle/lib/implementedProperties.js +90 -0
- package/node_modules_lambda/cssstyle/lib/named_colors.json +152 -0
- package/node_modules_lambda/cssstyle/lib/parsers.js +722 -0
- package/node_modules_lambda/cssstyle/lib/parsers.test.js +139 -0
- package/node_modules_lambda/cssstyle/lib/properties/azimuth.js +67 -0
- package/node_modules_lambda/cssstyle/lib/properties/background.js +19 -0
- package/node_modules_lambda/cssstyle/lib/properties/backgroundAttachment.js +24 -0
- package/node_modules_lambda/cssstyle/lib/properties/backgroundColor.js +36 -0
- package/node_modules_lambda/cssstyle/lib/properties/backgroundImage.js +32 -0
- package/node_modules_lambda/cssstyle/lib/properties/backgroundPosition.js +58 -0
- package/node_modules_lambda/cssstyle/lib/properties/backgroundRepeat.js +32 -0
- package/node_modules_lambda/cssstyle/lib/properties/border.js +33 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderBottom.js +17 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderBottomColor.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderBottomStyle.js +21 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderBottomWidth.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderCollapse.js +26 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderColor.js +30 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderLeft.js +17 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderLeftColor.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderLeftStyle.js +21 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderLeftWidth.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderRight.js +17 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderRightColor.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderRightStyle.js +21 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderRightWidth.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderSpacing.js +41 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderStyle.js +38 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderTop.js +17 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderTopColor.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderTopStyle.js +21 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderTopWidth.js +17 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderWidth.js +46 -0
- package/node_modules_lambda/cssstyle/lib/properties/bottom.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/clear.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/clip.js +47 -0
- package/node_modules_lambda/cssstyle/lib/properties/color.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/cssFloat.js +12 -0
- package/node_modules_lambda/cssstyle/lib/properties/flex.js +45 -0
- package/node_modules_lambda/cssstyle/lib/properties/flexBasis.js +28 -0
- package/node_modules_lambda/cssstyle/lib/properties/flexGrow.js +19 -0
- package/node_modules_lambda/cssstyle/lib/properties/flexShrink.js +19 -0
- package/node_modules_lambda/cssstyle/lib/properties/float.js +12 -0
- package/node_modules_lambda/cssstyle/lib/properties/floodColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/font.js +43 -0
- package/node_modules_lambda/cssstyle/lib/properties/fontFamily.js +33 -0
- package/node_modules_lambda/cssstyle/lib/properties/fontSize.js +38 -0
- package/node_modules_lambda/cssstyle/lib/properties/fontStyle.js +18 -0
- package/node_modules_lambda/cssstyle/lib/properties/fontVariant.js +18 -0
- package/node_modules_lambda/cssstyle/lib/properties/fontWeight.js +33 -0
- package/node_modules_lambda/cssstyle/lib/properties/height.js +24 -0
- package/node_modules_lambda/cssstyle/lib/properties/left.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/lightingColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/lineHeight.js +26 -0
- package/node_modules_lambda/cssstyle/lib/properties/margin.js +68 -0
- package/node_modules_lambda/cssstyle/lib/properties/marginBottom.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/marginLeft.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/marginRight.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/marginTop.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/opacity.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/outlineColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/padding.js +61 -0
- package/node_modules_lambda/cssstyle/lib/properties/paddingBottom.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/paddingLeft.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/paddingRight.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/paddingTop.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/right.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/stopColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/textLineThroughColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/textOverlineColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/textUnderlineColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/top.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitBorderAfterColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitBorderBeforeColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitBorderEndColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitBorderStartColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitColumnRuleColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitMatchNearestMailBlockquoteColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitTapHighlightColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitTextEmphasisColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitTextFillColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitTextStrokeColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/width.js +24 -0
- package/node_modules_lambda/cssstyle/lib/properties.js +1833 -0
- package/node_modules_lambda/cssstyle/lib/utils/colorSpace.js +21 -0
- package/node_modules_lambda/cssstyle/lib/utils/getBasicPropertyDescriptor.js +14 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/LICENSE.txt +20 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/README.mdown +67 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSHostRule.js +37 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSImportRule.js +132 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSMediaRule.js +41 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSOM.js +3 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSRule.js +43 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSStyleRule.js +190 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSValue.js +43 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSValueExpression.js +344 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/MatcherList.js +62 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/MediaList.js +61 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/StyleSheet.js +17 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/clone.js +82 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/index.js +21 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/parse.js +464 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/package.json +18 -0
- package/node_modules_lambda/cssstyle/package.json +72 -0
- package/node_modules_lambda/data-urls/LICENSE.txt +7 -0
- package/node_modules_lambda/data-urls/README.md +62 -0
- package/node_modules_lambda/data-urls/lib/parser.js +69 -0
- package/node_modules_lambda/data-urls/lib/utils.js +18 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/LICENSE.txt +21 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/README.md +106 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/index.js +27 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/Function.js +42 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URL-impl.js +209 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URL.js +442 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URLSearchParams-impl.js +130 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URLSearchParams.js +472 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/VoidFunction.js +26 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/encoding.js +16 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/infra.js +26 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/percent-encoding.js +142 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/url-state-machine.js +1244 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/urlencoded.js +106 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/utils.js +190 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/package.json +58 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
- package/node_modules_lambda/data-urls/package.json +54 -0
- package/node_modules_lambda/debug/LICENSE +20 -0
- package/node_modules_lambda/debug/README.md +481 -0
- package/node_modules_lambda/debug/package.json +59 -0
- package/node_modules_lambda/debug/src/browser.js +269 -0
- package/node_modules_lambda/debug/src/common.js +274 -0
- package/node_modules_lambda/debug/src/index.js +10 -0
- package/node_modules_lambda/debug/src/node.js +263 -0
- package/node_modules_lambda/decimal.js/CHANGELOG.md +231 -0
- package/node_modules_lambda/decimal.js/LICENCE.md +23 -0
- package/node_modules_lambda/decimal.js/README.md +246 -0
- package/node_modules_lambda/decimal.js/decimal.d.ts +300 -0
- package/node_modules_lambda/decimal.js/decimal.js +4934 -0
- package/node_modules_lambda/decimal.js/decimal.mjs +4898 -0
- package/node_modules_lambda/decimal.js/package.json +40 -0
- package/node_modules_lambda/deep-is/.travis.yml +5 -0
- package/node_modules_lambda/deep-is/LICENSE +22 -0
- package/node_modules_lambda/deep-is/README.markdown +70 -0
- package/node_modules_lambda/deep-is/example/cmp.js +11 -0
- package/node_modules_lambda/deep-is/index.js +102 -0
- package/node_modules_lambda/deep-is/package.json +58 -0
- package/node_modules_lambda/deep-is/test/NaN.js +16 -0
- package/node_modules_lambda/deep-is/test/cmp.js +23 -0
- package/node_modules_lambda/deep-is/test/neg-vs-pos-0.js +15 -0
- package/node_modules_lambda/delayed-stream/License +19 -0
- package/node_modules_lambda/delayed-stream/Makefile +7 -0
- package/node_modules_lambda/delayed-stream/Readme.md +141 -0
- package/node_modules_lambda/delayed-stream/lib/delayed_stream.js +107 -0
- package/node_modules_lambda/delayed-stream/package.json +27 -0
- package/node_modules_lambda/domexception/LICENSE.txt +21 -0
- package/node_modules_lambda/domexception/README.md +31 -0
- package/node_modules_lambda/domexception/index.js +7 -0
- package/node_modules_lambda/domexception/lib/DOMException-impl.js +22 -0
- package/node_modules_lambda/domexception/lib/DOMException.js +222 -0
- package/node_modules_lambda/domexception/lib/Function.js +42 -0
- package/node_modules_lambda/domexception/lib/VoidFunction.js +26 -0
- package/node_modules_lambda/domexception/lib/legacy-error-codes.json +24 -0
- package/node_modules_lambda/domexception/lib/utils.js +190 -0
- package/node_modules_lambda/domexception/package.json +42 -0
- package/node_modules_lambda/domexception/webidl2js-wrapper.js +15 -0
- package/node_modules_lambda/escodegen/LICENSE.BSD +21 -0
- package/node_modules_lambda/escodegen/README.md +84 -0
- package/node_modules_lambda/escodegen/bin/escodegen.js +77 -0
- package/node_modules_lambda/escodegen/bin/esgenerate.js +64 -0
- package/node_modules_lambda/escodegen/escodegen.js +2647 -0
- package/node_modules_lambda/escodegen/node_modules/estraverse/.jshintrc +16 -0
- package/node_modules_lambda/escodegen/node_modules/estraverse/LICENSE.BSD +19 -0
- package/node_modules_lambda/escodegen/node_modules/estraverse/README.md +153 -0
- package/node_modules_lambda/escodegen/node_modules/estraverse/estraverse.js +805 -0
- package/node_modules_lambda/escodegen/node_modules/estraverse/gulpfile.js +70 -0
- package/node_modules_lambda/escodegen/node_modules/estraverse/package.json +40 -0
- package/node_modules_lambda/escodegen/node_modules/levn/LICENSE +22 -0
- package/node_modules_lambda/escodegen/node_modules/levn/README.md +196 -0
- package/node_modules_lambda/escodegen/node_modules/levn/lib/cast.js +298 -0
- package/node_modules_lambda/escodegen/node_modules/levn/lib/coerce.js +285 -0
- package/node_modules_lambda/escodegen/node_modules/levn/lib/index.js +22 -0
- package/node_modules_lambda/escodegen/node_modules/levn/lib/parse-string.js +113 -0
- package/node_modules_lambda/escodegen/node_modules/levn/lib/parse.js +102 -0
- package/node_modules_lambda/escodegen/node_modules/levn/package.json +47 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/CHANGELOG.md +56 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/LICENSE +22 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/README.md +238 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/lib/help.js +260 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/lib/index.js +465 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/lib/util.js +54 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/package.json +44 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/CHANGELOG.md +99 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/LICENSE +22 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/README.md +15 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Func.js +65 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/List.js +686 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Num.js +130 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Obj.js +154 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Str.js +92 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/index.js +178 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/package.json +52 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/CHANGELOG.md +301 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/LICENSE +28 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/README.md +742 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.debug.js +3234 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.js +3233 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.min.js +2 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.min.js.map +1 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/array-set.js +121 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/base64-vlq.js +140 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/base64.js +67 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/binary-search.js +111 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/mapping-list.js +79 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/quick-sort.js +114 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/source-map-consumer.js +1145 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/source-map-generator.js +425 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/source-node.js +413 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/util.js +488 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/package.json +73 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/source-map.d.ts +98 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/source-map.js +8 -0
- package/node_modules_lambda/escodegen/node_modules/type-check/LICENSE +22 -0
- package/node_modules_lambda/escodegen/node_modules/type-check/README.md +210 -0
- package/node_modules_lambda/escodegen/node_modules/type-check/lib/check.js +126 -0
- package/node_modules_lambda/escodegen/node_modules/type-check/lib/index.js +16 -0
- package/node_modules_lambda/escodegen/node_modules/type-check/lib/parse-type.js +196 -0
- package/node_modules_lambda/escodegen/node_modules/type-check/package.json +40 -0
- package/node_modules_lambda/escodegen/package.json +62 -0
- package/node_modules_lambda/esprima/ChangeLog +235 -0
- package/node_modules_lambda/esprima/LICENSE.BSD +21 -0
- package/node_modules_lambda/esprima/README.md +46 -0
- package/node_modules_lambda/esprima/bin/esparse.js +139 -0
- package/node_modules_lambda/esprima/bin/esvalidate.js +236 -0
- package/node_modules_lambda/esprima/dist/esprima.js +6709 -0
- package/node_modules_lambda/esprima/package.json +112 -0
- package/node_modules_lambda/esutils/LICENSE.BSD +19 -0
- package/node_modules_lambda/esutils/README.md +174 -0
- package/node_modules_lambda/esutils/lib/ast.js +144 -0
- package/node_modules_lambda/esutils/lib/code.js +135 -0
- package/node_modules_lambda/esutils/lib/keyword.js +165 -0
- package/node_modules_lambda/esutils/lib/utils.js +33 -0
- package/node_modules_lambda/esutils/package.json +44 -0
- package/node_modules_lambda/fast-levenshtein/LICENSE.md +25 -0
- package/node_modules_lambda/fast-levenshtein/README.md +104 -0
- package/node_modules_lambda/fast-levenshtein/levenshtein.js +136 -0
- package/node_modules_lambda/fast-levenshtein/package.json +39 -0
- package/node_modules_lambda/form-data/License +19 -0
- package/node_modules_lambda/form-data/README.md.bak +358 -0
- package/node_modules_lambda/form-data/Readme.md +358 -0
- package/node_modules_lambda/form-data/index.d.ts +62 -0
- package/node_modules_lambda/form-data/lib/browser.js +2 -0
- package/node_modules_lambda/form-data/lib/form_data.js +501 -0
- package/node_modules_lambda/form-data/lib/populate.js +10 -0
- package/node_modules_lambda/form-data/package.json +68 -0
- package/node_modules_lambda/html-encoding-sniffer/LICENSE.txt +7 -0
- package/node_modules_lambda/html-encoding-sniffer/README.md +40 -0
- package/node_modules_lambda/html-encoding-sniffer/lib/html-encoding-sniffer.js +295 -0
- package/node_modules_lambda/html-encoding-sniffer/package.json +31 -0
- package/node_modules_lambda/http-proxy-agent/README.md +74 -0
- package/node_modules_lambda/http-proxy-agent/dist/agent.d.ts +32 -0
- package/node_modules_lambda/http-proxy-agent/dist/agent.js +145 -0
- package/node_modules_lambda/http-proxy-agent/dist/agent.js.map +1 -0
- package/node_modules_lambda/http-proxy-agent/dist/index.d.ts +21 -0
- package/node_modules_lambda/http-proxy-agent/dist/index.js +14 -0
- package/node_modules_lambda/http-proxy-agent/dist/index.js.map +1 -0
- package/node_modules_lambda/http-proxy-agent/package.json +57 -0
- package/node_modules_lambda/https-proxy-agent/README.md +137 -0
- package/node_modules_lambda/https-proxy-agent/dist/agent.d.ts +30 -0
- package/node_modules_lambda/https-proxy-agent/dist/agent.js +177 -0
- package/node_modules_lambda/https-proxy-agent/dist/agent.js.map +1 -0
- package/node_modules_lambda/https-proxy-agent/dist/index.d.ts +23 -0
- package/node_modules_lambda/https-proxy-agent/dist/index.js +14 -0
- package/node_modules_lambda/https-proxy-agent/dist/index.js.map +1 -0
- package/node_modules_lambda/https-proxy-agent/dist/parse-proxy-response.d.ts +7 -0
- package/node_modules_lambda/https-proxy-agent/dist/parse-proxy-response.js +66 -0
- package/node_modules_lambda/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
- package/node_modules_lambda/https-proxy-agent/package.json +56 -0
- package/node_modules_lambda/is-potential-custom-element-name/LICENSE-MIT.txt +20 -0
- package/node_modules_lambda/is-potential-custom-element-name/README.md +40 -0
- package/node_modules_lambda/is-potential-custom-element-name/index.js +9 -0
- package/node_modules_lambda/is-potential-custom-element-name/package.json +35 -0
- package/node_modules_lambda/jsdom/LICENSE.txt +22 -0
- package/node_modules_lambda/jsdom/README.md +522 -0
- package/node_modules_lambda/jsdom/lib/api.js +333 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/Window.js +933 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/default-stylesheet.js +789 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/js-globals.json +307 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/not-implemented.js +13 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/parser/html.js +224 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/parser/index.js +37 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/parser/xml.js +202 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/async-resource-queue.js +114 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/no-op-resource-loader.js +8 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/per-document-resource-loader.js +95 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/request-manager.js +33 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/resource-loader.js +142 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/resource-queue.js +142 -0
- package/node_modules_lambda/jsdom/lib/jsdom/level2/style.js +57 -0
- package/node_modules_lambda/jsdom/lib/jsdom/level3/xpath.js +1874 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/aborting/AbortController-impl.js +17 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/aborting/AbortSignal-impl.js +69 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/attributes/Attr-impl.js +60 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/attributes/NamedNodeMap-impl.js +78 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/attributes.js +312 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/constraint-validation/DefaultConstraintValidation-impl.js +75 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/constraint-validation/ValidityState-impl.js +66 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/cssom/StyleSheetList-impl.js +38 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/custom-elements/CustomElementRegistry-impl.js +265 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/documents.js +15 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/DOMParser-impl.js +58 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/InnerHTML-impl.js +29 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/XMLSerializer-impl.js +18 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/parse5-adapter-serialization.js +63 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/serialization.js +45 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/CloseEvent-impl.js +10 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/CompositionEvent-impl.js +20 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/CustomEvent-impl.js +21 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/ErrorEvent-impl.js +14 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/Event-impl.js +197 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/EventModifierMixin-impl.js +18 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/EventTarget-impl.js +405 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/FocusEvent-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js +14 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/InputEvent-impl.js +11 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/KeyboardEvent-impl.js +29 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/MessageEvent-impl.js +25 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/MouseEvent-impl.js +49 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/PageTransitionEvent-impl.js +20 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/PopStateEvent-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/ProgressEvent-impl.js +14 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/StorageEvent-impl.js +26 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/TouchEvent-impl.js +14 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/UIEvent-impl.js +59 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/WheelEvent-impl.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/fetch/Headers-impl.js +170 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/fetch/header-list.js +54 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/fetch/header-types.js +103 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/Blob-impl.js +93 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/File-impl.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/FileList-impl.js +15 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/FileReader-impl.js +130 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AbortController.js +143 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AbortSignal.js +184 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AbstractRange.js +171 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AddEventListenerOptions.js +44 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AssignedNodesOptions.js +28 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Attr.js +217 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BarProp.js +117 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BinaryType.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Blob.js +203 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BlobCallback.js +30 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BlobPropertyBag.js +42 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CDATASection.js +109 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CanPlayTypeResult.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CharacterData.js +453 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CloseEvent.js +168 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CloseEventInit.js +65 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Comment.js +120 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CompositionEvent.js +219 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CompositionEventInit.js +32 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomElementConstructor.js +34 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomElementRegistry.js +242 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomEvent.js +206 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomEventInit.js +32 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMImplementation.js +237 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMParser.js +140 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMStringMap.js +323 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMTokenList.js +563 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Document.js +3593 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DocumentFragment.js +334 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DocumentReadyState.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DocumentType.js +252 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Element.js +1718 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ElementCreationOptions.js +26 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ElementDefinitionOptions.js +29 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EndingType.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ErrorEvent.js +192 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ErrorEventInit.js +92 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Event.js +430 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventHandlerNonNull.js +36 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventInit.js +58 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventListener.js +35 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventListenerOptions.js +28 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventModifierInit.js +221 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventTarget.js +259 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/External.js +130 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/File.js +177 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FileList.js +324 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FilePropertyBag.js +33 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FileReader.js +468 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FocusEvent.js +144 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FocusEventInit.js +36 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FormData.js +452 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Function.js +42 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/GetRootNodeOptions.js +31 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLAnchorElement.js +1023 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLAreaElement.js +822 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLAudioElement.js +110 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLBRElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLBaseElement.js +193 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLBodyElement.js +877 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLButtonElement.js +522 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLCanvasElement.js +304 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLCollection.js +378 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDListElement.js +156 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDataElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDataListElement.js +125 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDetailsElement.js +156 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDialogElement.js +156 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDirectoryElement.js +156 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDivElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLElement.js +2549 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLEmbedElement.js +371 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFieldSetElement.js +329 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFontElement.js +236 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFormElement.js +501 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFrameElement.js +494 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFrameSetElement.js +708 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHRElement.js +320 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHeadElement.js +110 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHeadingElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHtmlElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLIFrameElement.js +670 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLImageElement.js +870 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLInputElement.js +1875 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLIElement.js +199 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLabelElement.js +179 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLegendElement.js +166 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLinkElement.js +542 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMapElement.js +168 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMarqueeElement.js +546 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMediaElement.js +888 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMenuElement.js +156 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMetaElement.js +276 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMeterElement.js +365 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLModElement.js +207 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOListElement.js +281 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLObjectElement.js +921 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOptGroupElement.js +197 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOptionElement.js +376 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOptionsCollection.js +537 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOutputElement.js +392 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLParagraphElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLParamElement.js +276 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLPictureElement.js +110 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLPreElement.js +158 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLProgressElement.js +218 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLQuoteElement.js +166 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLScriptElement.js +459 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSelectElement.js +1013 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSlotElement.js +192 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSourceElement.js +330 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSpanElement.js +110 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLStyleElement.js +207 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableCaptionElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableCellElement.js +700 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableColElement.js +364 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableElement.js +799 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableRowElement.js +414 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableSectionElement.js +346 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTemplateElement.js +123 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTextAreaElement.js +1171 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTimeElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTitleElement.js +152 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTrackElement.js +356 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLUListElement.js +197 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLUnknownElement.js +109 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLVideoElement.js +329 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HashChangeEvent.js +157 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HashChangeEventInit.js +50 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Headers.js +408 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/History.js +266 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/InputEvent.js +168 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/InputEventInit.js +68 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/KeyboardEvent.js +445 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/KeyboardEventInit.js +116 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Location.js +404 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MessageEvent.js +317 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MessageEventInit.js +100 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MimeType.js +156 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MimeTypeArray.js +352 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MouseEvent.js +499 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MouseEventInit.js +111 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationCallback.js +34 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationObserver.js +178 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationObserverInit.js +121 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationRecord.js +229 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NamedNodeMap.js +553 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Navigator.js +326 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Node.js +763 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NodeFilter.js +75 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NodeIterator.js +207 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NodeList.js +328 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/OnBeforeUnloadEventHandlerNonNull.js +42 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/OnErrorEventHandlerNonNull.js +56 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PageTransitionEvent.js +144 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PageTransitionEventInit.js +35 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Performance.js +142 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Plugin.js +385 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PluginArray.js +362 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PopStateEvent.js +144 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PopStateEventInit.js +32 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ProcessingInstruction.js +122 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ProgressEvent.js +170 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ProgressEventInit.js +65 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Range.js +641 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGAnimatedString.js +149 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGBoundingBoxOptions.js +64 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGElement.js +2227 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGGraphicsElement.js +139 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGNumber.js +132 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGSVGElement.js +737 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGStringList.js +537 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGTitleElement.js +109 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Screen.js +180 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollBehavior.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollIntoViewOptions.js +45 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollLogicalPosition.js +14 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollOptions.js +30 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollRestoration.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Selection.js +569 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SelectionMode.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ShadowRoot.js +187 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ShadowRootInit.js +30 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ShadowRootMode.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StaticRange.js +123 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StaticRangeInit.js +72 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Storage.js +423 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StorageEvent.js +318 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StorageEventInit.js +99 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StyleSheetList.js +326 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SupportedType.js +18 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Text.js +170 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TextTrackKind.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TouchEvent.js +222 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TouchEventInit.js +89 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TreeWalker.js +255 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/UIEvent.js +235 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/UIEventInit.js +62 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ValidityState.js +249 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/VisibilityState.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/VoidFunction.js +26 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/WebSocket.js +476 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/WheelEvent.js +191 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/WheelEventInit.js +71 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLDocument.js +109 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequest.js +655 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequestEventTarget.js +334 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequestResponseType.js +14 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequestUpload.js +109 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLSerializer.js +132 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/utils.js +190 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/agent-factory.js +15 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/binary-data.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/create-element.js +320 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/create-event-accessor.js +188 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/custom-elements.js +270 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/dates-and-times.js +270 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/details.js +15 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/document-base-url.js +54 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/events.js +24 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/focusing.js +104 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/form-controls.js +306 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/html-constructor.js +78 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/http-request.js +254 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/internal-constants.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/iterable-weak-set.js +48 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/json.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/mutation-observers.js +198 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/namespaces.js +15 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/node.js +68 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/number-and-date-inputs.js +195 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/ordered-set.js +104 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/page-transition-event.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js +76 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/selectors.js +47 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/shadow-dom.js +285 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/strings.js +148 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/style-rules.js +114 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/stylesheets.js +113 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/svg/basic-types.js +41 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/svg/render.js +46 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/text.js +19 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/traversal.js +72 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/validate-names.js +65 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/hr-time/Performance-impl.js +25 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/interfaces.js +217 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/mutation-observer/MutationObserver-impl.js +95 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/mutation-observer/MutationRecord-impl.js +37 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/named-properties-window.js +141 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/MimeType-impl.js +3 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/MimeTypeArray-impl.js +21 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/Navigator-impl.js +29 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js +8 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorCookies-impl.js +7 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorID-impl.js +37 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorLanguage-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorOnLine-impl.js +7 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorPlugins-impl.js +8 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/Plugin-impl.js +3 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/PluginArray-impl.js +23 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/node-document-position.js +10 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/node-type.js +16 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/node.js +331 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/CDATASection-impl.js +16 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/CharacterData-impl.js +118 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js +80 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Comment-impl.js +20 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DOMImplementation-impl.js +120 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DOMStringMap-impl.js +64 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DOMTokenList-impl.js +171 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Document-impl.js +946 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DocumentFragment-impl.js +44 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DocumentOrShadowRoot-impl.js +28 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DocumentType-impl.js +24 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Element-impl.js +582 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ElementCSSInlineStyle-impl.js +25 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ElementContentEditable-impl.js +7 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/GlobalEventHandlers-impl.js +95 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLAnchorElement-impl.js +50 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLAreaElement-impl.js +43 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLAudioElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLBRElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLBaseElement-impl.js +27 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLBodyElement-impl.js +17 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js +79 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLCanvasElement-impl.js +130 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLCollection-impl.js +96 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDListElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDataElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDataListElement-impl.js +20 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDetailsElement-impl.js +35 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDialogElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDirectoryElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDivElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js +160 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLEmbedElement-impl.js +8 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFieldSetElement-impl.js +43 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFontElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js +232 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFrameElement-impl.js +261 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFrameSetElement-impl.js +17 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHRElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHeadElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHeadingElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHtmlElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHyperlinkElementUtils-impl.js +371 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLIFrameElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLImageElement-impl.js +132 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js +1129 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLIElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLabelElement-impl.js +94 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLegendElement-impl.js +18 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLinkElement-impl.js +101 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMapElement-impl.js +13 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMarqueeElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMediaElement-impl.js +138 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMenuElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMetaElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMeterElement-impl.js +180 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLModElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js +22 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js +26 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOptGroupElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOptionElement-impl.js +146 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOptionsCollection-impl.js +110 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js +85 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOutputElement-impl.js +88 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLParagraphElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLParamElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLPictureElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLPreElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLProgressElement-impl.js +74 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLQuoteElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLScriptElement-impl.js +265 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSelectElement-impl.js +283 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSlotElement-impl.js +59 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSourceElement-impl.js +8 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSpanElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl.js +74 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableCaptionElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableCellElement-impl.js +73 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableColElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableElement-impl.js +236 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableRowElement-impl.js +88 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js +61 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTemplateElement-impl.js +67 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js +272 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTimeElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTitleElement-impl.js +18 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js +13 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLUListElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLUnknownElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLVideoElement-impl.js +17 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/LinkStyle-impl.js +2 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Node-impl.js +1159 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/NodeList-impl.js +43 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/NonDocumentTypeChildNode-impl.js +28 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/NonElementParentNode-impl.js +11 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ParentNode-impl.js +91 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ProcessingInstruction-impl.js +22 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGElement-impl.js +64 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js +16 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGSVGElement-impl.js +42 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGTests-impl.js +42 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGTitleElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ShadowRoot-impl.js +40 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Slotable-impl.js +48 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Text-impl.js +96 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/WindowEventHandlers-impl.js +52 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/XMLDocument-impl.js +4 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/post-message.js +39 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/range/AbstractRange-impl.js +43 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/range/Range-impl.js +897 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/range/StaticRange-impl.js +39 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/range/boundary-point.js +47 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/selection/Selection-impl.js +342 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGAnimatedString-impl.js +38 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGListBase.js +195 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGNumber-impl.js +48 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGStringList-impl.js +16 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/traversal/NodeIterator-impl.js +127 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/traversal/TreeWalker-impl.js +217 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/traversal/helpers.js +44 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/websockets/WebSocket-impl-browser.js +175 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/websockets/WebSocket-impl.js +328 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/webstorage/Storage-impl.js +102 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/BarProp-impl.js +10 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/External-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/History-impl.js +134 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/Location-impl.js +238 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/Screen-impl.js +13 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/SessionHistory.js +163 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/navigation.js +85 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/FormData-impl.js +171 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/XMLHttpRequest-impl.js +1023 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/XMLHttpRequestEventTarget-impl.js +17 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/XMLHttpRequestUpload-impl.js +4 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/xhr-sync-worker.js +60 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/xhr-utils.js +438 -0
- package/node_modules_lambda/jsdom/lib/jsdom/named-properties-tracker.js +158 -0
- package/node_modules_lambda/jsdom/lib/jsdom/utils.js +165 -0
- package/node_modules_lambda/jsdom/lib/jsdom/virtual-console.js +34 -0
- package/node_modules_lambda/jsdom/lib/jsdom/vm-shim.js +106 -0
- package/node_modules_lambda/jsdom/package.json +116 -0
- package/node_modules_lambda/mime-db/HISTORY.md +507 -0
- package/node_modules_lambda/mime-db/LICENSE +23 -0
- package/node_modules_lambda/mime-db/README.md +100 -0
- package/node_modules_lambda/mime-db/db.json +8519 -0
- package/node_modules_lambda/mime-db/index.js +12 -0
- package/node_modules_lambda/mime-db/package.json +60 -0
- package/node_modules_lambda/mime-types/HISTORY.md +397 -0
- package/node_modules_lambda/mime-types/LICENSE +23 -0
- package/node_modules_lambda/mime-types/README.md +113 -0
- package/node_modules_lambda/mime-types/index.js +188 -0
- package/node_modules_lambda/mime-types/package.json +44 -0
- package/node_modules_lambda/ms/index.js +162 -0
- package/node_modules_lambda/ms/license.md +21 -0
- package/node_modules_lambda/ms/package.json +37 -0
- package/node_modules_lambda/ms/readme.md +60 -0
- package/node_modules_lambda/nwsapi/LICENSE +22 -0
- package/node_modules_lambda/nwsapi/README.md +132 -0
- package/node_modules_lambda/nwsapi/dist/lint.log +0 -0
- package/node_modules_lambda/nwsapi/package.json +38 -0
- package/node_modules_lambda/nwsapi/src/modules/nwsapi-jquery.js +135 -0
- package/node_modules_lambda/nwsapi/src/modules/nwsapi-traversal.js +90 -0
- package/node_modules_lambda/nwsapi/src/nwsapi.js +1800 -0
- package/node_modules_lambda/parse5/LICENSE +19 -0
- package/node_modules_lambda/parse5/README.md +38 -0
- package/node_modules_lambda/parse5/lib/common/doctype.js +162 -0
- package/node_modules_lambda/parse5/lib/common/error-codes.js +65 -0
- package/node_modules_lambda/parse5/lib/common/foreign-content.js +265 -0
- package/node_modules_lambda/parse5/lib/common/html.js +272 -0
- package/node_modules_lambda/parse5/lib/common/unicode.js +109 -0
- package/node_modules_lambda/parse5/lib/extensions/error-reporting/mixin-base.js +43 -0
- package/node_modules_lambda/parse5/lib/extensions/error-reporting/parser-mixin.js +52 -0
- package/node_modules_lambda/parse5/lib/extensions/error-reporting/preprocessor-mixin.js +24 -0
- package/node_modules_lambda/parse5/lib/extensions/error-reporting/tokenizer-mixin.js +17 -0
- package/node_modules_lambda/parse5/lib/extensions/location-info/open-element-stack-mixin.js +35 -0
- package/node_modules_lambda/parse5/lib/extensions/location-info/parser-mixin.js +223 -0
- package/node_modules_lambda/parse5/lib/extensions/location-info/tokenizer-mixin.js +146 -0
- package/node_modules_lambda/parse5/lib/extensions/position-tracking/preprocessor-mixin.js +64 -0
- package/node_modules_lambda/parse5/lib/index.js +29 -0
- package/node_modules_lambda/parse5/lib/parser/formatting-element-list.js +181 -0
- package/node_modules_lambda/parse5/lib/parser/index.js +2956 -0
- package/node_modules_lambda/parse5/lib/parser/open-element-stack.js +482 -0
- package/node_modules_lambda/parse5/lib/serializer/index.js +176 -0
- package/node_modules_lambda/parse5/lib/tokenizer/index.js +2196 -0
- package/node_modules_lambda/parse5/lib/tokenizer/named-entity-data.js +5 -0
- package/node_modules_lambda/parse5/lib/tokenizer/preprocessor.js +159 -0
- package/node_modules_lambda/parse5/lib/tree-adapters/default.js +221 -0
- package/node_modules_lambda/parse5/lib/utils/merge-options.js +13 -0
- package/node_modules_lambda/parse5/lib/utils/mixin.js +39 -0
- package/node_modules_lambda/parse5/package.json +35 -0
- package/node_modules_lambda/psl/LICENSE +9 -0
- package/node_modules_lambda/psl/README.md +215 -0
- package/node_modules_lambda/psl/browserstack-logo.svg +90 -0
- package/node_modules_lambda/psl/data/rules.json +8834 -0
- package/node_modules_lambda/psl/dist/psl.js +9645 -0
- package/node_modules_lambda/psl/dist/psl.min.js +1 -0
- package/node_modules_lambda/psl/index.js +269 -0
- package/node_modules_lambda/psl/package.json +44 -0
- package/node_modules_lambda/punycode/LICENSE-MIT.txt +20 -0
- package/node_modules_lambda/punycode/README.md +122 -0
- package/node_modules_lambda/punycode/package.json +58 -0
- package/node_modules_lambda/punycode/punycode.es6.js +441 -0
- package/node_modules_lambda/punycode/punycode.js +440 -0
- package/node_modules_lambda/safer-buffer/LICENSE +21 -0
- package/node_modules_lambda/safer-buffer/Porting-Buffer.md +268 -0
- package/node_modules_lambda/safer-buffer/Readme.md +156 -0
- package/node_modules_lambda/safer-buffer/dangerous.js +58 -0
- package/node_modules_lambda/safer-buffer/package.json +34 -0
- package/node_modules_lambda/safer-buffer/safer.js +77 -0
- package/node_modules_lambda/safer-buffer/tests.js +406 -0
- package/node_modules_lambda/saxes/README.md +323 -0
- package/node_modules_lambda/saxes/package.json +70 -0
- package/node_modules_lambda/saxes/saxes.d.ts +635 -0
- package/node_modules_lambda/saxes/saxes.js +2064 -0
- package/node_modules_lambda/saxes/saxes.js.map +1 -0
- package/node_modules_lambda/symbol-tree/LICENSE +21 -0
- package/node_modules_lambda/symbol-tree/README.md +545 -0
- package/node_modules_lambda/symbol-tree/lib/SymbolTree.js +838 -0
- package/node_modules_lambda/symbol-tree/lib/SymbolTreeNode.js +54 -0
- package/node_modules_lambda/symbol-tree/lib/TreeIterator.js +69 -0
- package/node_modules_lambda/symbol-tree/lib/TreePosition.js +11 -0
- package/node_modules_lambda/symbol-tree/package.json +47 -0
- package/node_modules_lambda/tough-cookie/LICENSE +12 -0
- package/node_modules_lambda/tough-cookie/README.md +582 -0
- package/node_modules_lambda/tough-cookie/lib/cookie.js +1671 -0
- package/node_modules_lambda/tough-cookie/lib/memstore.js +190 -0
- package/node_modules_lambda/tough-cookie/lib/pathMatch.js +61 -0
- package/node_modules_lambda/tough-cookie/lib/permuteDomain.js +70 -0
- package/node_modules_lambda/tough-cookie/lib/pubsuffix-psl.js +38 -0
- package/node_modules_lambda/tough-cookie/lib/store.js +76 -0
- package/node_modules_lambda/tough-cookie/lib/version.js +2 -0
- package/node_modules_lambda/tough-cookie/package.json +109 -0
- package/node_modules_lambda/tr46/LICENSE.md +21 -0
- package/node_modules_lambda/tr46/README.md +78 -0
- package/node_modules_lambda/tr46/index.js +298 -0
- package/node_modules_lambda/tr46/lib/mappingTable.json +1 -0
- package/node_modules_lambda/tr46/lib/regexes.js +29 -0
- package/node_modules_lambda/tr46/lib/statusMapping.js +11 -0
- package/node_modules_lambda/tr46/package.json +47 -0
- package/node_modules_lambda/universalify/LICENSE +20 -0
- package/node_modules_lambda/universalify/README.md +76 -0
- package/node_modules_lambda/universalify/index.js +25 -0
- package/node_modules_lambda/universalify/package.json +34 -0
- package/node_modules_lambda/w3c-hr-time/CHANGELOG.md +19 -0
- package/node_modules_lambda/w3c-hr-time/LICENSE.md +21 -0
- package/node_modules_lambda/w3c-hr-time/README.md +130 -0
- package/node_modules_lambda/w3c-hr-time/index.js +11 -0
- package/node_modules_lambda/w3c-hr-time/lib/calculate-clock-offset.js +39 -0
- package/node_modules_lambda/w3c-hr-time/lib/clock-is-accurate.js +61 -0
- package/node_modules_lambda/w3c-hr-time/lib/global-monotonic-clock.js +10 -0
- package/node_modules_lambda/w3c-hr-time/lib/performance.js +53 -0
- package/node_modules_lambda/w3c-hr-time/lib/utils.js +11 -0
- package/node_modules_lambda/w3c-hr-time/package.json +26 -0
- package/node_modules_lambda/w3c-xmlserializer/LICENSE.md +25 -0
- package/node_modules_lambda/w3c-xmlserializer/README.md +41 -0
- package/node_modules_lambda/w3c-xmlserializer/lib/attributes.js +125 -0
- package/node_modules_lambda/w3c-xmlserializer/lib/constants.js +44 -0
- package/node_modules_lambda/w3c-xmlserializer/lib/serialize.js +365 -0
- package/node_modules_lambda/w3c-xmlserializer/package.json +33 -0
- package/node_modules_lambda/webidl-conversions/LICENSE.md +12 -0
- package/node_modules_lambda/webidl-conversions/README.md +99 -0
- package/node_modules_lambda/webidl-conversions/lib/index.js +450 -0
- package/node_modules_lambda/webidl-conversions/package.json +35 -0
- package/node_modules_lambda/whatwg-encoding/LICENSE.txt +7 -0
- package/node_modules_lambda/whatwg-encoding/README.md +50 -0
- package/node_modules_lambda/whatwg-encoding/lib/labels-to-names.json +216 -0
- package/node_modules_lambda/whatwg-encoding/lib/supported-names.json +37 -0
- package/node_modules_lambda/whatwg-encoding/lib/whatwg-encoding.js +47 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/.github/dependabot.yml +11 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/Changelog.md +212 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/LICENSE +21 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/README.md +130 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/index.js +23 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/internal.js +198 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/utf16.js +197 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/utf32.js +319 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/index.d.ts +41 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/index.js +180 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/streams.js +109 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/package.json +44 -0
- package/node_modules_lambda/whatwg-encoding/package.json +33 -0
- package/node_modules_lambda/whatwg-mimetype/LICENSE.txt +7 -0
- package/node_modules_lambda/whatwg-mimetype/README.md +101 -0
- package/node_modules_lambda/whatwg-mimetype/lib/mime-type-parameters.js +70 -0
- package/node_modules_lambda/whatwg-mimetype/lib/mime-type.js +127 -0
- package/node_modules_lambda/whatwg-mimetype/lib/parser.js +105 -0
- package/node_modules_lambda/whatwg-mimetype/lib/serializer.js +25 -0
- package/node_modules_lambda/whatwg-mimetype/lib/utils.js +60 -0
- package/node_modules_lambda/whatwg-mimetype/package.json +47 -0
- package/node_modules_lambda/whatwg-url/LICENSE.txt +21 -0
- package/node_modules_lambda/whatwg-url/README.md +105 -0
- package/node_modules_lambda/whatwg-url/index.js +25 -0
- package/node_modules_lambda/whatwg-url/lib/Function.js +42 -0
- package/node_modules_lambda/whatwg-url/lib/URL-impl.js +217 -0
- package/node_modules_lambda/whatwg-url/lib/URL.js +442 -0
- package/node_modules_lambda/whatwg-url/lib/URLSearchParams-impl.js +130 -0
- package/node_modules_lambda/whatwg-url/lib/URLSearchParams.js +472 -0
- package/node_modules_lambda/whatwg-url/lib/VoidFunction.js +26 -0
- package/node_modules_lambda/whatwg-url/lib/encoding.js +16 -0
- package/node_modules_lambda/whatwg-url/lib/infra.js +26 -0
- package/node_modules_lambda/whatwg-url/lib/percent-encoding.js +142 -0
- package/node_modules_lambda/whatwg-url/lib/url-state-machine.js +1234 -0
- package/node_modules_lambda/whatwg-url/lib/urlencoded.js +106 -0
- package/node_modules_lambda/whatwg-url/lib/utils.js +190 -0
- package/node_modules_lambda/whatwg-url/package.json +58 -0
- package/node_modules_lambda/whatwg-url/webidl2js-wrapper.js +7 -0
- package/node_modules_lambda/word-wrap/LICENSE +21 -0
- package/node_modules_lambda/word-wrap/README.md +182 -0
- package/node_modules_lambda/word-wrap/index.d.ts +50 -0
- package/node_modules_lambda/word-wrap/index.js +46 -0
- package/node_modules_lambda/word-wrap/package.json +77 -0
- package/node_modules_lambda/ws/LICENSE +19 -0
- package/node_modules_lambda/ws/README.md +495 -0
- package/node_modules_lambda/ws/browser.js +8 -0
- package/node_modules_lambda/ws/index.js +13 -0
- package/node_modules_lambda/ws/lib/buffer-util.js +127 -0
- package/node_modules_lambda/ws/lib/constants.js +12 -0
- package/node_modules_lambda/ws/lib/event-target.js +266 -0
- package/node_modules_lambda/ws/lib/extension.js +203 -0
- package/node_modules_lambda/ws/lib/limiter.js +55 -0
- package/node_modules_lambda/ws/lib/permessage-deflate.js +511 -0
- package/node_modules_lambda/ws/lib/receiver.js +618 -0
- package/node_modules_lambda/ws/lib/sender.js +478 -0
- package/node_modules_lambda/ws/lib/stream.js +159 -0
- package/node_modules_lambda/ws/lib/subprotocol.js +62 -0
- package/node_modules_lambda/ws/lib/validation.js +125 -0
- package/node_modules_lambda/ws/lib/websocket-server.js +535 -0
- package/node_modules_lambda/ws/lib/websocket.js +1296 -0
- package/node_modules_lambda/ws/package.json +61 -0
- package/node_modules_lambda/ws/wrapper.mjs +8 -0
- package/node_modules_lambda/xml-name-validator/LICENSE.txt +176 -0
- package/node_modules_lambda/xml-name-validator/README.md +35 -0
- package/node_modules_lambda/xml-name-validator/lib/xml-name-validator.js +9 -0
- package/node_modules_lambda/xml-name-validator/package.json +30 -0
- package/node_modules_lambda/xmlchars/LICENSE +18 -0
- package/node_modules_lambda/xmlchars/README.md +33 -0
- package/node_modules_lambda/xmlchars/package.json +51 -0
- package/node_modules_lambda/xmlchars/xml/1.0/ed4.d.ts +31 -0
- package/node_modules_lambda/xmlchars/xml/1.0/ed4.js +44 -0
- package/node_modules_lambda/xmlchars/xml/1.0/ed4.js.map +1 -0
- package/node_modules_lambda/xmlchars/xml/1.0/ed5.d.ts +51 -0
- package/node_modules_lambda/xmlchars/xml/1.0/ed5.js +105 -0
- package/node_modules_lambda/xmlchars/xml/1.0/ed5.js.map +1 -0
- package/node_modules_lambda/xmlchars/xml/1.1/ed2.d.ts +73 -0
- package/node_modules_lambda/xmlchars/xml/1.1/ed2.js +145 -0
- package/node_modules_lambda/xmlchars/xml/1.1/ed2.js.map +1 -0
- package/node_modules_lambda/xmlchars/xmlchars.d.ts +170 -0
- package/node_modules_lambda/xmlchars/xmlchars.js +191 -0
- package/node_modules_lambda/xmlchars/xmlchars.js.map +1 -0
- package/node_modules_lambda/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
- package/node_modules_lambda/xmlchars/xmlns/1.0/ed3.js +65 -0
- package/node_modules_lambda/xmlchars/xmlns/1.0/ed3.js.map +1 -0
- package/package.json +8 -3
|
@@ -0,0 +1,742 @@
|
|
|
1
|
+
# Source Map
|
|
2
|
+
|
|
3
|
+
[](https://travis-ci.org/mozilla/source-map)
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/source-map)
|
|
6
|
+
|
|
7
|
+
This is a library to generate and consume the source map format
|
|
8
|
+
[described here][format].
|
|
9
|
+
|
|
10
|
+
[format]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit
|
|
11
|
+
|
|
12
|
+
## Use with Node
|
|
13
|
+
|
|
14
|
+
$ npm install source-map
|
|
15
|
+
|
|
16
|
+
## Use on the Web
|
|
17
|
+
|
|
18
|
+
<script src="https://raw.githubusercontent.com/mozilla/source-map/master/dist/source-map.min.js" defer></script>
|
|
19
|
+
|
|
20
|
+
--------------------------------------------------------------------------------
|
|
21
|
+
|
|
22
|
+
<!-- `npm run toc` to regenerate the Table of Contents -->
|
|
23
|
+
|
|
24
|
+
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
25
|
+
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
26
|
+
## Table of Contents
|
|
27
|
+
|
|
28
|
+
- [Examples](#examples)
|
|
29
|
+
- [Consuming a source map](#consuming-a-source-map)
|
|
30
|
+
- [Generating a source map](#generating-a-source-map)
|
|
31
|
+
- [With SourceNode (high level API)](#with-sourcenode-high-level-api)
|
|
32
|
+
- [With SourceMapGenerator (low level API)](#with-sourcemapgenerator-low-level-api)
|
|
33
|
+
- [API](#api)
|
|
34
|
+
- [SourceMapConsumer](#sourcemapconsumer)
|
|
35
|
+
- [new SourceMapConsumer(rawSourceMap)](#new-sourcemapconsumerrawsourcemap)
|
|
36
|
+
- [SourceMapConsumer.prototype.computeColumnSpans()](#sourcemapconsumerprototypecomputecolumnspans)
|
|
37
|
+
- [SourceMapConsumer.prototype.originalPositionFor(generatedPosition)](#sourcemapconsumerprototypeoriginalpositionforgeneratedposition)
|
|
38
|
+
- [SourceMapConsumer.prototype.generatedPositionFor(originalPosition)](#sourcemapconsumerprototypegeneratedpositionfororiginalposition)
|
|
39
|
+
- [SourceMapConsumer.prototype.allGeneratedPositionsFor(originalPosition)](#sourcemapconsumerprototypeallgeneratedpositionsfororiginalposition)
|
|
40
|
+
- [SourceMapConsumer.prototype.hasContentsOfAllSources()](#sourcemapconsumerprototypehascontentsofallsources)
|
|
41
|
+
- [SourceMapConsumer.prototype.sourceContentFor(source[, returnNullOnMissing])](#sourcemapconsumerprototypesourcecontentforsource-returnnullonmissing)
|
|
42
|
+
- [SourceMapConsumer.prototype.eachMapping(callback, context, order)](#sourcemapconsumerprototypeeachmappingcallback-context-order)
|
|
43
|
+
- [SourceMapGenerator](#sourcemapgenerator)
|
|
44
|
+
- [new SourceMapGenerator([startOfSourceMap])](#new-sourcemapgeneratorstartofsourcemap)
|
|
45
|
+
- [SourceMapGenerator.fromSourceMap(sourceMapConsumer)](#sourcemapgeneratorfromsourcemapsourcemapconsumer)
|
|
46
|
+
- [SourceMapGenerator.prototype.addMapping(mapping)](#sourcemapgeneratorprototypeaddmappingmapping)
|
|
47
|
+
- [SourceMapGenerator.prototype.setSourceContent(sourceFile, sourceContent)](#sourcemapgeneratorprototypesetsourcecontentsourcefile-sourcecontent)
|
|
48
|
+
- [SourceMapGenerator.prototype.applySourceMap(sourceMapConsumer[, sourceFile[, sourceMapPath]])](#sourcemapgeneratorprototypeapplysourcemapsourcemapconsumer-sourcefile-sourcemappath)
|
|
49
|
+
- [SourceMapGenerator.prototype.toString()](#sourcemapgeneratorprototypetostring)
|
|
50
|
+
- [SourceNode](#sourcenode)
|
|
51
|
+
- [new SourceNode([line, column, source[, chunk[, name]]])](#new-sourcenodeline-column-source-chunk-name)
|
|
52
|
+
- [SourceNode.fromStringWithSourceMap(code, sourceMapConsumer[, relativePath])](#sourcenodefromstringwithsourcemapcode-sourcemapconsumer-relativepath)
|
|
53
|
+
- [SourceNode.prototype.add(chunk)](#sourcenodeprototypeaddchunk)
|
|
54
|
+
- [SourceNode.prototype.prepend(chunk)](#sourcenodeprototypeprependchunk)
|
|
55
|
+
- [SourceNode.prototype.setSourceContent(sourceFile, sourceContent)](#sourcenodeprototypesetsourcecontentsourcefile-sourcecontent)
|
|
56
|
+
- [SourceNode.prototype.walk(fn)](#sourcenodeprototypewalkfn)
|
|
57
|
+
- [SourceNode.prototype.walkSourceContents(fn)](#sourcenodeprototypewalksourcecontentsfn)
|
|
58
|
+
- [SourceNode.prototype.join(sep)](#sourcenodeprototypejoinsep)
|
|
59
|
+
- [SourceNode.prototype.replaceRight(pattern, replacement)](#sourcenodeprototypereplacerightpattern-replacement)
|
|
60
|
+
- [SourceNode.prototype.toString()](#sourcenodeprototypetostring)
|
|
61
|
+
- [SourceNode.prototype.toStringWithSourceMap([startOfSourceMap])](#sourcenodeprototypetostringwithsourcemapstartofsourcemap)
|
|
62
|
+
|
|
63
|
+
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
64
|
+
|
|
65
|
+
## Examples
|
|
66
|
+
|
|
67
|
+
### Consuming a source map
|
|
68
|
+
|
|
69
|
+
```js
|
|
70
|
+
var rawSourceMap = {
|
|
71
|
+
version: 3,
|
|
72
|
+
file: 'min.js',
|
|
73
|
+
names: ['bar', 'baz', 'n'],
|
|
74
|
+
sources: ['one.js', 'two.js'],
|
|
75
|
+
sourceRoot: 'http://example.com/www/js/',
|
|
76
|
+
mappings: 'CAAC,IAAI,IAAM,SAAUA,GAClB,OAAOC,IAAID;CCDb,IAAI,IAAM,SAAUE,GAClB,OAAOA'
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
var smc = new SourceMapConsumer(rawSourceMap);
|
|
80
|
+
|
|
81
|
+
console.log(smc.sources);
|
|
82
|
+
// [ 'http://example.com/www/js/one.js',
|
|
83
|
+
// 'http://example.com/www/js/two.js' ]
|
|
84
|
+
|
|
85
|
+
console.log(smc.originalPositionFor({
|
|
86
|
+
line: 2,
|
|
87
|
+
column: 28
|
|
88
|
+
}));
|
|
89
|
+
// { source: 'http://example.com/www/js/two.js',
|
|
90
|
+
// line: 2,
|
|
91
|
+
// column: 10,
|
|
92
|
+
// name: 'n' }
|
|
93
|
+
|
|
94
|
+
console.log(smc.generatedPositionFor({
|
|
95
|
+
source: 'http://example.com/www/js/two.js',
|
|
96
|
+
line: 2,
|
|
97
|
+
column: 10
|
|
98
|
+
}));
|
|
99
|
+
// { line: 2, column: 28 }
|
|
100
|
+
|
|
101
|
+
smc.eachMapping(function (m) {
|
|
102
|
+
// ...
|
|
103
|
+
});
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
### Generating a source map
|
|
107
|
+
|
|
108
|
+
In depth guide:
|
|
109
|
+
[**Compiling to JavaScript, and Debugging with Source Maps**](https://hacks.mozilla.org/2013/05/compiling-to-javascript-and-debugging-with-source-maps/)
|
|
110
|
+
|
|
111
|
+
#### With SourceNode (high level API)
|
|
112
|
+
|
|
113
|
+
```js
|
|
114
|
+
function compile(ast) {
|
|
115
|
+
switch (ast.type) {
|
|
116
|
+
case 'BinaryExpression':
|
|
117
|
+
return new SourceNode(
|
|
118
|
+
ast.location.line,
|
|
119
|
+
ast.location.column,
|
|
120
|
+
ast.location.source,
|
|
121
|
+
[compile(ast.left), " + ", compile(ast.right)]
|
|
122
|
+
);
|
|
123
|
+
case 'Literal':
|
|
124
|
+
return new SourceNode(
|
|
125
|
+
ast.location.line,
|
|
126
|
+
ast.location.column,
|
|
127
|
+
ast.location.source,
|
|
128
|
+
String(ast.value)
|
|
129
|
+
);
|
|
130
|
+
// ...
|
|
131
|
+
default:
|
|
132
|
+
throw new Error("Bad AST");
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
var ast = parse("40 + 2", "add.js");
|
|
137
|
+
console.log(compile(ast).toStringWithSourceMap({
|
|
138
|
+
file: 'add.js'
|
|
139
|
+
}));
|
|
140
|
+
// { code: '40 + 2',
|
|
141
|
+
// map: [object SourceMapGenerator] }
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
#### With SourceMapGenerator (low level API)
|
|
145
|
+
|
|
146
|
+
```js
|
|
147
|
+
var map = new SourceMapGenerator({
|
|
148
|
+
file: "source-mapped.js"
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
map.addMapping({
|
|
152
|
+
generated: {
|
|
153
|
+
line: 10,
|
|
154
|
+
column: 35
|
|
155
|
+
},
|
|
156
|
+
source: "foo.js",
|
|
157
|
+
original: {
|
|
158
|
+
line: 33,
|
|
159
|
+
column: 2
|
|
160
|
+
},
|
|
161
|
+
name: "christopher"
|
|
162
|
+
});
|
|
163
|
+
|
|
164
|
+
console.log(map.toString());
|
|
165
|
+
// '{"version":3,"file":"source-mapped.js","sources":["foo.js"],"names":["christopher"],"mappings":";;;;;;;;;mCAgCEA"}'
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
## API
|
|
169
|
+
|
|
170
|
+
Get a reference to the module:
|
|
171
|
+
|
|
172
|
+
```js
|
|
173
|
+
// Node.js
|
|
174
|
+
var sourceMap = require('source-map');
|
|
175
|
+
|
|
176
|
+
// Browser builds
|
|
177
|
+
var sourceMap = window.sourceMap;
|
|
178
|
+
|
|
179
|
+
// Inside Firefox
|
|
180
|
+
const sourceMap = require("devtools/toolkit/sourcemap/source-map.js");
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
### SourceMapConsumer
|
|
184
|
+
|
|
185
|
+
A SourceMapConsumer instance represents a parsed source map which we can query
|
|
186
|
+
for information about the original file positions by giving it a file position
|
|
187
|
+
in the generated source.
|
|
188
|
+
|
|
189
|
+
#### new SourceMapConsumer(rawSourceMap)
|
|
190
|
+
|
|
191
|
+
The only parameter is the raw source map (either as a string which can be
|
|
192
|
+
`JSON.parse`'d, or an object). According to the spec, source maps have the
|
|
193
|
+
following attributes:
|
|
194
|
+
|
|
195
|
+
* `version`: Which version of the source map spec this map is following.
|
|
196
|
+
|
|
197
|
+
* `sources`: An array of URLs to the original source files.
|
|
198
|
+
|
|
199
|
+
* `names`: An array of identifiers which can be referenced by individual
|
|
200
|
+
mappings.
|
|
201
|
+
|
|
202
|
+
* `sourceRoot`: Optional. The URL root from which all sources are relative.
|
|
203
|
+
|
|
204
|
+
* `sourcesContent`: Optional. An array of contents of the original source files.
|
|
205
|
+
|
|
206
|
+
* `mappings`: A string of base64 VLQs which contain the actual mappings.
|
|
207
|
+
|
|
208
|
+
* `file`: Optional. The generated filename this source map is associated with.
|
|
209
|
+
|
|
210
|
+
```js
|
|
211
|
+
var consumer = new sourceMap.SourceMapConsumer(rawSourceMapJsonData);
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
#### SourceMapConsumer.prototype.computeColumnSpans()
|
|
215
|
+
|
|
216
|
+
Compute the last column for each generated mapping. The last column is
|
|
217
|
+
inclusive.
|
|
218
|
+
|
|
219
|
+
```js
|
|
220
|
+
// Before:
|
|
221
|
+
consumer.allGeneratedPositionsFor({ line: 2, source: "foo.coffee" })
|
|
222
|
+
// [ { line: 2,
|
|
223
|
+
// column: 1 },
|
|
224
|
+
// { line: 2,
|
|
225
|
+
// column: 10 },
|
|
226
|
+
// { line: 2,
|
|
227
|
+
// column: 20 } ]
|
|
228
|
+
|
|
229
|
+
consumer.computeColumnSpans();
|
|
230
|
+
|
|
231
|
+
// After:
|
|
232
|
+
consumer.allGeneratedPositionsFor({ line: 2, source: "foo.coffee" })
|
|
233
|
+
// [ { line: 2,
|
|
234
|
+
// column: 1,
|
|
235
|
+
// lastColumn: 9 },
|
|
236
|
+
// { line: 2,
|
|
237
|
+
// column: 10,
|
|
238
|
+
// lastColumn: 19 },
|
|
239
|
+
// { line: 2,
|
|
240
|
+
// column: 20,
|
|
241
|
+
// lastColumn: Infinity } ]
|
|
242
|
+
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
#### SourceMapConsumer.prototype.originalPositionFor(generatedPosition)
|
|
246
|
+
|
|
247
|
+
Returns the original source, line, and column information for the generated
|
|
248
|
+
source's line and column positions provided. The only argument is an object with
|
|
249
|
+
the following properties:
|
|
250
|
+
|
|
251
|
+
* `line`: The line number in the generated source. Line numbers in
|
|
252
|
+
this library are 1-based (note that the underlying source map
|
|
253
|
+
specification uses 0-based line numbers -- this library handles the
|
|
254
|
+
translation).
|
|
255
|
+
|
|
256
|
+
* `column`: The column number in the generated source. Column numbers
|
|
257
|
+
in this library are 0-based.
|
|
258
|
+
|
|
259
|
+
* `bias`: Either `SourceMapConsumer.GREATEST_LOWER_BOUND` or
|
|
260
|
+
`SourceMapConsumer.LEAST_UPPER_BOUND`. Specifies whether to return the closest
|
|
261
|
+
element that is smaller than or greater than the one we are searching for,
|
|
262
|
+
respectively, if the exact element cannot be found. Defaults to
|
|
263
|
+
`SourceMapConsumer.GREATEST_LOWER_BOUND`.
|
|
264
|
+
|
|
265
|
+
and an object is returned with the following properties:
|
|
266
|
+
|
|
267
|
+
* `source`: The original source file, or null if this information is not
|
|
268
|
+
available.
|
|
269
|
+
|
|
270
|
+
* `line`: The line number in the original source, or null if this information is
|
|
271
|
+
not available. The line number is 1-based.
|
|
272
|
+
|
|
273
|
+
* `column`: The column number in the original source, or null if this
|
|
274
|
+
information is not available. The column number is 0-based.
|
|
275
|
+
|
|
276
|
+
* `name`: The original identifier, or null if this information is not available.
|
|
277
|
+
|
|
278
|
+
```js
|
|
279
|
+
consumer.originalPositionFor({ line: 2, column: 10 })
|
|
280
|
+
// { source: 'foo.coffee',
|
|
281
|
+
// line: 2,
|
|
282
|
+
// column: 2,
|
|
283
|
+
// name: null }
|
|
284
|
+
|
|
285
|
+
consumer.originalPositionFor({ line: 99999999999999999, column: 999999999999999 })
|
|
286
|
+
// { source: null,
|
|
287
|
+
// line: null,
|
|
288
|
+
// column: null,
|
|
289
|
+
// name: null }
|
|
290
|
+
```
|
|
291
|
+
|
|
292
|
+
#### SourceMapConsumer.prototype.generatedPositionFor(originalPosition)
|
|
293
|
+
|
|
294
|
+
Returns the generated line and column information for the original source,
|
|
295
|
+
line, and column positions provided. The only argument is an object with
|
|
296
|
+
the following properties:
|
|
297
|
+
|
|
298
|
+
* `source`: The filename of the original source.
|
|
299
|
+
|
|
300
|
+
* `line`: The line number in the original source. The line number is
|
|
301
|
+
1-based.
|
|
302
|
+
|
|
303
|
+
* `column`: The column number in the original source. The column
|
|
304
|
+
number is 0-based.
|
|
305
|
+
|
|
306
|
+
and an object is returned with the following properties:
|
|
307
|
+
|
|
308
|
+
* `line`: The line number in the generated source, or null. The line
|
|
309
|
+
number is 1-based.
|
|
310
|
+
|
|
311
|
+
* `column`: The column number in the generated source, or null. The
|
|
312
|
+
column number is 0-based.
|
|
313
|
+
|
|
314
|
+
```js
|
|
315
|
+
consumer.generatedPositionFor({ source: "example.js", line: 2, column: 10 })
|
|
316
|
+
// { line: 1,
|
|
317
|
+
// column: 56 }
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
#### SourceMapConsumer.prototype.allGeneratedPositionsFor(originalPosition)
|
|
321
|
+
|
|
322
|
+
Returns all generated line and column information for the original source, line,
|
|
323
|
+
and column provided. If no column is provided, returns all mappings
|
|
324
|
+
corresponding to a either the line we are searching for or the next closest line
|
|
325
|
+
that has any mappings. Otherwise, returns all mappings corresponding to the
|
|
326
|
+
given line and either the column we are searching for or the next closest column
|
|
327
|
+
that has any offsets.
|
|
328
|
+
|
|
329
|
+
The only argument is an object with the following properties:
|
|
330
|
+
|
|
331
|
+
* `source`: The filename of the original source.
|
|
332
|
+
|
|
333
|
+
* `line`: The line number in the original source. The line number is
|
|
334
|
+
1-based.
|
|
335
|
+
|
|
336
|
+
* `column`: Optional. The column number in the original source. The
|
|
337
|
+
column number is 0-based.
|
|
338
|
+
|
|
339
|
+
and an array of objects is returned, each with the following properties:
|
|
340
|
+
|
|
341
|
+
* `line`: The line number in the generated source, or null. The line
|
|
342
|
+
number is 1-based.
|
|
343
|
+
|
|
344
|
+
* `column`: The column number in the generated source, or null. The
|
|
345
|
+
column number is 0-based.
|
|
346
|
+
|
|
347
|
+
```js
|
|
348
|
+
consumer.allGeneratedpositionsfor({ line: 2, source: "foo.coffee" })
|
|
349
|
+
// [ { line: 2,
|
|
350
|
+
// column: 1 },
|
|
351
|
+
// { line: 2,
|
|
352
|
+
// column: 10 },
|
|
353
|
+
// { line: 2,
|
|
354
|
+
// column: 20 } ]
|
|
355
|
+
```
|
|
356
|
+
|
|
357
|
+
#### SourceMapConsumer.prototype.hasContentsOfAllSources()
|
|
358
|
+
|
|
359
|
+
Return true if we have the embedded source content for every source listed in
|
|
360
|
+
the source map, false otherwise.
|
|
361
|
+
|
|
362
|
+
In other words, if this method returns `true`, then
|
|
363
|
+
`consumer.sourceContentFor(s)` will succeed for every source `s` in
|
|
364
|
+
`consumer.sources`.
|
|
365
|
+
|
|
366
|
+
```js
|
|
367
|
+
// ...
|
|
368
|
+
if (consumer.hasContentsOfAllSources()) {
|
|
369
|
+
consumerReadyCallback(consumer);
|
|
370
|
+
} else {
|
|
371
|
+
fetchSources(consumer, consumerReadyCallback);
|
|
372
|
+
}
|
|
373
|
+
// ...
|
|
374
|
+
```
|
|
375
|
+
|
|
376
|
+
#### SourceMapConsumer.prototype.sourceContentFor(source[, returnNullOnMissing])
|
|
377
|
+
|
|
378
|
+
Returns the original source content for the source provided. The only
|
|
379
|
+
argument is the URL of the original source file.
|
|
380
|
+
|
|
381
|
+
If the source content for the given source is not found, then an error is
|
|
382
|
+
thrown. Optionally, pass `true` as the second param to have `null` returned
|
|
383
|
+
instead.
|
|
384
|
+
|
|
385
|
+
```js
|
|
386
|
+
consumer.sources
|
|
387
|
+
// [ "my-cool-lib.clj" ]
|
|
388
|
+
|
|
389
|
+
consumer.sourceContentFor("my-cool-lib.clj")
|
|
390
|
+
// "..."
|
|
391
|
+
|
|
392
|
+
consumer.sourceContentFor("this is not in the source map");
|
|
393
|
+
// Error: "this is not in the source map" is not in the source map
|
|
394
|
+
|
|
395
|
+
consumer.sourceContentFor("this is not in the source map", true);
|
|
396
|
+
// null
|
|
397
|
+
```
|
|
398
|
+
|
|
399
|
+
#### SourceMapConsumer.prototype.eachMapping(callback, context, order)
|
|
400
|
+
|
|
401
|
+
Iterate over each mapping between an original source/line/column and a
|
|
402
|
+
generated line/column in this source map.
|
|
403
|
+
|
|
404
|
+
* `callback`: The function that is called with each mapping. Mappings have the
|
|
405
|
+
form `{ source, generatedLine, generatedColumn, originalLine, originalColumn,
|
|
406
|
+
name }`
|
|
407
|
+
|
|
408
|
+
* `context`: Optional. If specified, this object will be the value of `this`
|
|
409
|
+
every time that `callback` is called.
|
|
410
|
+
|
|
411
|
+
* `order`: Either `SourceMapConsumer.GENERATED_ORDER` or
|
|
412
|
+
`SourceMapConsumer.ORIGINAL_ORDER`. Specifies whether you want to iterate over
|
|
413
|
+
the mappings sorted by the generated file's line/column order or the
|
|
414
|
+
original's source/line/column order, respectively. Defaults to
|
|
415
|
+
`SourceMapConsumer.GENERATED_ORDER`.
|
|
416
|
+
|
|
417
|
+
```js
|
|
418
|
+
consumer.eachMapping(function (m) { console.log(m); })
|
|
419
|
+
// ...
|
|
420
|
+
// { source: 'illmatic.js',
|
|
421
|
+
// generatedLine: 1,
|
|
422
|
+
// generatedColumn: 0,
|
|
423
|
+
// originalLine: 1,
|
|
424
|
+
// originalColumn: 0,
|
|
425
|
+
// name: null }
|
|
426
|
+
// { source: 'illmatic.js',
|
|
427
|
+
// generatedLine: 2,
|
|
428
|
+
// generatedColumn: 0,
|
|
429
|
+
// originalLine: 2,
|
|
430
|
+
// originalColumn: 0,
|
|
431
|
+
// name: null }
|
|
432
|
+
// ...
|
|
433
|
+
```
|
|
434
|
+
### SourceMapGenerator
|
|
435
|
+
|
|
436
|
+
An instance of the SourceMapGenerator represents a source map which is being
|
|
437
|
+
built incrementally.
|
|
438
|
+
|
|
439
|
+
#### new SourceMapGenerator([startOfSourceMap])
|
|
440
|
+
|
|
441
|
+
You may pass an object with the following properties:
|
|
442
|
+
|
|
443
|
+
* `file`: The filename of the generated source that this source map is
|
|
444
|
+
associated with.
|
|
445
|
+
|
|
446
|
+
* `sourceRoot`: A root for all relative URLs in this source map.
|
|
447
|
+
|
|
448
|
+
* `skipValidation`: Optional. When `true`, disables validation of mappings as
|
|
449
|
+
they are added. This can improve performance but should be used with
|
|
450
|
+
discretion, as a last resort. Even then, one should avoid using this flag when
|
|
451
|
+
running tests, if possible.
|
|
452
|
+
|
|
453
|
+
```js
|
|
454
|
+
var generator = new sourceMap.SourceMapGenerator({
|
|
455
|
+
file: "my-generated-javascript-file.js",
|
|
456
|
+
sourceRoot: "http://example.com/app/js/"
|
|
457
|
+
});
|
|
458
|
+
```
|
|
459
|
+
|
|
460
|
+
#### SourceMapGenerator.fromSourceMap(sourceMapConsumer)
|
|
461
|
+
|
|
462
|
+
Creates a new `SourceMapGenerator` from an existing `SourceMapConsumer` instance.
|
|
463
|
+
|
|
464
|
+
* `sourceMapConsumer` The SourceMap.
|
|
465
|
+
|
|
466
|
+
```js
|
|
467
|
+
var generator = sourceMap.SourceMapGenerator.fromSourceMap(consumer);
|
|
468
|
+
```
|
|
469
|
+
|
|
470
|
+
#### SourceMapGenerator.prototype.addMapping(mapping)
|
|
471
|
+
|
|
472
|
+
Add a single mapping from original source line and column to the generated
|
|
473
|
+
source's line and column for this source map being created. The mapping object
|
|
474
|
+
should have the following properties:
|
|
475
|
+
|
|
476
|
+
* `generated`: An object with the generated line and column positions.
|
|
477
|
+
|
|
478
|
+
* `original`: An object with the original line and column positions.
|
|
479
|
+
|
|
480
|
+
* `source`: The original source file (relative to the sourceRoot).
|
|
481
|
+
|
|
482
|
+
* `name`: An optional original token name for this mapping.
|
|
483
|
+
|
|
484
|
+
```js
|
|
485
|
+
generator.addMapping({
|
|
486
|
+
source: "module-one.scm",
|
|
487
|
+
original: { line: 128, column: 0 },
|
|
488
|
+
generated: { line: 3, column: 456 }
|
|
489
|
+
})
|
|
490
|
+
```
|
|
491
|
+
|
|
492
|
+
#### SourceMapGenerator.prototype.setSourceContent(sourceFile, sourceContent)
|
|
493
|
+
|
|
494
|
+
Set the source content for an original source file.
|
|
495
|
+
|
|
496
|
+
* `sourceFile` the URL of the original source file.
|
|
497
|
+
|
|
498
|
+
* `sourceContent` the content of the source file.
|
|
499
|
+
|
|
500
|
+
```js
|
|
501
|
+
generator.setSourceContent("module-one.scm",
|
|
502
|
+
fs.readFileSync("path/to/module-one.scm"))
|
|
503
|
+
```
|
|
504
|
+
|
|
505
|
+
#### SourceMapGenerator.prototype.applySourceMap(sourceMapConsumer[, sourceFile[, sourceMapPath]])
|
|
506
|
+
|
|
507
|
+
Applies a SourceMap for a source file to the SourceMap.
|
|
508
|
+
Each mapping to the supplied source file is rewritten using the
|
|
509
|
+
supplied SourceMap. Note: The resolution for the resulting mappings
|
|
510
|
+
is the minimum of this map and the supplied map.
|
|
511
|
+
|
|
512
|
+
* `sourceMapConsumer`: The SourceMap to be applied.
|
|
513
|
+
|
|
514
|
+
* `sourceFile`: Optional. The filename of the source file.
|
|
515
|
+
If omitted, sourceMapConsumer.file will be used, if it exists.
|
|
516
|
+
Otherwise an error will be thrown.
|
|
517
|
+
|
|
518
|
+
* `sourceMapPath`: Optional. The dirname of the path to the SourceMap
|
|
519
|
+
to be applied. If relative, it is relative to the SourceMap.
|
|
520
|
+
|
|
521
|
+
This parameter is needed when the two SourceMaps aren't in the same
|
|
522
|
+
directory, and the SourceMap to be applied contains relative source
|
|
523
|
+
paths. If so, those relative source paths need to be rewritten
|
|
524
|
+
relative to the SourceMap.
|
|
525
|
+
|
|
526
|
+
If omitted, it is assumed that both SourceMaps are in the same directory,
|
|
527
|
+
thus not needing any rewriting. (Supplying `'.'` has the same effect.)
|
|
528
|
+
|
|
529
|
+
#### SourceMapGenerator.prototype.toString()
|
|
530
|
+
|
|
531
|
+
Renders the source map being generated to a string.
|
|
532
|
+
|
|
533
|
+
```js
|
|
534
|
+
generator.toString()
|
|
535
|
+
// '{"version":3,"sources":["module-one.scm"],"names":[],"mappings":"...snip...","file":"my-generated-javascript-file.js","sourceRoot":"http://example.com/app/js/"}'
|
|
536
|
+
```
|
|
537
|
+
|
|
538
|
+
### SourceNode
|
|
539
|
+
|
|
540
|
+
SourceNodes provide a way to abstract over interpolating and/or concatenating
|
|
541
|
+
snippets of generated JavaScript source code, while maintaining the line and
|
|
542
|
+
column information associated between those snippets and the original source
|
|
543
|
+
code. This is useful as the final intermediate representation a compiler might
|
|
544
|
+
use before outputting the generated JS and source map.
|
|
545
|
+
|
|
546
|
+
#### new SourceNode([line, column, source[, chunk[, name]]])
|
|
547
|
+
|
|
548
|
+
* `line`: The original line number associated with this source node, or null if
|
|
549
|
+
it isn't associated with an original line. The line number is 1-based.
|
|
550
|
+
|
|
551
|
+
* `column`: The original column number associated with this source node, or null
|
|
552
|
+
if it isn't associated with an original column. The column number
|
|
553
|
+
is 0-based.
|
|
554
|
+
|
|
555
|
+
* `source`: The original source's filename; null if no filename is provided.
|
|
556
|
+
|
|
557
|
+
* `chunk`: Optional. Is immediately passed to `SourceNode.prototype.add`, see
|
|
558
|
+
below.
|
|
559
|
+
|
|
560
|
+
* `name`: Optional. The original identifier.
|
|
561
|
+
|
|
562
|
+
```js
|
|
563
|
+
var node = new SourceNode(1, 2, "a.cpp", [
|
|
564
|
+
new SourceNode(3, 4, "b.cpp", "extern int status;\n"),
|
|
565
|
+
new SourceNode(5, 6, "c.cpp", "std::string* make_string(size_t n);\n"),
|
|
566
|
+
new SourceNode(7, 8, "d.cpp", "int main(int argc, char** argv) {}\n"),
|
|
567
|
+
]);
|
|
568
|
+
```
|
|
569
|
+
|
|
570
|
+
#### SourceNode.fromStringWithSourceMap(code, sourceMapConsumer[, relativePath])
|
|
571
|
+
|
|
572
|
+
Creates a SourceNode from generated code and a SourceMapConsumer.
|
|
573
|
+
|
|
574
|
+
* `code`: The generated code
|
|
575
|
+
|
|
576
|
+
* `sourceMapConsumer` The SourceMap for the generated code
|
|
577
|
+
|
|
578
|
+
* `relativePath` The optional path that relative sources in `sourceMapConsumer`
|
|
579
|
+
should be relative to.
|
|
580
|
+
|
|
581
|
+
```js
|
|
582
|
+
var consumer = new SourceMapConsumer(fs.readFileSync("path/to/my-file.js.map", "utf8"));
|
|
583
|
+
var node = SourceNode.fromStringWithSourceMap(fs.readFileSync("path/to/my-file.js"),
|
|
584
|
+
consumer);
|
|
585
|
+
```
|
|
586
|
+
|
|
587
|
+
#### SourceNode.prototype.add(chunk)
|
|
588
|
+
|
|
589
|
+
Add a chunk of generated JS to this source node.
|
|
590
|
+
|
|
591
|
+
* `chunk`: A string snippet of generated JS code, another instance of
|
|
592
|
+
`SourceNode`, or an array where each member is one of those things.
|
|
593
|
+
|
|
594
|
+
```js
|
|
595
|
+
node.add(" + ");
|
|
596
|
+
node.add(otherNode);
|
|
597
|
+
node.add([leftHandOperandNode, " + ", rightHandOperandNode]);
|
|
598
|
+
```
|
|
599
|
+
|
|
600
|
+
#### SourceNode.prototype.prepend(chunk)
|
|
601
|
+
|
|
602
|
+
Prepend a chunk of generated JS to this source node.
|
|
603
|
+
|
|
604
|
+
* `chunk`: A string snippet of generated JS code, another instance of
|
|
605
|
+
`SourceNode`, or an array where each member is one of those things.
|
|
606
|
+
|
|
607
|
+
```js
|
|
608
|
+
node.prepend("/** Build Id: f783haef86324gf **/\n\n");
|
|
609
|
+
```
|
|
610
|
+
|
|
611
|
+
#### SourceNode.prototype.setSourceContent(sourceFile, sourceContent)
|
|
612
|
+
|
|
613
|
+
Set the source content for a source file. This will be added to the
|
|
614
|
+
`SourceMap` in the `sourcesContent` field.
|
|
615
|
+
|
|
616
|
+
* `sourceFile`: The filename of the source file
|
|
617
|
+
|
|
618
|
+
* `sourceContent`: The content of the source file
|
|
619
|
+
|
|
620
|
+
```js
|
|
621
|
+
node.setSourceContent("module-one.scm",
|
|
622
|
+
fs.readFileSync("path/to/module-one.scm"))
|
|
623
|
+
```
|
|
624
|
+
|
|
625
|
+
#### SourceNode.prototype.walk(fn)
|
|
626
|
+
|
|
627
|
+
Walk over the tree of JS snippets in this node and its children. The walking
|
|
628
|
+
function is called once for each snippet of JS and is passed that snippet and
|
|
629
|
+
the its original associated source's line/column location.
|
|
630
|
+
|
|
631
|
+
* `fn`: The traversal function.
|
|
632
|
+
|
|
633
|
+
```js
|
|
634
|
+
var node = new SourceNode(1, 2, "a.js", [
|
|
635
|
+
new SourceNode(3, 4, "b.js", "uno"),
|
|
636
|
+
"dos",
|
|
637
|
+
[
|
|
638
|
+
"tres",
|
|
639
|
+
new SourceNode(5, 6, "c.js", "quatro")
|
|
640
|
+
]
|
|
641
|
+
]);
|
|
642
|
+
|
|
643
|
+
node.walk(function (code, loc) { console.log("WALK:", code, loc); })
|
|
644
|
+
// WALK: uno { source: 'b.js', line: 3, column: 4, name: null }
|
|
645
|
+
// WALK: dos { source: 'a.js', line: 1, column: 2, name: null }
|
|
646
|
+
// WALK: tres { source: 'a.js', line: 1, column: 2, name: null }
|
|
647
|
+
// WALK: quatro { source: 'c.js', line: 5, column: 6, name: null }
|
|
648
|
+
```
|
|
649
|
+
|
|
650
|
+
#### SourceNode.prototype.walkSourceContents(fn)
|
|
651
|
+
|
|
652
|
+
Walk over the tree of SourceNodes. The walking function is called for each
|
|
653
|
+
source file content and is passed the filename and source content.
|
|
654
|
+
|
|
655
|
+
* `fn`: The traversal function.
|
|
656
|
+
|
|
657
|
+
```js
|
|
658
|
+
var a = new SourceNode(1, 2, "a.js", "generated from a");
|
|
659
|
+
a.setSourceContent("a.js", "original a");
|
|
660
|
+
var b = new SourceNode(1, 2, "b.js", "generated from b");
|
|
661
|
+
b.setSourceContent("b.js", "original b");
|
|
662
|
+
var c = new SourceNode(1, 2, "c.js", "generated from c");
|
|
663
|
+
c.setSourceContent("c.js", "original c");
|
|
664
|
+
|
|
665
|
+
var node = new SourceNode(null, null, null, [a, b, c]);
|
|
666
|
+
node.walkSourceContents(function (source, contents) { console.log("WALK:", source, ":", contents); })
|
|
667
|
+
// WALK: a.js : original a
|
|
668
|
+
// WALK: b.js : original b
|
|
669
|
+
// WALK: c.js : original c
|
|
670
|
+
```
|
|
671
|
+
|
|
672
|
+
#### SourceNode.prototype.join(sep)
|
|
673
|
+
|
|
674
|
+
Like `Array.prototype.join` except for SourceNodes. Inserts the separator
|
|
675
|
+
between each of this source node's children.
|
|
676
|
+
|
|
677
|
+
* `sep`: The separator.
|
|
678
|
+
|
|
679
|
+
```js
|
|
680
|
+
var lhs = new SourceNode(1, 2, "a.rs", "my_copy");
|
|
681
|
+
var operand = new SourceNode(3, 4, "a.rs", "=");
|
|
682
|
+
var rhs = new SourceNode(5, 6, "a.rs", "orig.clone()");
|
|
683
|
+
|
|
684
|
+
var node = new SourceNode(null, null, null, [ lhs, operand, rhs ]);
|
|
685
|
+
var joinedNode = node.join(" ");
|
|
686
|
+
```
|
|
687
|
+
|
|
688
|
+
#### SourceNode.prototype.replaceRight(pattern, replacement)
|
|
689
|
+
|
|
690
|
+
Call `String.prototype.replace` on the very right-most source snippet. Useful
|
|
691
|
+
for trimming white space from the end of a source node, etc.
|
|
692
|
+
|
|
693
|
+
* `pattern`: The pattern to replace.
|
|
694
|
+
|
|
695
|
+
* `replacement`: The thing to replace the pattern with.
|
|
696
|
+
|
|
697
|
+
```js
|
|
698
|
+
// Trim trailing white space.
|
|
699
|
+
node.replaceRight(/\s*$/, "");
|
|
700
|
+
```
|
|
701
|
+
|
|
702
|
+
#### SourceNode.prototype.toString()
|
|
703
|
+
|
|
704
|
+
Return the string representation of this source node. Walks over the tree and
|
|
705
|
+
concatenates all the various snippets together to one string.
|
|
706
|
+
|
|
707
|
+
```js
|
|
708
|
+
var node = new SourceNode(1, 2, "a.js", [
|
|
709
|
+
new SourceNode(3, 4, "b.js", "uno"),
|
|
710
|
+
"dos",
|
|
711
|
+
[
|
|
712
|
+
"tres",
|
|
713
|
+
new SourceNode(5, 6, "c.js", "quatro")
|
|
714
|
+
]
|
|
715
|
+
]);
|
|
716
|
+
|
|
717
|
+
node.toString()
|
|
718
|
+
// 'unodostresquatro'
|
|
719
|
+
```
|
|
720
|
+
|
|
721
|
+
#### SourceNode.prototype.toStringWithSourceMap([startOfSourceMap])
|
|
722
|
+
|
|
723
|
+
Returns the string representation of this tree of source nodes, plus a
|
|
724
|
+
SourceMapGenerator which contains all the mappings between the generated and
|
|
725
|
+
original sources.
|
|
726
|
+
|
|
727
|
+
The arguments are the same as those to `new SourceMapGenerator`.
|
|
728
|
+
|
|
729
|
+
```js
|
|
730
|
+
var node = new SourceNode(1, 2, "a.js", [
|
|
731
|
+
new SourceNode(3, 4, "b.js", "uno"),
|
|
732
|
+
"dos",
|
|
733
|
+
[
|
|
734
|
+
"tres",
|
|
735
|
+
new SourceNode(5, 6, "c.js", "quatro")
|
|
736
|
+
]
|
|
737
|
+
]);
|
|
738
|
+
|
|
739
|
+
node.toStringWithSourceMap({ file: "my-output-file.js" })
|
|
740
|
+
// { code: 'unodostresquatro',
|
|
741
|
+
// map: [object SourceMapGenerator] }
|
|
742
|
+
```
|