unprint 0.0.0 → 0.2.1
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/.editorconfig +14 -0
- package/.eslintrc +20 -0
- package/README.md +73 -0
- package/package.json +9 -3
- package/src/app.js +374 -1
- package/tests/data.json +5 -0
- package/tests/index.html +22 -0
- package/tests/init.js +60 -0
- package/tests/node_modules/.package-lock.json +1479 -0
- package/tests/node_modules/@tootallnate/once/dist/index.d.ts +14 -0
- package/tests/node_modules/@tootallnate/once/dist/index.js +39 -0
- package/tests/node_modules/@tootallnate/once/dist/index.js.map +1 -0
- package/tests/node_modules/@tootallnate/once/package.json +45 -0
- package/tests/node_modules/abab/LICENSE.md +13 -0
- package/tests/node_modules/abab/README.md +51 -0
- package/tests/node_modules/abab/index.d.ts +2 -0
- package/tests/node_modules/abab/index.js +9 -0
- package/tests/node_modules/abab/lib/atob.js +101 -0
- package/tests/node_modules/abab/lib/btoa.js +62 -0
- package/tests/node_modules/abab/package.json +42 -0
- package/tests/node_modules/accepts/HISTORY.md +243 -0
- package/tests/node_modules/accepts/LICENSE +23 -0
- package/tests/node_modules/accepts/README.md +140 -0
- package/tests/node_modules/accepts/index.js +238 -0
- package/tests/node_modules/accepts/package.json +47 -0
- package/tests/node_modules/acorn/CHANGELOG.md +798 -0
- package/tests/node_modules/acorn/LICENSE +21 -0
- package/tests/node_modules/acorn/README.md +273 -0
- package/tests/node_modules/acorn/bin/acorn +4 -0
- package/tests/node_modules/acorn/dist/acorn.d.ts +252 -0
- package/tests/node_modules/acorn/dist/acorn.js +5608 -0
- package/tests/node_modules/acorn/dist/acorn.mjs +5577 -0
- package/tests/node_modules/acorn/dist/acorn.mjs.d.ts +2 -0
- package/tests/node_modules/acorn/dist/bin.js +91 -0
- package/tests/node_modules/acorn/package.json +50 -0
- package/tests/node_modules/acorn-globals/LICENSE +19 -0
- package/tests/node_modules/acorn-globals/README.md +81 -0
- package/tests/node_modules/acorn-globals/index.js +179 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/CHANGELOG.md +620 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/LICENSE +21 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/README.md +269 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/bin/acorn +4 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.d.ts +209 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.js +5186 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.js.map +1 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs +5155 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs.d.ts +2 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs.map +1 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/bin.js +64 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/package.json +35 -0
- package/tests/node_modules/acorn-globals/package.json +35 -0
- package/tests/node_modules/acorn-walk/CHANGELOG.md +131 -0
- package/tests/node_modules/acorn-walk/LICENSE +19 -0
- package/tests/node_modules/acorn-walk/README.md +126 -0
- package/tests/node_modules/acorn-walk/dist/walk.d.ts +112 -0
- package/tests/node_modules/acorn-walk/dist/walk.js +463 -0
- package/tests/node_modules/acorn-walk/dist/walk.js.map +1 -0
- package/tests/node_modules/acorn-walk/dist/walk.mjs +443 -0
- package/tests/node_modules/acorn-walk/dist/walk.mjs.map +1 -0
- package/tests/node_modules/acorn-walk/package.json +34 -0
- package/tests/node_modules/agent-base/README.md +145 -0
- package/tests/node_modules/agent-base/dist/src/index.d.ts +78 -0
- package/tests/node_modules/agent-base/dist/src/index.js +203 -0
- package/tests/node_modules/agent-base/dist/src/index.js.map +1 -0
- package/tests/node_modules/agent-base/dist/src/promisify.d.ts +4 -0
- package/tests/node_modules/agent-base/dist/src/promisify.js +18 -0
- package/tests/node_modules/agent-base/dist/src/promisify.js.map +1 -0
- package/tests/node_modules/agent-base/node_modules/debug/LICENSE +20 -0
- package/tests/node_modules/agent-base/node_modules/debug/README.md +481 -0
- package/tests/node_modules/agent-base/node_modules/debug/package.json +59 -0
- package/tests/node_modules/agent-base/node_modules/debug/src/browser.js +269 -0
- package/tests/node_modules/agent-base/node_modules/debug/src/common.js +274 -0
- package/tests/node_modules/agent-base/node_modules/debug/src/index.js +10 -0
- package/tests/node_modules/agent-base/node_modules/debug/src/node.js +263 -0
- package/tests/node_modules/agent-base/node_modules/ms/index.js +162 -0
- package/tests/node_modules/agent-base/node_modules/ms/license.md +21 -0
- package/tests/node_modules/agent-base/node_modules/ms/package.json +37 -0
- package/tests/node_modules/agent-base/node_modules/ms/readme.md +60 -0
- package/tests/node_modules/agent-base/package.json +64 -0
- package/tests/node_modules/agent-base/src/index.ts +345 -0
- package/tests/node_modules/agent-base/src/promisify.ts +33 -0
- package/tests/node_modules/array-flatten/LICENSE +21 -0
- package/tests/node_modules/array-flatten/README.md +43 -0
- package/tests/node_modules/array-flatten/array-flatten.js +64 -0
- package/tests/node_modules/array-flatten/package.json +39 -0
- package/tests/node_modules/asynckit/LICENSE +21 -0
- package/tests/node_modules/asynckit/README.md +233 -0
- package/tests/node_modules/asynckit/bench.js +76 -0
- package/tests/node_modules/asynckit/index.js +6 -0
- package/tests/node_modules/asynckit/lib/abort.js +29 -0
- package/tests/node_modules/asynckit/lib/async.js +34 -0
- package/tests/node_modules/asynckit/lib/defer.js +26 -0
- package/tests/node_modules/asynckit/lib/iterate.js +75 -0
- package/tests/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/tests/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/tests/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/tests/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/tests/node_modules/asynckit/lib/state.js +37 -0
- package/tests/node_modules/asynckit/lib/streamify.js +141 -0
- package/tests/node_modules/asynckit/lib/terminator.js +29 -0
- package/tests/node_modules/asynckit/package.json +63 -0
- package/tests/node_modules/asynckit/parallel.js +43 -0
- package/tests/node_modules/asynckit/serial.js +17 -0
- package/tests/node_modules/asynckit/serialOrdered.js +75 -0
- package/tests/node_modules/asynckit/stream.js +21 -0
- package/tests/node_modules/bhttp/.babelrc.json +5 -0
- package/tests/node_modules/bhttp/.browserslistrc +1 -0
- package/tests/node_modules/bhttp/.eslintrc +3 -0
- package/tests/node_modules/bhttp/CHANGELOG.md +80 -0
- package/tests/node_modules/bhttp/README.md +320 -0
- package/tests/node_modules/bhttp/index.js +3 -0
- package/tests/node_modules/bhttp/lib/bhttp.js +977 -0
- package/tests/node_modules/bhttp/lower.txt +296802 -0
- package/tests/node_modules/bhttp/package.json +48 -0
- package/tests/node_modules/bhttp/src/bhttp.js +787 -0
- package/tests/node_modules/bhttp/test/test-bhttp.coffee +148 -0
- package/tests/node_modules/bhttp/test/test-cookies.coffee +27 -0
- package/tests/node_modules/bhttp/test/test-exit.coffee +14 -0
- package/tests/node_modules/bhttp/test/test-exit2.js +36 -0
- package/tests/node_modules/bhttp/test/test-https-stream.coffee +7 -0
- package/tests/node_modules/bhttp/test/test-leak.coffee +5 -0
- package/tests/node_modules/bhttp/test/test-progress.coffee +38 -0
- package/tests/node_modules/bhttp/test/test-timeout.coffee +6 -0
- package/tests/node_modules/bhttp/test/testcase1.js +13 -0
- package/tests/node_modules/bluebird/LICENSE +21 -0
- package/tests/node_modules/bluebird/README.md +677 -0
- package/tests/node_modules/bluebird/changelog.md +1730 -0
- package/tests/node_modules/bluebird/js/browser/bluebird.js +4892 -0
- package/tests/node_modules/bluebird/js/browser/bluebird.min.js +31 -0
- package/tests/node_modules/bluebird/js/main/any.js +21 -0
- package/tests/node_modules/bluebird/js/main/assert.js +55 -0
- package/tests/node_modules/bluebird/js/main/async.js +150 -0
- package/tests/node_modules/bluebird/js/main/bind.js +72 -0
- package/tests/node_modules/bluebird/js/main/bluebird.js +11 -0
- package/tests/node_modules/bluebird/js/main/call_get.js +123 -0
- package/tests/node_modules/bluebird/js/main/cancel.js +48 -0
- package/tests/node_modules/bluebird/js/main/captured_trace.js +493 -0
- package/tests/node_modules/bluebird/js/main/catch_filter.js +66 -0
- package/tests/node_modules/bluebird/js/main/context.js +38 -0
- package/tests/node_modules/bluebird/js/main/debuggability.js +162 -0
- package/tests/node_modules/bluebird/js/main/direct_resolve.js +63 -0
- package/tests/node_modules/bluebird/js/main/each.js +12 -0
- package/tests/node_modules/bluebird/js/main/errors.js +111 -0
- package/tests/node_modules/bluebird/js/main/es5.js +80 -0
- package/tests/node_modules/bluebird/js/main/filter.js +12 -0
- package/tests/node_modules/bluebird/js/main/finally.js +98 -0
- package/tests/node_modules/bluebird/js/main/generators.js +136 -0
- package/tests/node_modules/bluebird/js/main/join.js +107 -0
- package/tests/node_modules/bluebird/js/main/map.js +133 -0
- package/tests/node_modules/bluebird/js/main/method.js +44 -0
- package/tests/node_modules/bluebird/js/main/nodeify.js +59 -0
- package/tests/node_modules/bluebird/js/main/progress.js +76 -0
- package/tests/node_modules/bluebird/js/main/promise.js +759 -0
- package/tests/node_modules/bluebird/js/main/promise_array.js +142 -0
- package/tests/node_modules/bluebird/js/main/promise_resolver.js +123 -0
- package/tests/node_modules/bluebird/js/main/promisify.js +307 -0
- package/tests/node_modules/bluebird/js/main/props.js +79 -0
- package/tests/node_modules/bluebird/js/main/queue.js +90 -0
- package/tests/node_modules/bluebird/js/main/race.js +47 -0
- package/tests/node_modules/bluebird/js/main/reduce.js +148 -0
- package/tests/node_modules/bluebird/js/main/schedule.js +35 -0
- package/tests/node_modules/bluebird/js/main/settle.js +40 -0
- package/tests/node_modules/bluebird/js/main/some.js +125 -0
- package/tests/node_modules/bluebird/js/main/synchronous_inspection.js +94 -0
- package/tests/node_modules/bluebird/js/main/thenables.js +84 -0
- package/tests/node_modules/bluebird/js/main/timers.js +64 -0
- package/tests/node_modules/bluebird/js/main/using.js +213 -0
- package/tests/node_modules/bluebird/js/main/util.js +321 -0
- package/tests/node_modules/bluebird/package.json +78 -0
- package/tests/node_modules/body-parser/HISTORY.md +651 -0
- package/tests/node_modules/body-parser/LICENSE +23 -0
- package/tests/node_modules/body-parser/README.md +464 -0
- package/tests/node_modules/body-parser/SECURITY.md +25 -0
- package/tests/node_modules/body-parser/index.js +157 -0
- package/tests/node_modules/body-parser/lib/read.js +205 -0
- package/tests/node_modules/body-parser/lib/types/json.js +236 -0
- package/tests/node_modules/body-parser/lib/types/raw.js +101 -0
- package/tests/node_modules/body-parser/lib/types/text.js +121 -0
- package/tests/node_modules/body-parser/lib/types/urlencoded.js +284 -0
- package/tests/node_modules/body-parser/package.json +56 -0
- package/tests/node_modules/browser-process-hrtime/LICENSE +9 -0
- package/tests/node_modules/browser-process-hrtime/README.md +27 -0
- package/tests/node_modules/browser-process-hrtime/index.d.ts +4 -0
- package/tests/node_modules/browser-process-hrtime/index.js +28 -0
- package/tests/node_modules/browser-process-hrtime/package.json +15 -0
- package/tests/node_modules/buffer-from/LICENSE +21 -0
- package/tests/node_modules/buffer-from/index.js +72 -0
- package/tests/node_modules/buffer-from/package.json +19 -0
- package/tests/node_modules/buffer-from/readme.md +69 -0
- package/tests/node_modules/bytes/History.md +97 -0
- package/tests/node_modules/bytes/LICENSE +23 -0
- package/tests/node_modules/bytes/Readme.md +152 -0
- package/tests/node_modules/bytes/index.js +170 -0
- package/tests/node_modules/bytes/package.json +42 -0
- package/tests/node_modules/call-bind/.eslintignore +1 -0
- package/tests/node_modules/call-bind/.eslintrc +17 -0
- package/tests/node_modules/call-bind/.github/FUNDING.yml +12 -0
- package/tests/node_modules/call-bind/.nycrc +13 -0
- package/tests/node_modules/call-bind/CHANGELOG.md +42 -0
- package/tests/node_modules/call-bind/LICENSE +21 -0
- package/tests/node_modules/call-bind/README.md +2 -0
- package/tests/node_modules/call-bind/callBound.js +15 -0
- package/tests/node_modules/call-bind/index.js +47 -0
- package/tests/node_modules/call-bind/package.json +80 -0
- package/tests/node_modules/call-bind/test/callBound.js +55 -0
- package/tests/node_modules/call-bind/test/index.js +66 -0
- package/tests/node_modules/combined-stream/License +19 -0
- package/tests/node_modules/combined-stream/Readme.md +138 -0
- package/tests/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/tests/node_modules/combined-stream/package.json +25 -0
- package/tests/node_modules/combined-stream/yarn.lock +17 -0
- package/tests/node_modules/combined-stream2/README.md +129 -0
- package/tests/node_modules/combined-stream2/gulpfile.js +28 -0
- package/tests/node_modules/combined-stream2/index.coffee +1 -0
- package/tests/node_modules/combined-stream2/index.js +1 -0
- package/tests/node_modules/combined-stream2/lib/combined-stream2.coffee +197 -0
- package/tests/node_modules/combined-stream2/lib/combined-stream2.js +267 -0
- package/tests/node_modules/combined-stream2/package.json +40 -0
- package/tests/node_modules/combined-stream2/test.coffee +9 -0
- package/tests/node_modules/combined-stream2/testcase-request.coffee +8 -0
- package/tests/node_modules/concat-stream/LICENSE +24 -0
- package/tests/node_modules/concat-stream/index.js +144 -0
- package/tests/node_modules/concat-stream/package.json +55 -0
- package/tests/node_modules/concat-stream/readme.md +102 -0
- package/tests/node_modules/content-disposition/HISTORY.md +60 -0
- package/tests/node_modules/content-disposition/LICENSE +22 -0
- package/tests/node_modules/content-disposition/README.md +142 -0
- package/tests/node_modules/content-disposition/index.js +458 -0
- package/tests/node_modules/content-disposition/node_modules/safe-buffer/LICENSE +21 -0
- package/tests/node_modules/content-disposition/node_modules/safe-buffer/README.md +584 -0
- package/tests/node_modules/content-disposition/node_modules/safe-buffer/index.d.ts +187 -0
- package/tests/node_modules/content-disposition/node_modules/safe-buffer/index.js +65 -0
- package/tests/node_modules/content-disposition/node_modules/safe-buffer/package.json +51 -0
- package/tests/node_modules/content-disposition/package.json +44 -0
- package/tests/node_modules/content-type/HISTORY.md +24 -0
- package/tests/node_modules/content-type/LICENSE +22 -0
- package/tests/node_modules/content-type/README.md +92 -0
- package/tests/node_modules/content-type/index.js +222 -0
- package/tests/node_modules/content-type/package.json +40 -0
- package/tests/node_modules/cookie/HISTORY.md +142 -0
- package/tests/node_modules/cookie/LICENSE +24 -0
- package/tests/node_modules/cookie/README.md +302 -0
- package/tests/node_modules/cookie/SECURITY.md +25 -0
- package/tests/node_modules/cookie/index.js +270 -0
- package/tests/node_modules/cookie/package.json +44 -0
- package/tests/node_modules/cookie-signature/History.md +38 -0
- package/tests/node_modules/cookie-signature/Readme.md +42 -0
- package/tests/node_modules/cookie-signature/index.js +51 -0
- package/tests/node_modules/cookie-signature/package.json +18 -0
- package/tests/node_modules/core-util-is/LICENSE +19 -0
- package/tests/node_modules/core-util-is/README.md +3 -0
- package/tests/node_modules/core-util-is/lib/util.js +107 -0
- package/tests/node_modules/core-util-is/package.json +38 -0
- package/tests/node_modules/cssom/LICENSE.txt +20 -0
- package/tests/node_modules/cssom/README.mdown +67 -0
- package/tests/node_modules/cssom/lib/CSSConditionRule.js +25 -0
- package/tests/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
- package/tests/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
- package/tests/node_modules/cssom/lib/CSSGroupingRule.js +68 -0
- package/tests/node_modules/cssom/lib/CSSHostRule.js +37 -0
- package/tests/node_modules/cssom/lib/CSSImportRule.js +132 -0
- package/tests/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
- package/tests/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
- package/tests/node_modules/cssom/lib/CSSMediaRule.js +53 -0
- package/tests/node_modules/cssom/lib/CSSOM.js +3 -0
- package/tests/node_modules/cssom/lib/CSSRule.js +43 -0
- package/tests/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
- package/tests/node_modules/cssom/lib/CSSStyleRule.js +190 -0
- package/tests/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
- package/tests/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
- package/tests/node_modules/cssom/lib/CSSValue.js +43 -0
- package/tests/node_modules/cssom/lib/CSSValueExpression.js +344 -0
- package/tests/node_modules/cssom/lib/MatcherList.js +62 -0
- package/tests/node_modules/cssom/lib/MediaList.js +61 -0
- package/tests/node_modules/cssom/lib/StyleSheet.js +17 -0
- package/tests/node_modules/cssom/lib/clone.js +74 -0
- package/tests/node_modules/cssom/lib/index.js +23 -0
- package/tests/node_modules/cssom/lib/parse.js +465 -0
- package/tests/node_modules/cssom/package.json +18 -0
- package/tests/node_modules/cssstyle/LICENSE +20 -0
- package/tests/node_modules/cssstyle/README.md +15 -0
- package/tests/node_modules/cssstyle/lib/CSSStyleDeclaration.js +260 -0
- package/tests/node_modules/cssstyle/lib/CSSStyleDeclaration.test.js +556 -0
- package/tests/node_modules/cssstyle/lib/allExtraProperties.js +67 -0
- package/tests/node_modules/cssstyle/lib/allProperties.js +462 -0
- package/tests/node_modules/cssstyle/lib/allWebkitProperties.js +194 -0
- package/tests/node_modules/cssstyle/lib/constants.js +6 -0
- package/tests/node_modules/cssstyle/lib/implementedProperties.js +90 -0
- package/tests/node_modules/cssstyle/lib/named_colors.json +152 -0
- package/tests/node_modules/cssstyle/lib/parsers.js +722 -0
- package/tests/node_modules/cssstyle/lib/parsers.test.js +139 -0
- package/tests/node_modules/cssstyle/lib/properties/azimuth.js +67 -0
- package/tests/node_modules/cssstyle/lib/properties/background.js +19 -0
- package/tests/node_modules/cssstyle/lib/properties/backgroundAttachment.js +24 -0
- package/tests/node_modules/cssstyle/lib/properties/backgroundColor.js +36 -0
- package/tests/node_modules/cssstyle/lib/properties/backgroundImage.js +32 -0
- package/tests/node_modules/cssstyle/lib/properties/backgroundPosition.js +58 -0
- package/tests/node_modules/cssstyle/lib/properties/backgroundRepeat.js +32 -0
- package/tests/node_modules/cssstyle/lib/properties/border.js +33 -0
- package/tests/node_modules/cssstyle/lib/properties/borderBottom.js +17 -0
- package/tests/node_modules/cssstyle/lib/properties/borderBottomColor.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderBottomStyle.js +21 -0
- package/tests/node_modules/cssstyle/lib/properties/borderBottomWidth.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderCollapse.js +26 -0
- package/tests/node_modules/cssstyle/lib/properties/borderColor.js +30 -0
- package/tests/node_modules/cssstyle/lib/properties/borderLeft.js +17 -0
- package/tests/node_modules/cssstyle/lib/properties/borderLeftColor.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderLeftStyle.js +21 -0
- package/tests/node_modules/cssstyle/lib/properties/borderLeftWidth.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderRight.js +17 -0
- package/tests/node_modules/cssstyle/lib/properties/borderRightColor.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderRightStyle.js +21 -0
- package/tests/node_modules/cssstyle/lib/properties/borderRightWidth.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderSpacing.js +41 -0
- package/tests/node_modules/cssstyle/lib/properties/borderStyle.js +38 -0
- package/tests/node_modules/cssstyle/lib/properties/borderTop.js +17 -0
- package/tests/node_modules/cssstyle/lib/properties/borderTopColor.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderTopStyle.js +21 -0
- package/tests/node_modules/cssstyle/lib/properties/borderTopWidth.js +17 -0
- package/tests/node_modules/cssstyle/lib/properties/borderWidth.js +46 -0
- package/tests/node_modules/cssstyle/lib/properties/bottom.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/clear.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/clip.js +47 -0
- package/tests/node_modules/cssstyle/lib/properties/color.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/cssFloat.js +12 -0
- package/tests/node_modules/cssstyle/lib/properties/flex.js +45 -0
- package/tests/node_modules/cssstyle/lib/properties/flexBasis.js +28 -0
- package/tests/node_modules/cssstyle/lib/properties/flexGrow.js +19 -0
- package/tests/node_modules/cssstyle/lib/properties/flexShrink.js +19 -0
- package/tests/node_modules/cssstyle/lib/properties/float.js +12 -0
- package/tests/node_modules/cssstyle/lib/properties/floodColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/font.js +43 -0
- package/tests/node_modules/cssstyle/lib/properties/fontFamily.js +33 -0
- package/tests/node_modules/cssstyle/lib/properties/fontSize.js +38 -0
- package/tests/node_modules/cssstyle/lib/properties/fontStyle.js +18 -0
- package/tests/node_modules/cssstyle/lib/properties/fontVariant.js +18 -0
- package/tests/node_modules/cssstyle/lib/properties/fontWeight.js +33 -0
- package/tests/node_modules/cssstyle/lib/properties/height.js +24 -0
- package/tests/node_modules/cssstyle/lib/properties/left.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/lightingColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/lineHeight.js +26 -0
- package/tests/node_modules/cssstyle/lib/properties/margin.js +68 -0
- package/tests/node_modules/cssstyle/lib/properties/marginBottom.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/marginLeft.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/marginRight.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/marginTop.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/opacity.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/outlineColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/padding.js +61 -0
- package/tests/node_modules/cssstyle/lib/properties/paddingBottom.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/paddingLeft.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/paddingRight.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/paddingTop.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/right.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/stopColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/textLineThroughColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/textOverlineColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/textUnderlineColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/top.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitBorderAfterColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitBorderBeforeColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitBorderEndColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitBorderStartColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitColumnRuleColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitMatchNearestMailBlockquoteColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitTapHighlightColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitTextEmphasisColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitTextFillColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitTextStrokeColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/width.js +24 -0
- package/tests/node_modules/cssstyle/lib/properties.js +1833 -0
- package/tests/node_modules/cssstyle/lib/utils/colorSpace.js +21 -0
- package/tests/node_modules/cssstyle/lib/utils/getBasicPropertyDescriptor.js +14 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/LICENSE.txt +20 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/README.mdown +67 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSHostRule.js +37 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSImportRule.js +132 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSMediaRule.js +41 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSOM.js +3 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSRule.js +43 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSStyleRule.js +190 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSValue.js +43 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSValueExpression.js +344 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/MatcherList.js +62 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/MediaList.js +61 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/StyleSheet.js +17 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/clone.js +82 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/index.js +21 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/parse.js +464 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/package.json +18 -0
- package/tests/node_modules/cssstyle/package.json +72 -0
- package/tests/node_modules/data-urls/LICENSE.txt +7 -0
- package/tests/node_modules/data-urls/README.md +62 -0
- package/tests/node_modules/data-urls/lib/parser.js +69 -0
- package/tests/node_modules/data-urls/lib/utils.js +18 -0
- package/tests/node_modules/data-urls/node_modules/tr46/LICENSE.md +21 -0
- package/tests/node_modules/data-urls/node_modules/tr46/README.md +78 -0
- package/tests/node_modules/data-urls/node_modules/tr46/index.js +298 -0
- package/tests/node_modules/data-urls/node_modules/tr46/lib/mappingTable.json +1 -0
- package/tests/node_modules/data-urls/node_modules/tr46/lib/regexes.js +29 -0
- package/tests/node_modules/data-urls/node_modules/tr46/lib/statusMapping.js +11 -0
- package/tests/node_modules/data-urls/node_modules/tr46/package.json +47 -0
- package/tests/node_modules/data-urls/node_modules/webidl-conversions/LICENSE.md +12 -0
- package/tests/node_modules/data-urls/node_modules/webidl-conversions/README.md +99 -0
- package/tests/node_modules/data-urls/node_modules/webidl-conversions/lib/index.js +450 -0
- package/tests/node_modules/data-urls/node_modules/webidl-conversions/package.json +35 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/LICENSE.txt +7 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/README.md +101 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/mime-type-parameters.js +70 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/mime-type.js +127 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/parser.js +105 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/serializer.js +25 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/utils.js +60 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/package.json +47 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/LICENSE.txt +21 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/README.md +106 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/index.js +27 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/Function.js +42 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/URL-impl.js +209 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/URL.js +442 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/URLSearchParams-impl.js +130 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/URLSearchParams.js +472 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/VoidFunction.js +26 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/encoding.js +16 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/infra.js +26 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/percent-encoding.js +142 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/url-state-machine.js +1244 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/urlencoded.js +106 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/utils.js +190 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/package.json +58 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
- package/tests/node_modules/data-urls/package.json +54 -0
- package/tests/node_modules/dayjs/.editorconfig +6 -0
- package/tests/node_modules/dayjs/CHANGELOG.md +841 -0
- package/tests/node_modules/dayjs/LICENSE +21 -0
- package/tests/node_modules/dayjs/README.md +135 -0
- package/tests/node_modules/dayjs/dayjs.min.js +1 -0
- package/tests/node_modules/dayjs/esm/constant.js +25 -0
- package/tests/node_modules/dayjs/esm/index.d.ts +429 -0
- package/tests/node_modules/dayjs/esm/index.js +441 -0
- package/tests/node_modules/dayjs/esm/locale/af.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/am.js +40 -0
- package/tests/node_modules/dayjs/esm/locale/ar-dz.js +41 -0
- package/tests/node_modules/dayjs/esm/locale/ar-iq.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/ar-kw.js +41 -0
- package/tests/node_modules/dayjs/esm/locale/ar-ly.js +27 -0
- package/tests/node_modules/dayjs/esm/locale/ar-ma.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/ar-sa.js +41 -0
- package/tests/node_modules/dayjs/esm/locale/ar-tn.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/ar.js +74 -0
- package/tests/node_modules/dayjs/esm/locale/az.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/be.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/bg.js +55 -0
- package/tests/node_modules/dayjs/esm/locale/bi.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/bm.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/bn-bd.js +81 -0
- package/tests/node_modules/dayjs/esm/locale/bn.js +72 -0
- package/tests/node_modules/dayjs/esm/locale/bo.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/br.js +93 -0
- package/tests/node_modules/dayjs/esm/locale/bs.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/ca.js +44 -0
- package/tests/node_modules/dayjs/esm/locale/cs.js +120 -0
- package/tests/node_modules/dayjs/esm/locale/cv.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/cy.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/da.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/de-at.js +63 -0
- package/tests/node_modules/dayjs/esm/locale/de-ch.js +63 -0
- package/tests/node_modules/dayjs/esm/locale/de.js +64 -0
- package/tests/node_modules/dayjs/esm/locale/dv.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/el.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/en-au.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/en-ca.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/en-gb.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/en-ie.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/en-il.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/en-in.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/en-nz.js +41 -0
- package/tests/node_modules/dayjs/esm/locale/en-sg.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/en-tt.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/en.js +7 -0
- package/tests/node_modules/dayjs/esm/locale/eo.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/es-do.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/es-mx.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/es-pr.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/es-us.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/es.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/et.js +65 -0
- package/tests/node_modules/dayjs/esm/locale/eu.js +43 -0
- package/tests/node_modules/dayjs/esm/locale/fa.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/fi.js +88 -0
- package/tests/node_modules/dayjs/esm/locale/fo.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/fr-ca.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/fr-ch.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/fr.js +41 -0
- package/tests/node_modules/dayjs/esm/locale/fy.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ga.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/gd.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/gl.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/gom-latn.js +25 -0
- package/tests/node_modules/dayjs/esm/locale/gu.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/he.js +78 -0
- package/tests/node_modules/dayjs/esm/locale/hi.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/hr.js +53 -0
- package/tests/node_modules/dayjs/esm/locale/ht.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/hu.js +61 -0
- package/tests/node_modules/dayjs/esm/locale/hy-am.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/id.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/index.d.ts +11 -0
- package/tests/node_modules/dayjs/esm/locale/is.js +68 -0
- package/tests/node_modules/dayjs/esm/locale/it-ch.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/it.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ja.js +45 -0
- package/tests/node_modules/dayjs/esm/locale/jv.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ka.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/kk.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/km.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/kn.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/ko.js +45 -0
- package/tests/node_modules/dayjs/esm/locale/ku.js +77 -0
- package/tests/node_modules/dayjs/esm/locale/ky.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/lb.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/lo.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/lt.js +70 -0
- package/tests/node_modules/dayjs/esm/locale/lv.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/me.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/mi.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/mk.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ml.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/mn.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/mr.js +23 -0
- package/tests/node_modules/dayjs/esm/locale/ms-my.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ms.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/mt.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/my.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/nb.js +40 -0
- package/tests/node_modules/dayjs/esm/locale/ne.js +40 -0
- package/tests/node_modules/dayjs/esm/locale/nl-be.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/nl.js +40 -0
- package/tests/node_modules/dayjs/esm/locale/nn.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/oc-lnc.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/pa-in.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/pl.js +87 -0
- package/tests/node_modules/dayjs/esm/locale/pt-br.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/pt.js +40 -0
- package/tests/node_modules/dayjs/esm/locale/rn.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ro.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ru.js +99 -0
- package/tests/node_modules/dayjs/esm/locale/rw.js +35 -0
- package/tests/node_modules/dayjs/esm/locale/sd.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/se.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/si.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/sk.js +121 -0
- package/tests/node_modules/dayjs/esm/locale/sl.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/sq.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/sr-cyrl.js +74 -0
- package/tests/node_modules/dayjs/esm/locale/sr.js +74 -0
- package/tests/node_modules/dayjs/esm/locale/ss.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/sv-fi.js +46 -0
- package/tests/node_modules/dayjs/esm/locale/sv.js +44 -0
- package/tests/node_modules/dayjs/esm/locale/sw.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ta.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/te.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/tet.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/tg.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/th.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/tk.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/tl-ph.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/tlh.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/tr.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/types.d.ts +33 -0
- package/tests/node_modules/dayjs/esm/locale/tzl.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/tzm-latn.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/tzm.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ug-cn.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/uk.js +77 -0
- package/tests/node_modules/dayjs/esm/locale/ur.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/uz-latn.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/uz.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/vi.js +43 -0
- package/tests/node_modules/dayjs/esm/locale/x-pseudo.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/yo.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/zh-cn.js +67 -0
- package/tests/node_modules/dayjs/esm/locale/zh-hk.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/zh-tw.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/zh.js +67 -0
- package/tests/node_modules/dayjs/esm/plugin/advancedFormat/index.d.ts +4 -0
- package/tests/node_modules/dayjs/esm/plugin/advancedFormat/index.js +73 -0
- package/tests/node_modules/dayjs/esm/plugin/arraySupport/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/arraySupport/index.js +33 -0
- package/tests/node_modules/dayjs/esm/plugin/badMutable/index.d.ts +4 -0
- package/tests/node_modules/dayjs/esm/plugin/badMutable/index.js +61 -0
- package/tests/node_modules/dayjs/esm/plugin/buddhistEra/index.d.ts +4 -0
- package/tests/node_modules/dayjs/esm/plugin/buddhistEra/index.js +21 -0
- package/tests/node_modules/dayjs/esm/plugin/calendar/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/calendar/index.js +32 -0
- package/tests/node_modules/dayjs/esm/plugin/customParseFormat/index.d.ts +8 -0
- package/tests/node_modules/dayjs/esm/plugin/customParseFormat/index.js +320 -0
- package/tests/node_modules/dayjs/esm/plugin/dayOfYear/index.d.ts +11 -0
- package/tests/node_modules/dayjs/esm/plugin/dayOfYear/index.js +9 -0
- package/tests/node_modules/dayjs/esm/plugin/devHelper/index.d.ts +4 -0
- package/tests/node_modules/dayjs/esm/plugin/devHelper/index.js +38 -0
- package/tests/node_modules/dayjs/esm/plugin/duration/index.d.ts +88 -0
- package/tests/node_modules/dayjs/esm/plugin/duration/index.js +341 -0
- package/tests/node_modules/dayjs/esm/plugin/isBetween/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isBetween/index.js +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isLeapYear/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isLeapYear/index.js +7 -0
- package/tests/node_modules/dayjs/esm/plugin/isMoment/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isMoment/index.js +5 -0
- package/tests/node_modules/dayjs/esm/plugin/isSameOrAfter/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isSameOrAfter/index.js +5 -0
- package/tests/node_modules/dayjs/esm/plugin/isSameOrBefore/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isSameOrBefore/index.js +5 -0
- package/tests/node_modules/dayjs/esm/plugin/isToday/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isToday/index.js +9 -0
- package/tests/node_modules/dayjs/esm/plugin/isTomorrow/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isTomorrow/index.js +9 -0
- package/tests/node_modules/dayjs/esm/plugin/isYesterday/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isYesterday/index.js +9 -0
- package/tests/node_modules/dayjs/esm/plugin/isoWeek/index.d.ts +27 -0
- package/tests/node_modules/dayjs/esm/plugin/isoWeek/index.js +57 -0
- package/tests/node_modules/dayjs/esm/plugin/isoWeeksInYear/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isoWeeksInYear/index.js +15 -0
- package/tests/node_modules/dayjs/esm/plugin/localeData/index.d.ts +42 -0
- package/tests/node_modules/dayjs/esm/plugin/localeData/index.js +114 -0
- package/tests/node_modules/dayjs/esm/plugin/localizedFormat/index.d.ts +4 -0
- package/tests/node_modules/dayjs/esm/plugin/localizedFormat/index.js +20 -0
- package/tests/node_modules/dayjs/esm/plugin/localizedFormat/utils.js +20 -0
- package/tests/node_modules/dayjs/esm/plugin/minMax/index.d.ts +11 -0
- package/tests/node_modules/dayjs/esm/plugin/minMax/index.js +36 -0
- package/tests/node_modules/dayjs/esm/plugin/objectSupport/index.d.ts +12 -0
- package/tests/node_modules/dayjs/esm/plugin/objectSupport/index.js +87 -0
- package/tests/node_modules/dayjs/esm/plugin/pluralGetSet/index.d.ts +44 -0
- package/tests/node_modules/dayjs/esm/plugin/pluralGetSet/index.js +7 -0
- package/tests/node_modules/dayjs/esm/plugin/preParsePostFormat/index.d.ts +4 -0
- package/tests/node_modules/dayjs/esm/plugin/preParsePostFormat/index.js +40 -0
- package/tests/node_modules/dayjs/esm/plugin/quarterOfYear/index.d.ts +26 -0
- package/tests/node_modules/dayjs/esm/plugin/quarterOfYear/index.js +41 -0
- package/tests/node_modules/dayjs/esm/plugin/relativeTime/index.d.ts +24 -0
- package/tests/node_modules/dayjs/esm/plugin/relativeTime/index.js +130 -0
- package/tests/node_modules/dayjs/esm/plugin/timezone/index.d.ts +20 -0
- package/tests/node_modules/dayjs/esm/plugin/timezone/index.js +185 -0
- package/tests/node_modules/dayjs/esm/plugin/toArray/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/toArray/index.js +7 -0
- package/tests/node_modules/dayjs/esm/plugin/toObject/index.d.ts +20 -0
- package/tests/node_modules/dayjs/esm/plugin/toObject/index.js +15 -0
- package/tests/node_modules/dayjs/esm/plugin/updateLocale/index.d.ts +8 -0
- package/tests/node_modules/dayjs/esm/plugin/updateLocale/index.js +12 -0
- package/tests/node_modules/dayjs/esm/plugin/utc/index.d.ts +19 -0
- package/tests/node_modules/dayjs/esm/plugin/utc/index.js +188 -0
- package/tests/node_modules/dayjs/esm/plugin/weekOfYear/index.d.ts +12 -0
- package/tests/node_modules/dayjs/esm/plugin/weekOfYear/index.js +44 -0
- package/tests/node_modules/dayjs/esm/plugin/weekYear/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/weekYear/index.js +19 -0
- package/tests/node_modules/dayjs/esm/plugin/weekday/index.d.ts +12 -0
- package/tests/node_modules/dayjs/esm/plugin/weekday/index.js +15 -0
- package/tests/node_modules/dayjs/esm/utils.js +58 -0
- package/tests/node_modules/dayjs/index.d.ts +429 -0
- package/tests/node_modules/dayjs/locale/af.js +1 -0
- package/tests/node_modules/dayjs/locale/am.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-dz.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-iq.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-kw.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-ly.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-ma.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-sa.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-tn.js +1 -0
- package/tests/node_modules/dayjs/locale/ar.js +1 -0
- package/tests/node_modules/dayjs/locale/az.js +1 -0
- package/tests/node_modules/dayjs/locale/be.js +1 -0
- package/tests/node_modules/dayjs/locale/bg.js +1 -0
- package/tests/node_modules/dayjs/locale/bi.js +1 -0
- package/tests/node_modules/dayjs/locale/bm.js +1 -0
- package/tests/node_modules/dayjs/locale/bn-bd.js +1 -0
- package/tests/node_modules/dayjs/locale/bn.js +1 -0
- package/tests/node_modules/dayjs/locale/bo.js +1 -0
- package/tests/node_modules/dayjs/locale/br.js +1 -0
- package/tests/node_modules/dayjs/locale/bs.js +1 -0
- package/tests/node_modules/dayjs/locale/ca.js +1 -0
- package/tests/node_modules/dayjs/locale/cs.js +1 -0
- package/tests/node_modules/dayjs/locale/cv.js +1 -0
- package/tests/node_modules/dayjs/locale/cy.js +1 -0
- package/tests/node_modules/dayjs/locale/da.js +1 -0
- package/tests/node_modules/dayjs/locale/de-at.js +1 -0
- package/tests/node_modules/dayjs/locale/de-ch.js +1 -0
- package/tests/node_modules/dayjs/locale/de.js +1 -0
- package/tests/node_modules/dayjs/locale/dv.js +1 -0
- package/tests/node_modules/dayjs/locale/el.js +1 -0
- package/tests/node_modules/dayjs/locale/en-au.js +1 -0
- package/tests/node_modules/dayjs/locale/en-ca.js +1 -0
- package/tests/node_modules/dayjs/locale/en-gb.js +1 -0
- package/tests/node_modules/dayjs/locale/en-ie.js +1 -0
- package/tests/node_modules/dayjs/locale/en-il.js +1 -0
- package/tests/node_modules/dayjs/locale/en-in.js +1 -0
- package/tests/node_modules/dayjs/locale/en-nz.js +1 -0
- package/tests/node_modules/dayjs/locale/en-sg.js +1 -0
- package/tests/node_modules/dayjs/locale/en-tt.js +1 -0
- package/tests/node_modules/dayjs/locale/en.js +1 -0
- package/tests/node_modules/dayjs/locale/eo.js +1 -0
- package/tests/node_modules/dayjs/locale/es-do.js +1 -0
- package/tests/node_modules/dayjs/locale/es-mx.js +1 -0
- package/tests/node_modules/dayjs/locale/es-pr.js +1 -0
- package/tests/node_modules/dayjs/locale/es-us.js +1 -0
- package/tests/node_modules/dayjs/locale/es.js +1 -0
- package/tests/node_modules/dayjs/locale/et.js +1 -0
- package/tests/node_modules/dayjs/locale/eu.js +1 -0
- package/tests/node_modules/dayjs/locale/fa.js +1 -0
- package/tests/node_modules/dayjs/locale/fi.js +1 -0
- package/tests/node_modules/dayjs/locale/fo.js +1 -0
- package/tests/node_modules/dayjs/locale/fr-ca.js +1 -0
- package/tests/node_modules/dayjs/locale/fr-ch.js +1 -0
- package/tests/node_modules/dayjs/locale/fr.js +1 -0
- package/tests/node_modules/dayjs/locale/fy.js +1 -0
- package/tests/node_modules/dayjs/locale/ga.js +1 -0
- package/tests/node_modules/dayjs/locale/gd.js +1 -0
- package/tests/node_modules/dayjs/locale/gl.js +1 -0
- package/tests/node_modules/dayjs/locale/gom-latn.js +1 -0
- package/tests/node_modules/dayjs/locale/gu.js +1 -0
- package/tests/node_modules/dayjs/locale/he.js +1 -0
- package/tests/node_modules/dayjs/locale/hi.js +1 -0
- package/tests/node_modules/dayjs/locale/hr.js +1 -0
- package/tests/node_modules/dayjs/locale/ht.js +1 -0
- package/tests/node_modules/dayjs/locale/hu.js +1 -0
- package/tests/node_modules/dayjs/locale/hy-am.js +1 -0
- package/tests/node_modules/dayjs/locale/id.js +1 -0
- package/tests/node_modules/dayjs/locale/index.d.ts +11 -0
- package/tests/node_modules/dayjs/locale/is.js +1 -0
- package/tests/node_modules/dayjs/locale/it-ch.js +1 -0
- package/tests/node_modules/dayjs/locale/it.js +1 -0
- package/tests/node_modules/dayjs/locale/ja.js +1 -0
- package/tests/node_modules/dayjs/locale/jv.js +1 -0
- package/tests/node_modules/dayjs/locale/ka.js +1 -0
- package/tests/node_modules/dayjs/locale/kk.js +1 -0
- package/tests/node_modules/dayjs/locale/km.js +1 -0
- package/tests/node_modules/dayjs/locale/kn.js +1 -0
- package/tests/node_modules/dayjs/locale/ko.js +1 -0
- package/tests/node_modules/dayjs/locale/ku.js +1 -0
- package/tests/node_modules/dayjs/locale/ky.js +1 -0
- package/tests/node_modules/dayjs/locale/lb.js +1 -0
- package/tests/node_modules/dayjs/locale/lo.js +1 -0
- package/tests/node_modules/dayjs/locale/lt.js +1 -0
- package/tests/node_modules/dayjs/locale/lv.js +1 -0
- package/tests/node_modules/dayjs/locale/me.js +1 -0
- package/tests/node_modules/dayjs/locale/mi.js +1 -0
- package/tests/node_modules/dayjs/locale/mk.js +1 -0
- package/tests/node_modules/dayjs/locale/ml.js +1 -0
- package/tests/node_modules/dayjs/locale/mn.js +1 -0
- package/tests/node_modules/dayjs/locale/mr.js +1 -0
- package/tests/node_modules/dayjs/locale/ms-my.js +1 -0
- package/tests/node_modules/dayjs/locale/ms.js +1 -0
- package/tests/node_modules/dayjs/locale/mt.js +1 -0
- package/tests/node_modules/dayjs/locale/my.js +1 -0
- package/tests/node_modules/dayjs/locale/nb.js +1 -0
- package/tests/node_modules/dayjs/locale/ne.js +1 -0
- package/tests/node_modules/dayjs/locale/nl-be.js +1 -0
- package/tests/node_modules/dayjs/locale/nl.js +1 -0
- package/tests/node_modules/dayjs/locale/nn.js +1 -0
- package/tests/node_modules/dayjs/locale/oc-lnc.js +1 -0
- package/tests/node_modules/dayjs/locale/pa-in.js +1 -0
- package/tests/node_modules/dayjs/locale/pl.js +1 -0
- package/tests/node_modules/dayjs/locale/pt-br.js +1 -0
- package/tests/node_modules/dayjs/locale/pt.js +1 -0
- package/tests/node_modules/dayjs/locale/rn.js +1 -0
- package/tests/node_modules/dayjs/locale/ro.js +1 -0
- package/tests/node_modules/dayjs/locale/ru.js +1 -0
- package/tests/node_modules/dayjs/locale/rw.js +1 -0
- package/tests/node_modules/dayjs/locale/sd.js +1 -0
- package/tests/node_modules/dayjs/locale/se.js +1 -0
- package/tests/node_modules/dayjs/locale/si.js +1 -0
- package/tests/node_modules/dayjs/locale/sk.js +1 -0
- package/tests/node_modules/dayjs/locale/sl.js +1 -0
- package/tests/node_modules/dayjs/locale/sq.js +1 -0
- package/tests/node_modules/dayjs/locale/sr-cyrl.js +1 -0
- package/tests/node_modules/dayjs/locale/sr.js +1 -0
- package/tests/node_modules/dayjs/locale/ss.js +1 -0
- package/tests/node_modules/dayjs/locale/sv-fi.js +1 -0
- package/tests/node_modules/dayjs/locale/sv.js +1 -0
- package/tests/node_modules/dayjs/locale/sw.js +1 -0
- package/tests/node_modules/dayjs/locale/ta.js +1 -0
- package/tests/node_modules/dayjs/locale/te.js +1 -0
- package/tests/node_modules/dayjs/locale/tet.js +1 -0
- package/tests/node_modules/dayjs/locale/tg.js +1 -0
- package/tests/node_modules/dayjs/locale/th.js +1 -0
- package/tests/node_modules/dayjs/locale/tk.js +1 -0
- package/tests/node_modules/dayjs/locale/tl-ph.js +1 -0
- package/tests/node_modules/dayjs/locale/tlh.js +1 -0
- package/tests/node_modules/dayjs/locale/tr.js +1 -0
- package/tests/node_modules/dayjs/locale/types.d.ts +33 -0
- package/tests/node_modules/dayjs/locale/tzl.js +1 -0
- package/tests/node_modules/dayjs/locale/tzm-latn.js +1 -0
- package/tests/node_modules/dayjs/locale/tzm.js +1 -0
- package/tests/node_modules/dayjs/locale/ug-cn.js +1 -0
- package/tests/node_modules/dayjs/locale/uk.js +1 -0
- package/tests/node_modules/dayjs/locale/ur.js +1 -0
- package/tests/node_modules/dayjs/locale/uz-latn.js +1 -0
- package/tests/node_modules/dayjs/locale/uz.js +1 -0
- package/tests/node_modules/dayjs/locale/vi.js +1 -0
- package/tests/node_modules/dayjs/locale/x-pseudo.js +1 -0
- package/tests/node_modules/dayjs/locale/yo.js +1 -0
- package/tests/node_modules/dayjs/locale/zh-cn.js +1 -0
- package/tests/node_modules/dayjs/locale/zh-hk.js +1 -0
- package/tests/node_modules/dayjs/locale/zh-tw.js +1 -0
- package/tests/node_modules/dayjs/locale/zh.js +1 -0
- package/tests/node_modules/dayjs/locale.json +1 -0
- package/tests/node_modules/dayjs/package.json +99 -0
- package/tests/node_modules/dayjs/plugin/advancedFormat.d.ts +4 -0
- package/tests/node_modules/dayjs/plugin/advancedFormat.js +1 -0
- package/tests/node_modules/dayjs/plugin/arraySupport.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/arraySupport.js +1 -0
- package/tests/node_modules/dayjs/plugin/badMutable.d.ts +4 -0
- package/tests/node_modules/dayjs/plugin/badMutable.js +1 -0
- package/tests/node_modules/dayjs/plugin/buddhistEra.d.ts +4 -0
- package/tests/node_modules/dayjs/plugin/buddhistEra.js +1 -0
- package/tests/node_modules/dayjs/plugin/calendar.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/calendar.js +1 -0
- package/tests/node_modules/dayjs/plugin/customParseFormat.d.ts +8 -0
- package/tests/node_modules/dayjs/plugin/customParseFormat.js +1 -0
- package/tests/node_modules/dayjs/plugin/dayOfYear.d.ts +11 -0
- package/tests/node_modules/dayjs/plugin/dayOfYear.js +1 -0
- package/tests/node_modules/dayjs/plugin/devHelper.d.ts +4 -0
- package/tests/node_modules/dayjs/plugin/devHelper.js +1 -0
- package/tests/node_modules/dayjs/plugin/duration.d.ts +88 -0
- package/tests/node_modules/dayjs/plugin/duration.js +1 -0
- package/tests/node_modules/dayjs/plugin/isBetween.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isBetween.js +1 -0
- package/tests/node_modules/dayjs/plugin/isLeapYear.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isLeapYear.js +1 -0
- package/tests/node_modules/dayjs/plugin/isMoment.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isMoment.js +1 -0
- package/tests/node_modules/dayjs/plugin/isSameOrAfter.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isSameOrAfter.js +1 -0
- package/tests/node_modules/dayjs/plugin/isSameOrBefore.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isSameOrBefore.js +1 -0
- package/tests/node_modules/dayjs/plugin/isToday.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isToday.js +1 -0
- package/tests/node_modules/dayjs/plugin/isTomorrow.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isTomorrow.js +1 -0
- package/tests/node_modules/dayjs/plugin/isYesterday.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isYesterday.js +1 -0
- package/tests/node_modules/dayjs/plugin/isoWeek.d.ts +27 -0
- package/tests/node_modules/dayjs/plugin/isoWeek.js +1 -0
- package/tests/node_modules/dayjs/plugin/isoWeeksInYear.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isoWeeksInYear.js +1 -0
- package/tests/node_modules/dayjs/plugin/localeData.d.ts +42 -0
- package/tests/node_modules/dayjs/plugin/localeData.js +1 -0
- package/tests/node_modules/dayjs/plugin/localizedFormat.d.ts +4 -0
- package/tests/node_modules/dayjs/plugin/localizedFormat.js +1 -0
- package/tests/node_modules/dayjs/plugin/minMax.d.ts +11 -0
- package/tests/node_modules/dayjs/plugin/minMax.js +1 -0
- package/tests/node_modules/dayjs/plugin/objectSupport.d.ts +12 -0
- package/tests/node_modules/dayjs/plugin/objectSupport.js +1 -0
- package/tests/node_modules/dayjs/plugin/pluralGetSet.d.ts +44 -0
- package/tests/node_modules/dayjs/plugin/pluralGetSet.js +1 -0
- package/tests/node_modules/dayjs/plugin/preParsePostFormat.d.ts +4 -0
- package/tests/node_modules/dayjs/plugin/preParsePostFormat.js +1 -0
- package/tests/node_modules/dayjs/plugin/quarterOfYear.d.ts +26 -0
- package/tests/node_modules/dayjs/plugin/quarterOfYear.js +1 -0
- package/tests/node_modules/dayjs/plugin/relativeTime.d.ts +24 -0
- package/tests/node_modules/dayjs/plugin/relativeTime.js +1 -0
- package/tests/node_modules/dayjs/plugin/timezone.d.ts +20 -0
- package/tests/node_modules/dayjs/plugin/timezone.js +1 -0
- package/tests/node_modules/dayjs/plugin/toArray.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/toArray.js +1 -0
- package/tests/node_modules/dayjs/plugin/toObject.d.ts +20 -0
- package/tests/node_modules/dayjs/plugin/toObject.js +1 -0
- package/tests/node_modules/dayjs/plugin/updateLocale.d.ts +8 -0
- package/tests/node_modules/dayjs/plugin/updateLocale.js +1 -0
- package/tests/node_modules/dayjs/plugin/utc.d.ts +19 -0
- package/tests/node_modules/dayjs/plugin/utc.js +1 -0
- package/tests/node_modules/dayjs/plugin/weekOfYear.d.ts +12 -0
- package/tests/node_modules/dayjs/plugin/weekOfYear.js +1 -0
- package/tests/node_modules/dayjs/plugin/weekYear.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/weekYear.js +1 -0
- package/tests/node_modules/dayjs/plugin/weekday.d.ts +12 -0
- package/tests/node_modules/dayjs/plugin/weekday.js +1 -0
- package/tests/node_modules/debug/.coveralls.yml +1 -0
- package/tests/node_modules/debug/.eslintrc +11 -0
- package/tests/node_modules/debug/.travis.yml +14 -0
- package/tests/node_modules/debug/CHANGELOG.md +362 -0
- package/tests/node_modules/debug/LICENSE +19 -0
- package/tests/node_modules/debug/Makefile +50 -0
- package/tests/node_modules/debug/README.md +312 -0
- package/tests/node_modules/debug/component.json +19 -0
- package/tests/node_modules/debug/karma.conf.js +70 -0
- package/tests/node_modules/debug/node.js +1 -0
- package/tests/node_modules/debug/package.json +49 -0
- package/tests/node_modules/debug/src/browser.js +185 -0
- package/tests/node_modules/debug/src/debug.js +202 -0
- package/tests/node_modules/debug/src/index.js +10 -0
- package/tests/node_modules/debug/src/inspector-log.js +15 -0
- package/tests/node_modules/debug/src/node.js +248 -0
- package/tests/node_modules/decimal.js/CHANGELOG.md +231 -0
- package/tests/node_modules/decimal.js/LICENCE.md +23 -0
- package/tests/node_modules/decimal.js/README.md +246 -0
- package/tests/node_modules/decimal.js/decimal.d.ts +300 -0
- package/tests/node_modules/decimal.js/decimal.js +4934 -0
- package/tests/node_modules/decimal.js/decimal.mjs +4898 -0
- package/tests/node_modules/decimal.js/package.json +40 -0
- package/tests/node_modules/deep-is/.travis.yml +5 -0
- package/tests/node_modules/deep-is/LICENSE +22 -0
- package/tests/node_modules/deep-is/README.markdown +70 -0
- package/tests/node_modules/deep-is/example/cmp.js +11 -0
- package/tests/node_modules/deep-is/index.js +102 -0
- package/tests/node_modules/deep-is/package.json +58 -0
- package/tests/node_modules/deep-is/test/NaN.js +16 -0
- package/tests/node_modules/deep-is/test/cmp.js +23 -0
- package/tests/node_modules/deep-is/test/neg-vs-pos-0.js +15 -0
- package/tests/node_modules/delayed-stream/License +19 -0
- package/tests/node_modules/delayed-stream/Makefile +7 -0
- package/tests/node_modules/delayed-stream/Readme.md +141 -0
- package/tests/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/tests/node_modules/delayed-stream/package.json +27 -0
- package/tests/node_modules/depd/History.md +103 -0
- package/tests/node_modules/depd/LICENSE +22 -0
- package/tests/node_modules/depd/Readme.md +280 -0
- package/tests/node_modules/depd/index.js +538 -0
- package/tests/node_modules/depd/lib/browser/index.js +77 -0
- package/tests/node_modules/depd/package.json +45 -0
- package/tests/node_modules/destroy/LICENSE +23 -0
- package/tests/node_modules/destroy/README.md +63 -0
- package/tests/node_modules/destroy/index.js +209 -0
- package/tests/node_modules/destroy/package.json +48 -0
- package/tests/node_modules/dev-null/.travis.yml +4 -0
- package/tests/node_modules/dev-null/LICENSE +23 -0
- package/tests/node_modules/dev-null/README.md +38 -0
- package/tests/node_modules/dev-null/examples/devnull.js +6 -0
- package/tests/node_modules/dev-null/examples/no-devnull.js +4 -0
- package/tests/node_modules/dev-null/index.js +22 -0
- package/tests/node_modules/dev-null/package.json +42 -0
- package/tests/node_modules/dev-null/test/fixtures/number-readable.js +21 -0
- package/tests/node_modules/dev-null/test/index.js +28 -0
- package/tests/node_modules/domexception/LICENSE.txt +21 -0
- package/tests/node_modules/domexception/README.md +31 -0
- package/tests/node_modules/domexception/index.js +7 -0
- package/tests/node_modules/domexception/lib/DOMException-impl.js +22 -0
- package/tests/node_modules/domexception/lib/DOMException.js +205 -0
- package/tests/node_modules/domexception/lib/legacy-error-codes.json +27 -0
- package/tests/node_modules/domexception/lib/utils.js +115 -0
- package/tests/node_modules/domexception/node_modules/webidl-conversions/LICENSE.md +12 -0
- package/tests/node_modules/domexception/node_modules/webidl-conversions/README.md +79 -0
- package/tests/node_modules/domexception/node_modules/webidl-conversions/lib/index.js +361 -0
- package/tests/node_modules/domexception/node_modules/webidl-conversions/package.json +30 -0
- package/tests/node_modules/domexception/package.json +42 -0
- package/tests/node_modules/domexception/webidl2js-wrapper.js +15 -0
- package/tests/node_modules/ee-first/LICENSE +22 -0
- package/tests/node_modules/ee-first/README.md +80 -0
- package/tests/node_modules/ee-first/index.js +95 -0
- package/tests/node_modules/ee-first/package.json +29 -0
- package/tests/node_modules/encodeurl/HISTORY.md +14 -0
- package/tests/node_modules/encodeurl/LICENSE +22 -0
- package/tests/node_modules/encodeurl/README.md +128 -0
- package/tests/node_modules/encodeurl/index.js +60 -0
- package/tests/node_modules/encodeurl/package.json +40 -0
- package/tests/node_modules/errors/History.md +4 -0
- package/tests/node_modules/errors/LICENSE +22 -0
- package/tests/node_modules/errors/Makefile +20 -0
- package/tests/node_modules/errors/Readme.md +503 -0
- package/tests/node_modules/errors/doc/html/errors.html +298 -0
- package/tests/node_modules/errors/doc/md/errors.md +495 -0
- package/tests/node_modules/errors/examples/basic/usage.js +120 -0
- package/tests/node_modules/errors/examples/express/echo.js +37 -0
- package/tests/node_modules/errors/examples/express/mapper.js +42 -0
- package/tests/node_modules/errors/examples/express/middleware.js +47 -0
- package/tests/node_modules/errors/index.js +2 -0
- package/tests/node_modules/errors/lib/errors.js +930 -0
- package/tests/node_modules/errors/lib/static/error.css +68 -0
- package/tests/node_modules/errors/lib/static/error.html +15 -0
- package/tests/node_modules/errors/package.json +36 -0
- package/tests/node_modules/errors/test/express.js +200 -0
- package/tests/node_modules/errors/test/middleware.js +135 -0
- package/tests/node_modules/errors/test/test.js +250 -0
- package/tests/node_modules/escape-html/LICENSE +24 -0
- package/tests/node_modules/escape-html/Readme.md +43 -0
- package/tests/node_modules/escape-html/index.js +78 -0
- package/tests/node_modules/escape-html/package.json +24 -0
- package/tests/node_modules/escodegen/LICENSE.BSD +21 -0
- package/tests/node_modules/escodegen/README.md +84 -0
- package/tests/node_modules/escodegen/bin/escodegen.js +77 -0
- package/tests/node_modules/escodegen/bin/esgenerate.js +64 -0
- package/tests/node_modules/escodegen/escodegen.js +2647 -0
- package/tests/node_modules/escodegen/package.json +62 -0
- package/tests/node_modules/esprima/ChangeLog +235 -0
- package/tests/node_modules/esprima/LICENSE.BSD +21 -0
- package/tests/node_modules/esprima/README.md +46 -0
- package/tests/node_modules/esprima/bin/esparse.js +139 -0
- package/tests/node_modules/esprima/bin/esvalidate.js +236 -0
- package/tests/node_modules/esprima/dist/esprima.js +6709 -0
- package/tests/node_modules/esprima/package.json +112 -0
- package/tests/node_modules/estraverse/.jshintrc +16 -0
- package/tests/node_modules/estraverse/LICENSE.BSD +19 -0
- package/tests/node_modules/estraverse/README.md +153 -0
- package/tests/node_modules/estraverse/estraverse.js +805 -0
- package/tests/node_modules/estraverse/gulpfile.js +70 -0
- package/tests/node_modules/estraverse/package.json +40 -0
- package/tests/node_modules/esutils/LICENSE.BSD +19 -0
- package/tests/node_modules/esutils/README.md +174 -0
- package/tests/node_modules/esutils/lib/ast.js +144 -0
- package/tests/node_modules/esutils/lib/code.js +135 -0
- package/tests/node_modules/esutils/lib/keyword.js +165 -0
- package/tests/node_modules/esutils/lib/utils.js +33 -0
- package/tests/node_modules/esutils/package.json +44 -0
- package/tests/node_modules/etag/HISTORY.md +83 -0
- package/tests/node_modules/etag/LICENSE +22 -0
- package/tests/node_modules/etag/README.md +159 -0
- package/tests/node_modules/etag/index.js +131 -0
- package/tests/node_modules/etag/package.json +47 -0
- package/tests/node_modules/express/History.md +3579 -0
- package/tests/node_modules/express/LICENSE +24 -0
- package/tests/node_modules/express/Readme.md +166 -0
- package/tests/node_modules/express/index.js +11 -0
- package/tests/node_modules/express/lib/application.js +661 -0
- package/tests/node_modules/express/lib/express.js +116 -0
- package/tests/node_modules/express/lib/middleware/init.js +43 -0
- package/tests/node_modules/express/lib/middleware/query.js +47 -0
- package/tests/node_modules/express/lib/request.js +525 -0
- package/tests/node_modules/express/lib/response.js +1169 -0
- package/tests/node_modules/express/lib/router/index.js +673 -0
- package/tests/node_modules/express/lib/router/layer.js +181 -0
- package/tests/node_modules/express/lib/router/route.js +225 -0
- package/tests/node_modules/express/lib/utils.js +304 -0
- package/tests/node_modules/express/lib/view.js +182 -0
- package/tests/node_modules/express/node_modules/safe-buffer/LICENSE +21 -0
- package/tests/node_modules/express/node_modules/safe-buffer/README.md +584 -0
- package/tests/node_modules/express/node_modules/safe-buffer/index.d.ts +187 -0
- package/tests/node_modules/express/node_modules/safe-buffer/index.js +65 -0
- package/tests/node_modules/express/node_modules/safe-buffer/package.json +51 -0
- package/tests/node_modules/express/package.json +99 -0
- package/tests/node_modules/extend/.editorconfig +20 -0
- package/tests/node_modules/extend/.eslintrc +18 -0
- package/tests/node_modules/extend/.jscs.json +175 -0
- package/tests/node_modules/extend/.travis.yml +230 -0
- package/tests/node_modules/extend/CHANGELOG.md +94 -0
- package/tests/node_modules/extend/LICENSE +23 -0
- package/tests/node_modules/extend/README.md +81 -0
- package/tests/node_modules/extend/component.json +32 -0
- package/tests/node_modules/extend/index.js +119 -0
- package/tests/node_modules/extend/package.json +44 -0
- package/tests/node_modules/fast-levenshtein/LICENSE.md +25 -0
- package/tests/node_modules/fast-levenshtein/README.md +104 -0
- package/tests/node_modules/fast-levenshtein/levenshtein.js +136 -0
- package/tests/node_modules/fast-levenshtein/package.json +39 -0
- package/tests/node_modules/finalhandler/HISTORY.md +195 -0
- package/tests/node_modules/finalhandler/LICENSE +22 -0
- package/tests/node_modules/finalhandler/README.md +147 -0
- package/tests/node_modules/finalhandler/SECURITY.md +25 -0
- package/tests/node_modules/finalhandler/index.js +336 -0
- package/tests/node_modules/finalhandler/package.json +46 -0
- package/tests/node_modules/form-data/License +19 -0
- package/tests/node_modules/form-data/README.md.bak +358 -0
- package/tests/node_modules/form-data/Readme.md +358 -0
- package/tests/node_modules/form-data/index.d.ts +62 -0
- package/tests/node_modules/form-data/lib/browser.js +2 -0
- package/tests/node_modules/form-data/lib/form_data.js +501 -0
- package/tests/node_modules/form-data/lib/populate.js +10 -0
- package/tests/node_modules/form-data/package.json +68 -0
- package/tests/node_modules/form-data2/.babelrc.json +5 -0
- package/tests/node_modules/form-data2/.browserslistrc +1 -0
- package/tests/node_modules/form-data2/.eslintrc +3 -0
- package/tests/node_modules/form-data2/README.md +146 -0
- package/tests/node_modules/form-data2/index.js +3 -0
- package/tests/node_modules/form-data2/lib/form-data2.js +260 -0
- package/tests/node_modules/form-data2/package.json +33 -0
- package/tests/node_modules/form-data2/src/form-data2.js +174 -0
- package/tests/node_modules/form-fix-array/README.md +49 -0
- package/tests/node_modules/form-fix-array/gulpfile.js +28 -0
- package/tests/node_modules/form-fix-array/index.coffee +1 -0
- package/tests/node_modules/form-fix-array/index.js +1 -0
- package/tests/node_modules/form-fix-array/lib/form-fix-array.coffee +17 -0
- package/tests/node_modules/form-fix-array/lib/form-fix-array.js +27 -0
- package/tests/node_modules/form-fix-array/package.json +32 -0
- package/tests/node_modules/forwarded/HISTORY.md +21 -0
- package/tests/node_modules/forwarded/LICENSE +22 -0
- package/tests/node_modules/forwarded/README.md +57 -0
- package/tests/node_modules/forwarded/index.js +90 -0
- package/tests/node_modules/forwarded/package.json +45 -0
- package/tests/node_modules/fresh/HISTORY.md +70 -0
- package/tests/node_modules/fresh/LICENSE +23 -0
- package/tests/node_modules/fresh/README.md +119 -0
- package/tests/node_modules/fresh/index.js +137 -0
- package/tests/node_modules/fresh/package.json +46 -0
- package/tests/node_modules/function-bind/.editorconfig +20 -0
- package/tests/node_modules/function-bind/.eslintrc +15 -0
- package/tests/node_modules/function-bind/.jscs.json +176 -0
- package/tests/node_modules/function-bind/.travis.yml +168 -0
- package/tests/node_modules/function-bind/LICENSE +20 -0
- package/tests/node_modules/function-bind/README.md +48 -0
- package/tests/node_modules/function-bind/implementation.js +52 -0
- package/tests/node_modules/function-bind/index.js +5 -0
- package/tests/node_modules/function-bind/package.json +63 -0
- package/tests/node_modules/function-bind/test/.eslintrc +9 -0
- package/tests/node_modules/function-bind/test/index.js +252 -0
- package/tests/node_modules/get-intrinsic/.eslintrc +37 -0
- package/tests/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/tests/node_modules/get-intrinsic/.nycrc +9 -0
- package/tests/node_modules/get-intrinsic/CHANGELOG.md +91 -0
- package/tests/node_modules/get-intrinsic/LICENSE +21 -0
- package/tests/node_modules/get-intrinsic/README.md +71 -0
- package/tests/node_modules/get-intrinsic/index.js +334 -0
- package/tests/node_modules/get-intrinsic/package.json +88 -0
- package/tests/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/tests/node_modules/has/LICENSE-MIT +22 -0
- package/tests/node_modules/has/README.md +18 -0
- package/tests/node_modules/has/package.json +48 -0
- package/tests/node_modules/has/src/index.js +5 -0
- package/tests/node_modules/has/test/index.js +10 -0
- package/tests/node_modules/has-symbols/.eslintrc +11 -0
- package/tests/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/tests/node_modules/has-symbols/.nycrc +9 -0
- package/tests/node_modules/has-symbols/CHANGELOG.md +75 -0
- package/tests/node_modules/has-symbols/LICENSE +21 -0
- package/tests/node_modules/has-symbols/README.md +46 -0
- package/tests/node_modules/has-symbols/index.js +13 -0
- package/tests/node_modules/has-symbols/package.json +101 -0
- package/tests/node_modules/has-symbols/shams.js +42 -0
- package/tests/node_modules/has-symbols/test/index.js +22 -0
- package/tests/node_modules/has-symbols/test/shams/core-js.js +28 -0
- package/tests/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
- package/tests/node_modules/has-symbols/test/tests.js +56 -0
- package/tests/node_modules/html-encoding-sniffer/LICENSE.txt +7 -0
- package/tests/node_modules/html-encoding-sniffer/README.md +38 -0
- package/tests/node_modules/html-encoding-sniffer/lib/html-encoding-sniffer.js +295 -0
- package/tests/node_modules/html-encoding-sniffer/package.json +30 -0
- package/tests/node_modules/http-errors/HISTORY.md +180 -0
- package/tests/node_modules/http-errors/LICENSE +23 -0
- package/tests/node_modules/http-errors/README.md +169 -0
- package/tests/node_modules/http-errors/index.js +289 -0
- package/tests/node_modules/http-errors/package.json +50 -0
- package/tests/node_modules/http-proxy-agent/README.md +74 -0
- package/tests/node_modules/http-proxy-agent/dist/agent.d.ts +32 -0
- package/tests/node_modules/http-proxy-agent/dist/agent.js +145 -0
- package/tests/node_modules/http-proxy-agent/dist/agent.js.map +1 -0
- package/tests/node_modules/http-proxy-agent/dist/index.d.ts +21 -0
- package/tests/node_modules/http-proxy-agent/dist/index.js +14 -0
- package/tests/node_modules/http-proxy-agent/dist/index.js.map +1 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/LICENSE +20 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/README.md +481 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/package.json +59 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/src/browser.js +269 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/src/common.js +274 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/src/index.js +10 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/src/node.js +263 -0
- package/tests/node_modules/http-proxy-agent/node_modules/ms/index.js +162 -0
- package/tests/node_modules/http-proxy-agent/node_modules/ms/license.md +21 -0
- package/tests/node_modules/http-proxy-agent/node_modules/ms/package.json +37 -0
- package/tests/node_modules/http-proxy-agent/node_modules/ms/readme.md +60 -0
- package/tests/node_modules/http-proxy-agent/package.json +57 -0
- package/tests/node_modules/https-proxy-agent/README.md +137 -0
- package/tests/node_modules/https-proxy-agent/dist/agent.d.ts +30 -0
- package/tests/node_modules/https-proxy-agent/dist/agent.js +177 -0
- package/tests/node_modules/https-proxy-agent/dist/agent.js.map +1 -0
- package/tests/node_modules/https-proxy-agent/dist/index.d.ts +23 -0
- package/tests/node_modules/https-proxy-agent/dist/index.js +14 -0
- package/tests/node_modules/https-proxy-agent/dist/index.js.map +1 -0
- package/tests/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +7 -0
- package/tests/node_modules/https-proxy-agent/dist/parse-proxy-response.js +66 -0
- package/tests/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/LICENSE +20 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/README.md +481 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/package.json +59 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/src/browser.js +269 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/src/common.js +274 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/src/index.js +10 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/src/node.js +263 -0
- package/tests/node_modules/https-proxy-agent/node_modules/ms/index.js +162 -0
- package/tests/node_modules/https-proxy-agent/node_modules/ms/license.md +21 -0
- package/tests/node_modules/https-proxy-agent/node_modules/ms/package.json +37 -0
- package/tests/node_modules/https-proxy-agent/node_modules/ms/readme.md +60 -0
- package/tests/node_modules/https-proxy-agent/package.json +56 -0
- package/tests/node_modules/iconv-lite/Changelog.md +162 -0
- package/tests/node_modules/iconv-lite/LICENSE +21 -0
- package/tests/node_modules/iconv-lite/README.md +156 -0
- package/tests/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/tests/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/tests/node_modules/iconv-lite/encodings/index.js +22 -0
- package/tests/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/tests/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/tests/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/tests/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/tests/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/tests/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/tests/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/tests/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/tests/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/tests/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/tests/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/tests/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/tests/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/tests/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/tests/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/tests/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/tests/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/tests/node_modules/iconv-lite/lib/index.js +153 -0
- package/tests/node_modules/iconv-lite/lib/streams.js +121 -0
- package/tests/node_modules/iconv-lite/package.json +46 -0
- package/tests/node_modules/inherits/LICENSE +16 -0
- package/tests/node_modules/inherits/README.md +42 -0
- package/tests/node_modules/inherits/inherits.js +9 -0
- package/tests/node_modules/inherits/inherits_browser.js +27 -0
- package/tests/node_modules/inherits/package.json +29 -0
- package/tests/node_modules/ipaddr.js/LICENSE +19 -0
- package/tests/node_modules/ipaddr.js/README.md +233 -0
- package/tests/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/tests/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/tests/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/tests/node_modules/ipaddr.js/package.json +35 -0
- package/tests/node_modules/is-potential-custom-element-name/LICENSE-MIT.txt +20 -0
- package/tests/node_modules/is-potential-custom-element-name/README.md +40 -0
- package/tests/node_modules/is-potential-custom-element-name/index.js +9 -0
- package/tests/node_modules/is-potential-custom-element-name/package.json +35 -0
- package/tests/node_modules/isarray/.travis.yml +4 -0
- package/tests/node_modules/isarray/Makefile +6 -0
- package/tests/node_modules/isarray/README.md +60 -0
- package/tests/node_modules/isarray/component.json +19 -0
- package/tests/node_modules/isarray/index.js +5 -0
- package/tests/node_modules/isarray/package.json +45 -0
- package/tests/node_modules/isarray/test.js +20 -0
- package/tests/node_modules/jsdom/LICENSE.txt +22 -0
- package/tests/node_modules/jsdom/README.md +522 -0
- package/tests/node_modules/jsdom/lib/api.js +333 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/Window.js +930 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/default-stylesheet.js +789 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/js-globals.json +307 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/not-implemented.js +13 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/parser/html.js +223 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/parser/index.js +37 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/parser/xml.js +202 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/resources/async-resource-queue.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/resources/no-op-resource-loader.js +8 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/resources/per-document-resource-loader.js +95 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/resources/request-manager.js +33 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/resources/resource-loader.js +142 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/resources/resource-queue.js +142 -0
- package/tests/node_modules/jsdom/lib/jsdom/level2/style.js +57 -0
- package/tests/node_modules/jsdom/lib/jsdom/level3/xpath.js +1874 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/aborting/AbortController-impl.js +17 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/aborting/AbortSignal-impl.js +55 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/attributes/Attr-impl.js +60 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/attributes/NamedNodeMap-impl.js +78 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/attributes.js +312 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/constraint-validation/DefaultConstraintValidation-impl.js +75 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/constraint-validation/ValidityState-impl.js +66 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/cssom/StyleSheetList-impl.js +38 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/custom-elements/CustomElementRegistry-impl.js +265 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/documents.js +15 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/DOMParser-impl.js +58 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/InnerHTML-impl.js +29 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/XMLSerializer-impl.js +18 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/parse5-adapter-serialization.js +63 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/serialization.js +45 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/CloseEvent-impl.js +10 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/CompositionEvent-impl.js +20 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/CustomEvent-impl.js +21 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/ErrorEvent-impl.js +14 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/Event-impl.js +197 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/EventModifierMixin-impl.js +18 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js +403 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/FocusEvent-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js +14 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/InputEvent-impl.js +11 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/KeyboardEvent-impl.js +29 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/MessageEvent-impl.js +25 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/MouseEvent-impl.js +49 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/PageTransitionEvent-impl.js +20 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/PopStateEvent-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/ProgressEvent-impl.js +14 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/StorageEvent-impl.js +26 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/TouchEvent-impl.js +14 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/UIEvent-impl.js +59 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/WheelEvent-impl.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/fetch/Headers-impl.js +165 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/fetch/header-list.js +54 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/fetch/header-types.js +103 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/file-api/Blob-impl.js +93 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/file-api/File-impl.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/file-api/FileList-impl.js +15 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/file-api/FileReader-impl.js +130 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/AbortController.js +130 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/AbortSignal.js +159 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/AbstractRange.js +162 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/AddEventListenerOptions.js +44 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/AssignedNodesOptions.js +28 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Attr.js +215 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/BarProp.js +118 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/BinaryType.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Blob.js +198 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/BlobCallback.js +34 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/BlobPropertyBag.js +42 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CDATASection.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CanPlayTypeResult.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CharacterData.js +436 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CloseEvent.js +164 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CloseEventInit.js +56 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Comment.js +122 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CompositionEvent.js +217 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CompositionEventInit.js +32 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CustomElementConstructor.js +38 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CustomElementRegistry.js +242 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CustomEvent.js +200 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CustomEventInit.js +32 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DOMImplementation.js +232 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DOMParser.js +140 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DOMStringMap.js +322 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DOMTokenList.js +531 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Document.js +3322 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DocumentFragment.js +325 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DocumentReadyState.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DocumentType.js +246 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Element.js +1609 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ElementCreationOptions.js +26 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ElementDefinitionOptions.js +26 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EndingType.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ErrorEvent.js +186 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ErrorEventInit.js +80 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Event.js +390 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventHandlerNonNull.js +40 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventInit.js +52 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventListener.js +35 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventListenerOptions.js +28 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventModifierInit.js +188 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js +252 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/External.js +129 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/File.js +176 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/FileList.js +305 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/FilePropertyBag.js +30 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/FileReader.js +440 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/FocusEvent.js +142 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/FocusEventInit.js +36 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/FormData.js +421 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Function.js +46 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/GetRootNodeOptions.js +28 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLAnchorElement.js +915 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLAreaElement.js +739 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLAudioElement.js +115 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLBRElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLBaseElement.js +188 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLBodyElement.js +808 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLButtonElement.js +487 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLCanvasElement.js +291 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLCollection.js +358 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDListElement.js +156 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataListElement.js +128 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDetailsElement.js +156 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDialogElement.js +156 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDirectoryElement.js +156 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDivElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLElement.js +2269 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLEmbedElement.js +346 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFieldSetElement.js +315 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFontElement.js +226 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFormElement.js +457 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameElement.js +459 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameSetElement.js +683 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLHRElement.js +300 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadElement.js +115 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadingElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLHtmlElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLIFrameElement.js +621 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLImageElement.js +789 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLInputElement.js +1696 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLLIElement.js +194 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLLabelElement.js +175 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLLegendElement.js +164 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLLinkElement.js +496 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMapElement.js +166 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMarqueeElement.js +509 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMediaElement.js +802 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMenuElement.js +156 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMetaElement.js +261 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMeterElement.js +338 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLModElement.js +202 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOListElement.js +266 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLObjectElement.js +839 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptGroupElement.js +192 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionElement.js +351 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionsCollection.js +533 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOutputElement.js +371 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLParagraphElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLParamElement.js +261 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLPictureElement.js +115 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLPreElement.js +158 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLProgressElement.js +209 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLQuoteElement.js +166 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLScriptElement.js +424 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLSelectElement.js +957 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLSlotElement.js +188 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLSourceElement.js +310 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLSpanElement.js +115 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLStyleElement.js +200 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCaptionElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCellElement.js +635 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableColElement.js +339 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableElement.js +725 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableRowElement.js +386 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableSectionElement.js +329 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTemplateElement.js +126 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTextAreaElement.js +1088 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTimeElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTitleElement.js +152 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTrackElement.js +334 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLUListElement.js +192 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLUnknownElement.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLVideoElement.js +310 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEvent.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEventInit.js +44 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Headers.js +379 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/History.js +256 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/InputEvent.js +164 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/InputEventInit.js +59 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEvent.js +413 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEventInit.js +104 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Location.js +370 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MessageEvent.js +301 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MessageEventInit.js +94 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MimeType.js +151 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MimeTypeArray.js +330 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MouseEvent.js +463 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MouseEventInit.js +108 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MutationCallback.js +38 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MutationObserver.js +171 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MutationObserverInit.js +103 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MutationRecord.js +216 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/NamedNodeMap.js +522 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Navigator.js +297 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Node.js +736 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/NodeFilter.js +74 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/NodeIterator.js +196 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/NodeList.js +309 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/OnBeforeUnloadEventHandlerNonNull.js +46 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/OnErrorEventHandlerNonNull.js +60 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEvent.js +146 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEventInit.js +32 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Performance.js +145 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Plugin.js +361 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/PluginArray.js +340 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/PopStateEvent.js +142 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/PopStateEventInit.js +32 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ProcessingInstruction.js +125 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ProgressEvent.js +166 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ProgressEventInit.js +56 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Range.js +619 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGAnimatedString.js +143 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGBoundingBoxOptions.js +64 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGElement.js +1986 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGGraphicsElement.js +144 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGNumber.js +130 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGSVGElement.js +681 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGStringList.js +504 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGTitleElement.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Screen.js +173 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollBehavior.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollIntoViewOptions.js +45 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollLogicalPosition.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollOptions.js +30 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollRestoration.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Selection.js +527 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SelectionMode.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ShadowRoot.js +185 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootInit.js +30 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootMode.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/StaticRange.js +126 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/StaticRangeInit.js +66 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Storage.js +389 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/StorageEvent.js +305 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/StorageEventInit.js +93 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/StyleSheetList.js +307 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SupportedType.js +18 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Text.js +169 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/TextTrackKind.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/TouchEvent.js +208 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/TouchEventInit.js +89 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/TreeWalker.js +236 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/UIEvent.js +235 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/UIEventInit.js +59 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ValidityState.js +228 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/VisibilityState.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/VoidFunction.js +30 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/WebSocket.js +444 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/WheelEvent.js +183 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/WheelEventInit.js +68 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLDocument.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequest.js +617 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestEventTarget.js +341 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestResponseType.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestUpload.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLSerializer.js +133 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/utils.js +141 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/agent-factory.js +15 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/binary-data.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/create-element.js +320 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/create-event-accessor.js +188 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/custom-elements.js +270 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/dates-and-times.js +270 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/details.js +15 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/document-base-url.js +54 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/events.js +24 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/focusing.js +104 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/form-controls.js +306 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/html-constructor.js +78 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/http-request.js +254 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/internal-constants.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/iterable-weak-set.js +48 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/json.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/mutation-observers.js +198 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/namespaces.js +15 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/node.js +68 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/number-and-date-inputs.js +195 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/ordered-set.js +104 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js +76 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/selectors.js +47 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/shadow-dom.js +285 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/strings.js +148 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/style-rules.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/stylesheets.js +113 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/svg/basic-types.js +41 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/svg/render.js +46 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/text.js +19 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/traversal.js +72 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/validate-names.js +75 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/hr-time/Performance-impl.js +25 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/interfaces.js +217 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationObserver-impl.js +95 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationRecord-impl.js +37 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/named-properties-window.js +141 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/MimeType-impl.js +3 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/MimeTypeArray-impl.js +21 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/Navigator-impl.js +29 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js +8 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorCookies-impl.js +7 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorID-impl.js +37 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorLanguage-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorOnLine-impl.js +7 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorPlugins-impl.js +8 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/Plugin-impl.js +3 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/PluginArray-impl.js +23 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/node-document-position.js +10 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/node-type.js +16 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/node.js +331 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/CDATASection-impl.js +16 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/CharacterData-impl.js +118 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js +80 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Comment-impl.js +20 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DOMImplementation-impl.js +120 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DOMStringMap-impl.js +64 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DOMTokenList-impl.js +171 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Document-impl.js +946 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DocumentFragment-impl.js +44 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DocumentOrShadowRoot-impl.js +28 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DocumentType-impl.js +24 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Element-impl.js +578 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ElementCSSInlineStyle-impl.js +25 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ElementContentEditable-impl.js +7 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/GlobalEventHandlers-impl.js +95 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAnchorElement-impl.js +50 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAreaElement-impl.js +43 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAudioElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBRElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBaseElement-impl.js +27 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBodyElement-impl.js +17 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js +79 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCanvasElement-impl.js +130 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCollection-impl.js +96 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDListElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataListElement-impl.js +20 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDetailsElement-impl.js +35 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDialogElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDirectoryElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDivElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js +160 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLEmbedElement-impl.js +8 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFieldSetElement-impl.js +43 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFontElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js +226 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameElement-impl.js +261 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameSetElement-impl.js +17 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHRElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadingElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHtmlElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHyperlinkElementUtils-impl.js +371 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLIFrameElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLImageElement-impl.js +132 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js +1128 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLIElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLabelElement-impl.js +94 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLegendElement-impl.js +18 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLinkElement-impl.js +101 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMapElement-impl.js +13 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMarqueeElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMediaElement-impl.js +138 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMenuElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMetaElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMeterElement-impl.js +180 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLModElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js +22 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js +26 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptGroupElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionElement-impl.js +146 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionsCollection-impl.js +110 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js +85 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOutputElement-impl.js +88 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParagraphElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParamElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPictureElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPreElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLProgressElement-impl.js +74 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLQuoteElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLScriptElement-impl.js +265 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSelectElement-impl.js +283 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSlotElement-impl.js +59 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSourceElement-impl.js +8 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSpanElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl.js +74 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCaptionElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCellElement-impl.js +73 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableColElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableElement-impl.js +236 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableRowElement-impl.js +88 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js +61 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTemplateElement-impl.js +67 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js +272 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTimeElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTitleElement-impl.js +18 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js +13 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUListElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUnknownElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLVideoElement-impl.js +17 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/LinkStyle-impl.js +2 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Node-impl.js +1165 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/NodeList-impl.js +43 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/NonDocumentTypeChildNode-impl.js +28 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/NonElementParentNode-impl.js +11 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ParentNode-impl.js +91 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ProcessingInstruction-impl.js +22 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGElement-impl.js +64 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js +16 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGSVGElement-impl.js +42 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGTests-impl.js +42 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGTitleElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ShadowRoot-impl.js +40 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Slotable-impl.js +48 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Text-impl.js +96 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/WindowEventHandlers-impl.js +52 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/XMLDocument-impl.js +4 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/post-message.js +39 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/range/AbstractRange-impl.js +43 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/range/Range-impl.js +889 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/range/StaticRange-impl.js +39 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/range/boundary-point.js +47 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/selection/Selection-impl.js +342 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/svg/SVGAnimatedString-impl.js +38 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/svg/SVGListBase.js +195 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/svg/SVGNumber-impl.js +48 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/svg/SVGStringList-impl.js +16 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/traversal/NodeIterator-impl.js +127 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/traversal/TreeWalker-impl.js +217 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/traversal/helpers.js +44 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/websockets/WebSocket-impl-browser.js +175 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/websockets/WebSocket-impl.js +328 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/webstorage/Storage-impl.js +102 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/BarProp-impl.js +10 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/External-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/History-impl.js +134 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/Location-impl.js +238 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/Screen-impl.js +13 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/SessionHistory.js +163 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/navigation.js +85 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/xhr/FormData-impl.js +171 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequest-impl.js +1023 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestEventTarget-impl.js +17 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestUpload-impl.js +4 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/xhr/xhr-sync-worker.js +60 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/xhr/xhr-utils.js +438 -0
- package/tests/node_modules/jsdom/lib/jsdom/named-properties-tracker.js +158 -0
- package/tests/node_modules/jsdom/lib/jsdom/utils.js +165 -0
- package/tests/node_modules/jsdom/lib/jsdom/virtual-console.js +34 -0
- package/tests/node_modules/jsdom/lib/jsdom/vm-shim.js +106 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/LICENSE +12 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/README.md +582 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/cookie.js +1671 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/memstore.js +190 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/pathMatch.js +61 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/permuteDomain.js +70 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/pubsuffix-psl.js +38 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/store.js +76 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/version.js +2 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/package.json +109 -0
- package/tests/node_modules/jsdom/package.json +116 -0
- package/tests/node_modules/levn/LICENSE +22 -0
- package/tests/node_modules/levn/README.md +196 -0
- package/tests/node_modules/levn/lib/cast.js +298 -0
- package/tests/node_modules/levn/lib/coerce.js +285 -0
- package/tests/node_modules/levn/lib/index.js +22 -0
- package/tests/node_modules/levn/lib/parse-string.js +113 -0
- package/tests/node_modules/levn/lib/parse.js +102 -0
- package/tests/node_modules/levn/package.json +47 -0
- package/tests/node_modules/lodash.clonedeep/LICENSE +47 -0
- package/tests/node_modules/lodash.clonedeep/README.md +18 -0
- package/tests/node_modules/lodash.clonedeep/index.js +1748 -0
- package/tests/node_modules/lodash.clonedeep/package.json +17 -0
- package/tests/node_modules/lodash.merge/LICENSE +47 -0
- package/tests/node_modules/lodash.merge/README.md +18 -0
- package/tests/node_modules/lodash.merge/index.js +1977 -0
- package/tests/node_modules/lodash.merge/package.json +16 -0
- package/tests/node_modules/media-typer/HISTORY.md +22 -0
- package/tests/node_modules/media-typer/LICENSE +22 -0
- package/tests/node_modules/media-typer/README.md +81 -0
- package/tests/node_modules/media-typer/index.js +270 -0
- package/tests/node_modules/media-typer/package.json +26 -0
- package/tests/node_modules/merge-descriptors/HISTORY.md +21 -0
- package/tests/node_modules/merge-descriptors/LICENSE +23 -0
- package/tests/node_modules/merge-descriptors/README.md +48 -0
- package/tests/node_modules/merge-descriptors/index.js +60 -0
- package/tests/node_modules/merge-descriptors/package.json +32 -0
- package/tests/node_modules/methods/HISTORY.md +29 -0
- package/tests/node_modules/methods/LICENSE +24 -0
- package/tests/node_modules/methods/README.md +51 -0
- package/tests/node_modules/methods/index.js +69 -0
- package/tests/node_modules/methods/package.json +36 -0
- package/tests/node_modules/mime/CHANGELOG.md +164 -0
- package/tests/node_modules/mime/LICENSE +21 -0
- package/tests/node_modules/mime/README.md +90 -0
- package/tests/node_modules/mime/cli.js +8 -0
- package/tests/node_modules/mime/mime.js +108 -0
- package/tests/node_modules/mime/package.json +44 -0
- package/tests/node_modules/mime/src/build.js +53 -0
- package/tests/node_modules/mime/src/test.js +60 -0
- package/tests/node_modules/mime/types.json +1 -0
- package/tests/node_modules/mime-db/HISTORY.md +507 -0
- package/tests/node_modules/mime-db/LICENSE +23 -0
- package/tests/node_modules/mime-db/README.md +100 -0
- package/tests/node_modules/mime-db/db.json +8519 -0
- package/tests/node_modules/mime-db/index.js +12 -0
- package/tests/node_modules/mime-db/package.json +60 -0
- package/tests/node_modules/mime-types/HISTORY.md +397 -0
- package/tests/node_modules/mime-types/LICENSE +23 -0
- package/tests/node_modules/mime-types/README.md +113 -0
- package/tests/node_modules/mime-types/index.js +188 -0
- package/tests/node_modules/mime-types/package.json +44 -0
- package/tests/node_modules/ms/index.js +152 -0
- package/tests/node_modules/ms/license.md +21 -0
- package/tests/node_modules/ms/package.json +37 -0
- package/tests/node_modules/ms/readme.md +51 -0
- package/tests/node_modules/negotiator/HISTORY.md +108 -0
- package/tests/node_modules/negotiator/LICENSE +24 -0
- package/tests/node_modules/negotiator/README.md +203 -0
- package/tests/node_modules/negotiator/index.js +82 -0
- package/tests/node_modules/negotiator/lib/charset.js +169 -0
- package/tests/node_modules/negotiator/lib/encoding.js +184 -0
- package/tests/node_modules/negotiator/lib/language.js +179 -0
- package/tests/node_modules/negotiator/lib/mediaType.js +294 -0
- package/tests/node_modules/negotiator/package.json +42 -0
- package/tests/node_modules/nwsapi/LICENSE +22 -0
- package/tests/node_modules/nwsapi/README.md +132 -0
- package/tests/node_modules/nwsapi/dist/lint.log +0 -0
- package/tests/node_modules/nwsapi/package.json +38 -0
- package/tests/node_modules/nwsapi/src/modules/nwsapi-jquery.js +135 -0
- package/tests/node_modules/nwsapi/src/modules/nwsapi-traversal.js +90 -0
- package/tests/node_modules/nwsapi/src/nwsapi.js +1800 -0
- package/tests/node_modules/object-inspect/.eslintrc +53 -0
- package/tests/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/tests/node_modules/object-inspect/.nycrc +13 -0
- package/tests/node_modules/object-inspect/CHANGELOG.md +360 -0
- package/tests/node_modules/object-inspect/LICENSE +21 -0
- package/tests/node_modules/object-inspect/example/all.js +23 -0
- package/tests/node_modules/object-inspect/example/circular.js +6 -0
- package/tests/node_modules/object-inspect/example/fn.js +5 -0
- package/tests/node_modules/object-inspect/example/inspect.js +10 -0
- package/tests/node_modules/object-inspect/index.js +512 -0
- package/tests/node_modules/object-inspect/package-support.json +20 -0
- package/tests/node_modules/object-inspect/package.json +94 -0
- package/tests/node_modules/object-inspect/readme.markdown +86 -0
- package/tests/node_modules/object-inspect/test/bigint.js +58 -0
- package/tests/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/tests/node_modules/object-inspect/test/circular.js +16 -0
- package/tests/node_modules/object-inspect/test/deep.js +12 -0
- package/tests/node_modules/object-inspect/test/element.js +53 -0
- package/tests/node_modules/object-inspect/test/err.js +48 -0
- package/tests/node_modules/object-inspect/test/fakes.js +29 -0
- package/tests/node_modules/object-inspect/test/fn.js +76 -0
- package/tests/node_modules/object-inspect/test/has.js +15 -0
- package/tests/node_modules/object-inspect/test/holes.js +15 -0
- package/tests/node_modules/object-inspect/test/indent-option.js +271 -0
- package/tests/node_modules/object-inspect/test/inspect.js +139 -0
- package/tests/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/tests/node_modules/object-inspect/test/number.js +58 -0
- package/tests/node_modules/object-inspect/test/quoteStyle.js +17 -0
- package/tests/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/tests/node_modules/object-inspect/test/undef.js +12 -0
- package/tests/node_modules/object-inspect/test/values.js +211 -0
- package/tests/node_modules/object-inspect/test-core-js.js +26 -0
- package/tests/node_modules/object-inspect/util.inspect.js +1 -0
- package/tests/node_modules/on-finished/HISTORY.md +98 -0
- package/tests/node_modules/on-finished/LICENSE +23 -0
- package/tests/node_modules/on-finished/README.md +162 -0
- package/tests/node_modules/on-finished/index.js +234 -0
- package/tests/node_modules/on-finished/package.json +39 -0
- package/tests/node_modules/optionator/CHANGELOG.md +56 -0
- package/tests/node_modules/optionator/LICENSE +22 -0
- package/tests/node_modules/optionator/README.md +238 -0
- package/tests/node_modules/optionator/lib/help.js +260 -0
- package/tests/node_modules/optionator/lib/index.js +465 -0
- package/tests/node_modules/optionator/lib/util.js +54 -0
- package/tests/node_modules/optionator/package.json +44 -0
- package/tests/node_modules/parse5/LICENSE +19 -0
- package/tests/node_modules/parse5/README.md +38 -0
- package/tests/node_modules/parse5/lib/common/doctype.js +162 -0
- package/tests/node_modules/parse5/lib/common/error-codes.js +65 -0
- package/tests/node_modules/parse5/lib/common/foreign-content.js +265 -0
- package/tests/node_modules/parse5/lib/common/html.js +272 -0
- package/tests/node_modules/parse5/lib/common/unicode.js +109 -0
- package/tests/node_modules/parse5/lib/extensions/error-reporting/mixin-base.js +43 -0
- package/tests/node_modules/parse5/lib/extensions/error-reporting/parser-mixin.js +52 -0
- package/tests/node_modules/parse5/lib/extensions/error-reporting/preprocessor-mixin.js +24 -0
- package/tests/node_modules/parse5/lib/extensions/error-reporting/tokenizer-mixin.js +17 -0
- package/tests/node_modules/parse5/lib/extensions/location-info/open-element-stack-mixin.js +35 -0
- package/tests/node_modules/parse5/lib/extensions/location-info/parser-mixin.js +223 -0
- package/tests/node_modules/parse5/lib/extensions/location-info/tokenizer-mixin.js +146 -0
- package/tests/node_modules/parse5/lib/extensions/position-tracking/preprocessor-mixin.js +64 -0
- package/tests/node_modules/parse5/lib/index.js +29 -0
- package/tests/node_modules/parse5/lib/parser/formatting-element-list.js +181 -0
- package/tests/node_modules/parse5/lib/parser/index.js +2956 -0
- package/tests/node_modules/parse5/lib/parser/open-element-stack.js +482 -0
- package/tests/node_modules/parse5/lib/serializer/index.js +176 -0
- package/tests/node_modules/parse5/lib/tokenizer/index.js +2196 -0
- package/tests/node_modules/parse5/lib/tokenizer/named-entity-data.js +5 -0
- package/tests/node_modules/parse5/lib/tokenizer/preprocessor.js +159 -0
- package/tests/node_modules/parse5/lib/tree-adapters/default.js +221 -0
- package/tests/node_modules/parse5/lib/utils/merge-options.js +13 -0
- package/tests/node_modules/parse5/lib/utils/mixin.js +39 -0
- package/tests/node_modules/parse5/package.json +35 -0
- package/tests/node_modules/parseurl/HISTORY.md +58 -0
- package/tests/node_modules/parseurl/LICENSE +24 -0
- package/tests/node_modules/parseurl/README.md +133 -0
- package/tests/node_modules/parseurl/index.js +158 -0
- package/tests/node_modules/parseurl/package.json +40 -0
- package/tests/node_modules/path-to-regexp/History.md +36 -0
- package/tests/node_modules/path-to-regexp/LICENSE +21 -0
- package/tests/node_modules/path-to-regexp/Readme.md +35 -0
- package/tests/node_modules/path-to-regexp/index.js +129 -0
- package/tests/node_modules/path-to-regexp/package.json +30 -0
- package/tests/node_modules/prelude-ls/CHANGELOG.md +99 -0
- package/tests/node_modules/prelude-ls/LICENSE +22 -0
- package/tests/node_modules/prelude-ls/README.md +15 -0
- package/tests/node_modules/prelude-ls/lib/Func.js +65 -0
- package/tests/node_modules/prelude-ls/lib/List.js +686 -0
- package/tests/node_modules/prelude-ls/lib/Num.js +130 -0
- package/tests/node_modules/prelude-ls/lib/Obj.js +154 -0
- package/tests/node_modules/prelude-ls/lib/Str.js +92 -0
- package/tests/node_modules/prelude-ls/lib/index.js +178 -0
- package/tests/node_modules/prelude-ls/package.json +52 -0
- package/tests/node_modules/process-nextick-args/index.js +45 -0
- package/tests/node_modules/process-nextick-args/license.md +19 -0
- package/tests/node_modules/process-nextick-args/package.json +25 -0
- package/tests/node_modules/process-nextick-args/readme.md +18 -0
- package/tests/node_modules/proxy-addr/HISTORY.md +161 -0
- package/tests/node_modules/proxy-addr/LICENSE +22 -0
- package/tests/node_modules/proxy-addr/README.md +139 -0
- package/tests/node_modules/proxy-addr/index.js +327 -0
- package/tests/node_modules/proxy-addr/package.json +47 -0
- package/tests/node_modules/psl/LICENSE +9 -0
- package/tests/node_modules/psl/README.md +215 -0
- package/tests/node_modules/psl/browserstack-logo.svg +90 -0
- package/tests/node_modules/psl/data/rules.json +8834 -0
- package/tests/node_modules/psl/dist/psl.js +9645 -0
- package/tests/node_modules/psl/dist/psl.min.js +1 -0
- package/tests/node_modules/psl/index.js +269 -0
- package/tests/node_modules/psl/package.json +44 -0
- package/tests/node_modules/punycode/LICENSE-MIT.txt +20 -0
- package/tests/node_modules/punycode/README.md +122 -0
- package/tests/node_modules/punycode/package.json +58 -0
- package/tests/node_modules/punycode/punycode.es6.js +441 -0
- package/tests/node_modules/punycode/punycode.js +440 -0
- package/tests/node_modules/qs/.editorconfig +40 -0
- package/tests/node_modules/qs/.eslintrc +38 -0
- package/tests/node_modules/qs/.github/FUNDING.yml +12 -0
- package/tests/node_modules/qs/.nycrc +13 -0
- package/tests/node_modules/qs/CHANGELOG.md +388 -0
- package/tests/node_modules/qs/LICENSE.md +29 -0
- package/tests/node_modules/qs/README.md +623 -0
- package/tests/node_modules/qs/dist/qs.js +2044 -0
- package/tests/node_modules/qs/lib/formats.js +23 -0
- package/tests/node_modules/qs/lib/index.js +11 -0
- package/tests/node_modules/qs/lib/parse.js +263 -0
- package/tests/node_modules/qs/lib/stringify.js +317 -0
- package/tests/node_modules/qs/lib/utils.js +252 -0
- package/tests/node_modules/qs/package.json +73 -0
- package/tests/node_modules/qs/test/parse.js +841 -0
- package/tests/node_modules/qs/test/stringify.js +865 -0
- package/tests/node_modules/qs/test/utils.js +136 -0
- package/tests/node_modules/range-parser/HISTORY.md +56 -0
- package/tests/node_modules/range-parser/LICENSE +23 -0
- package/tests/node_modules/range-parser/README.md +84 -0
- package/tests/node_modules/range-parser/index.js +162 -0
- package/tests/node_modules/range-parser/package.json +44 -0
- package/tests/node_modules/raw-body/HISTORY.md +303 -0
- package/tests/node_modules/raw-body/LICENSE +22 -0
- package/tests/node_modules/raw-body/README.md +223 -0
- package/tests/node_modules/raw-body/SECURITY.md +24 -0
- package/tests/node_modules/raw-body/index.d.ts +87 -0
- package/tests/node_modules/raw-body/index.js +329 -0
- package/tests/node_modules/raw-body/package.json +49 -0
- package/tests/node_modules/readable-stream/.travis.yml +34 -0
- package/tests/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/tests/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/tests/node_modules/readable-stream/LICENSE +47 -0
- package/tests/node_modules/readable-stream/README.md +58 -0
- package/tests/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/tests/node_modules/readable-stream/duplex-browser.js +1 -0
- package/tests/node_modules/readable-stream/duplex.js +1 -0
- package/tests/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/tests/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/tests/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/tests/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/tests/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/tests/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/tests/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/tests/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/tests/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/tests/node_modules/readable-stream/package.json +52 -0
- package/tests/node_modules/readable-stream/passthrough.js +1 -0
- package/tests/node_modules/readable-stream/readable-browser.js +7 -0
- package/tests/node_modules/readable-stream/readable.js +19 -0
- package/tests/node_modules/readable-stream/transform.js +1 -0
- package/tests/node_modules/readable-stream/writable-browser.js +1 -0
- package/tests/node_modules/readable-stream/writable.js +8 -0
- package/tests/node_modules/safe-buffer/LICENSE +21 -0
- package/tests/node_modules/safe-buffer/README.md +584 -0
- package/tests/node_modules/safe-buffer/index.d.ts +187 -0
- package/tests/node_modules/safe-buffer/index.js +62 -0
- package/tests/node_modules/safe-buffer/package.json +37 -0
- package/tests/node_modules/safer-buffer/LICENSE +21 -0
- package/tests/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/tests/node_modules/safer-buffer/Readme.md +156 -0
- package/tests/node_modules/safer-buffer/dangerous.js +58 -0
- package/tests/node_modules/safer-buffer/package.json +34 -0
- package/tests/node_modules/safer-buffer/safer.js +77 -0
- package/tests/node_modules/safer-buffer/tests.js +406 -0
- package/tests/node_modules/saxes/README.md +323 -0
- package/tests/node_modules/saxes/package.json +70 -0
- package/tests/node_modules/saxes/saxes.d.ts +635 -0
- package/tests/node_modules/saxes/saxes.js +2064 -0
- package/tests/node_modules/saxes/saxes.js.map +1 -0
- package/tests/node_modules/send/HISTORY.md +521 -0
- package/tests/node_modules/send/LICENSE +23 -0
- package/tests/node_modules/send/README.md +327 -0
- package/tests/node_modules/send/SECURITY.md +24 -0
- package/tests/node_modules/send/index.js +1143 -0
- package/tests/node_modules/send/node_modules/ms/index.js +162 -0
- package/tests/node_modules/send/node_modules/ms/license.md +21 -0
- package/tests/node_modules/send/node_modules/ms/package.json +38 -0
- package/tests/node_modules/send/node_modules/ms/readme.md +59 -0
- package/tests/node_modules/send/package.json +62 -0
- package/tests/node_modules/serve-static/HISTORY.md +471 -0
- package/tests/node_modules/serve-static/LICENSE +25 -0
- package/tests/node_modules/serve-static/README.md +257 -0
- package/tests/node_modules/serve-static/index.js +210 -0
- package/tests/node_modules/serve-static/package.json +42 -0
- package/tests/node_modules/setprototypeof/LICENSE +13 -0
- package/tests/node_modules/setprototypeof/README.md +31 -0
- package/tests/node_modules/setprototypeof/index.d.ts +2 -0
- package/tests/node_modules/setprototypeof/index.js +17 -0
- package/tests/node_modules/setprototypeof/package.json +38 -0
- package/tests/node_modules/setprototypeof/test/index.js +24 -0
- package/tests/node_modules/side-channel/.eslintignore +1 -0
- package/tests/node_modules/side-channel/.eslintrc +11 -0
- package/tests/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/tests/node_modules/side-channel/.nycrc +13 -0
- package/tests/node_modules/side-channel/CHANGELOG.md +65 -0
- package/tests/node_modules/side-channel/LICENSE +21 -0
- package/tests/node_modules/side-channel/README.md +2 -0
- package/tests/node_modules/side-channel/index.js +124 -0
- package/tests/node_modules/side-channel/package.json +67 -0
- package/tests/node_modules/side-channel/test/index.js +78 -0
- package/tests/node_modules/source-map/CHANGELOG.md +301 -0
- package/tests/node_modules/source-map/LICENSE +28 -0
- package/tests/node_modules/source-map/README.md +742 -0
- package/tests/node_modules/source-map/dist/source-map.debug.js +3234 -0
- package/tests/node_modules/source-map/dist/source-map.js +3233 -0
- package/tests/node_modules/source-map/dist/source-map.min.js +2 -0
- package/tests/node_modules/source-map/dist/source-map.min.js.map +1 -0
- package/tests/node_modules/source-map/lib/array-set.js +121 -0
- package/tests/node_modules/source-map/lib/base64-vlq.js +140 -0
- package/tests/node_modules/source-map/lib/base64.js +67 -0
- package/tests/node_modules/source-map/lib/binary-search.js +111 -0
- package/tests/node_modules/source-map/lib/mapping-list.js +79 -0
- package/tests/node_modules/source-map/lib/quick-sort.js +114 -0
- package/tests/node_modules/source-map/lib/source-map-consumer.js +1145 -0
- package/tests/node_modules/source-map/lib/source-map-generator.js +425 -0
- package/tests/node_modules/source-map/lib/source-node.js +413 -0
- package/tests/node_modules/source-map/lib/util.js +488 -0
- package/tests/node_modules/source-map/package.json +73 -0
- package/tests/node_modules/source-map/source-map.d.ts +98 -0
- package/tests/node_modules/source-map/source-map.js +8 -0
- package/tests/node_modules/statuses/HISTORY.md +82 -0
- package/tests/node_modules/statuses/LICENSE +23 -0
- package/tests/node_modules/statuses/README.md +136 -0
- package/tests/node_modules/statuses/codes.json +65 -0
- package/tests/node_modules/statuses/index.js +146 -0
- package/tests/node_modules/statuses/package.json +49 -0
- package/tests/node_modules/stream-length/README.md +97 -0
- package/tests/node_modules/stream-length/gulpfile.js +28 -0
- package/tests/node_modules/stream-length/index.coffee +1 -0
- package/tests/node_modules/stream-length/index.js +1 -0
- package/tests/node_modules/stream-length/lib/stream-length.coffee +82 -0
- package/tests/node_modules/stream-length/lib/stream-length.js +110 -0
- package/tests/node_modules/stream-length/package.json +36 -0
- package/tests/node_modules/stream-length/test-any.coffee +59 -0
- package/tests/node_modules/stream-length/test.coffee +57 -0
- package/tests/node_modules/string_decoder/.travis.yml +50 -0
- package/tests/node_modules/string_decoder/LICENSE +48 -0
- package/tests/node_modules/string_decoder/README.md +47 -0
- package/tests/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/tests/node_modules/string_decoder/package.json +31 -0
- package/tests/node_modules/symbol-tree/LICENSE +21 -0
- package/tests/node_modules/symbol-tree/README.md +545 -0
- package/tests/node_modules/symbol-tree/lib/SymbolTree.js +838 -0
- package/tests/node_modules/symbol-tree/lib/SymbolTreeNode.js +54 -0
- package/tests/node_modules/symbol-tree/lib/TreeIterator.js +69 -0
- package/tests/node_modules/symbol-tree/lib/TreePosition.js +11 -0
- package/tests/node_modules/symbol-tree/package.json +47 -0
- package/tests/node_modules/through2/LICENSE +39 -0
- package/tests/node_modules/through2/README.md +140 -0
- package/tests/node_modules/through2/node_modules/isarray/README.md +54 -0
- package/tests/node_modules/through2/node_modules/isarray/build/build.js +209 -0
- package/tests/node_modules/through2/node_modules/isarray/component.json +19 -0
- package/tests/node_modules/through2/node_modules/isarray/index.js +3 -0
- package/tests/node_modules/through2/node_modules/isarray/package.json +25 -0
- package/tests/node_modules/through2/node_modules/readable-stream/LICENSE +18 -0
- package/tests/node_modules/through2/node_modules/readable-stream/README.md +15 -0
- package/tests/node_modules/through2/node_modules/readable-stream/duplex.js +1 -0
- package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
- package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
- package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_readable.js +982 -0
- package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_transform.js +210 -0
- package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_writable.js +386 -0
- package/tests/node_modules/through2/node_modules/readable-stream/package.json +32 -0
- package/tests/node_modules/through2/node_modules/readable-stream/passthrough.js +1 -0
- package/tests/node_modules/through2/node_modules/readable-stream/readable.js +11 -0
- package/tests/node_modules/through2/node_modules/readable-stream/transform.js +1 -0
- package/tests/node_modules/through2/node_modules/readable-stream/writable.js +1 -0
- package/tests/node_modules/through2/node_modules/string_decoder/LICENSE +20 -0
- package/tests/node_modules/through2/node_modules/string_decoder/README.md +7 -0
- package/tests/node_modules/through2/node_modules/string_decoder/index.js +221 -0
- package/tests/node_modules/through2/node_modules/string_decoder/package.json +25 -0
- package/tests/node_modules/through2/package.json +32 -0
- package/tests/node_modules/through2/through2.js +78 -0
- package/tests/node_modules/through2-sink/README.md +85 -0
- package/tests/node_modules/through2-sink/index.js +44 -0
- package/tests/node_modules/through2-sink/package.json +30 -0
- package/tests/node_modules/through2-spy/LICENSE +9 -0
- package/tests/node_modules/through2-spy/README.md +86 -0
- package/tests/node_modules/through2-spy/index.js +45 -0
- package/tests/node_modules/through2-spy/package.json +48 -0
- package/tests/node_modules/through2-spy/test/index.js +284 -0
- package/tests/node_modules/toidentifier/HISTORY.md +9 -0
- package/tests/node_modules/toidentifier/LICENSE +21 -0
- package/tests/node_modules/toidentifier/README.md +61 -0
- package/tests/node_modules/toidentifier/index.js +32 -0
- package/tests/node_modules/toidentifier/package.json +38 -0
- package/tests/node_modules/tough-cookie/LICENSE +12 -0
- package/tests/node_modules/tough-cookie/README.md +527 -0
- package/tests/node_modules/tough-cookie/lib/cookie.js +1482 -0
- package/tests/node_modules/tough-cookie/lib/memstore.js +181 -0
- package/tests/node_modules/tough-cookie/lib/pathMatch.js +61 -0
- package/tests/node_modules/tough-cookie/lib/permuteDomain.js +56 -0
- package/tests/node_modules/tough-cookie/lib/pubsuffix-psl.js +38 -0
- package/tests/node_modules/tough-cookie/lib/store.js +75 -0
- package/tests/node_modules/tough-cookie/lib/version.js +2 -0
- package/tests/node_modules/tough-cookie/package.json +78 -0
- package/tests/node_modules/tr46/LICENSE.md +21 -0
- package/tests/node_modules/tr46/README.md +72 -0
- package/tests/node_modules/tr46/index.js +297 -0
- package/tests/node_modules/tr46/lib/mappingTable.json +1 -0
- package/tests/node_modules/tr46/lib/regexes.js +29 -0
- package/tests/node_modules/tr46/lib/statusMapping.js +11 -0
- package/tests/node_modules/tr46/package.json +46 -0
- package/tests/node_modules/type-check/LICENSE +22 -0
- package/tests/node_modules/type-check/README.md +210 -0
- package/tests/node_modules/type-check/lib/check.js +126 -0
- package/tests/node_modules/type-check/lib/index.js +16 -0
- package/tests/node_modules/type-check/lib/parse-type.js +196 -0
- package/tests/node_modules/type-check/package.json +40 -0
- package/tests/node_modules/type-is/HISTORY.md +259 -0
- package/tests/node_modules/type-is/LICENSE +23 -0
- package/tests/node_modules/type-is/README.md +170 -0
- package/tests/node_modules/type-is/index.js +266 -0
- package/tests/node_modules/type-is/package.json +45 -0
- package/tests/node_modules/typedarray/.travis.yml +4 -0
- package/tests/node_modules/typedarray/LICENSE +35 -0
- package/tests/node_modules/typedarray/example/tarray.js +4 -0
- package/tests/node_modules/typedarray/index.js +630 -0
- package/tests/node_modules/typedarray/package.json +55 -0
- package/tests/node_modules/typedarray/readme.markdown +61 -0
- package/tests/node_modules/typedarray/test/server/undef_globals.js +19 -0
- package/tests/node_modules/typedarray/test/tarray.js +10 -0
- package/tests/node_modules/universalify/LICENSE +20 -0
- package/tests/node_modules/universalify/README.md +76 -0
- package/tests/node_modules/universalify/index.js +25 -0
- package/tests/node_modules/universalify/package.json +34 -0
- package/tests/node_modules/unpipe/HISTORY.md +4 -0
- package/tests/node_modules/unpipe/LICENSE +22 -0
- package/tests/node_modules/unpipe/README.md +43 -0
- package/tests/node_modules/unpipe/index.js +69 -0
- package/tests/node_modules/unpipe/package.json +27 -0
- package/tests/node_modules/unprint/README.md +1 -0
- package/tests/node_modules/unprint/package.json +29 -0
- package/tests/node_modules/unprint/src/app.js +3 -0
- package/tests/node_modules/util-deprecate/History.md +16 -0
- package/tests/node_modules/util-deprecate/LICENSE +24 -0
- package/tests/node_modules/util-deprecate/README.md +53 -0
- package/tests/node_modules/util-deprecate/browser.js +67 -0
- package/tests/node_modules/util-deprecate/node.js +6 -0
- package/tests/node_modules/util-deprecate/package.json +27 -0
- package/tests/node_modules/utils-merge/LICENSE +20 -0
- package/tests/node_modules/utils-merge/README.md +34 -0
- package/tests/node_modules/utils-merge/index.js +23 -0
- package/tests/node_modules/utils-merge/package.json +40 -0
- package/tests/node_modules/uuid/.travis.yml +5 -0
- package/tests/node_modules/uuid/LICENSE.md +2 -0
- package/tests/node_modules/uuid/README.md +205 -0
- package/tests/node_modules/uuid/benchmark/README.md +53 -0
- package/tests/node_modules/uuid/benchmark/bench.gnu +174 -0
- package/tests/node_modules/uuid/benchmark/bench.sh +34 -0
- package/tests/node_modules/uuid/benchmark/benchmark-native.c +34 -0
- package/tests/node_modules/uuid/benchmark/benchmark.js +84 -0
- package/tests/node_modules/uuid/benchmark/package.json +9 -0
- package/tests/node_modules/uuid/misc/compare.js +62 -0
- package/tests/node_modules/uuid/misc/perf.js +102 -0
- package/tests/node_modules/uuid/package.json +46 -0
- package/tests/node_modules/uuid/rng-browser.js +32 -0
- package/tests/node_modules/uuid/rng.js +4 -0
- package/tests/node_modules/uuid/test/mocha.opts +1 -0
- package/tests/node_modules/uuid/test/test.js +105 -0
- package/tests/node_modules/uuid/uuid.js +183 -0
- package/tests/node_modules/vary/HISTORY.md +39 -0
- package/tests/node_modules/vary/LICENSE +22 -0
- package/tests/node_modules/vary/README.md +101 -0
- package/tests/node_modules/vary/index.js +149 -0
- package/tests/node_modules/vary/package.json +43 -0
- package/tests/node_modules/w3c-hr-time/CHANGELOG.md +19 -0
- package/tests/node_modules/w3c-hr-time/LICENSE.md +21 -0
- package/tests/node_modules/w3c-hr-time/README.md +130 -0
- package/tests/node_modules/w3c-hr-time/index.js +11 -0
- package/tests/node_modules/w3c-hr-time/lib/calculate-clock-offset.js +39 -0
- package/tests/node_modules/w3c-hr-time/lib/clock-is-accurate.js +61 -0
- package/tests/node_modules/w3c-hr-time/lib/global-monotonic-clock.js +10 -0
- package/tests/node_modules/w3c-hr-time/lib/performance.js +53 -0
- package/tests/node_modules/w3c-hr-time/lib/utils.js +11 -0
- package/tests/node_modules/w3c-hr-time/package.json +26 -0
- package/tests/node_modules/w3c-xmlserializer/LICENSE.md +25 -0
- package/tests/node_modules/w3c-xmlserializer/README.md +41 -0
- package/tests/node_modules/w3c-xmlserializer/lib/attributes.js +128 -0
- package/tests/node_modules/w3c-xmlserializer/lib/constants.js +44 -0
- package/tests/node_modules/w3c-xmlserializer/lib/serialize.js +371 -0
- package/tests/node_modules/w3c-xmlserializer/package.json +32 -0
- package/tests/node_modules/webidl-conversions/LICENSE.md +12 -0
- package/tests/node_modules/webidl-conversions/README.md +101 -0
- package/tests/node_modules/webidl-conversions/lib/index.js +489 -0
- package/tests/node_modules/webidl-conversions/package.json +30 -0
- package/tests/node_modules/whatwg-encoding/LICENSE.txt +7 -0
- package/tests/node_modules/whatwg-encoding/README.md +50 -0
- package/tests/node_modules/whatwg-encoding/lib/labels-to-names.json +207 -0
- package/tests/node_modules/whatwg-encoding/lib/supported-names.json +37 -0
- package/tests/node_modules/whatwg-encoding/lib/whatwg-encoding.js +47 -0
- package/tests/node_modules/whatwg-encoding/package.json +29 -0
- package/tests/node_modules/whatwg-mimetype/LICENSE.txt +7 -0
- package/tests/node_modules/whatwg-mimetype/README.md +101 -0
- package/tests/node_modules/whatwg-mimetype/lib/mime-type.js +191 -0
- package/tests/node_modules/whatwg-mimetype/lib/parser.js +124 -0
- package/tests/node_modules/whatwg-mimetype/lib/serializer.js +25 -0
- package/tests/node_modules/whatwg-mimetype/lib/utils.js +25 -0
- package/tests/node_modules/whatwg-mimetype/package.json +43 -0
- package/tests/node_modules/whatwg-url/LICENSE.txt +21 -0
- package/tests/node_modules/whatwg-url/README.md +105 -0
- package/tests/node_modules/whatwg-url/dist/Function.js +46 -0
- package/tests/node_modules/whatwg-url/dist/URL-impl.js +217 -0
- package/tests/node_modules/whatwg-url/dist/URL.js +417 -0
- package/tests/node_modules/whatwg-url/dist/URLSearchParams-impl.js +130 -0
- package/tests/node_modules/whatwg-url/dist/URLSearchParams.js +457 -0
- package/tests/node_modules/whatwg-url/dist/VoidFunction.js +30 -0
- package/tests/node_modules/whatwg-url/dist/encoding.js +16 -0
- package/tests/node_modules/whatwg-url/dist/infra.js +26 -0
- package/tests/node_modules/whatwg-url/dist/percent-encoding.js +138 -0
- package/tests/node_modules/whatwg-url/dist/url-state-machine.js +1230 -0
- package/tests/node_modules/whatwg-url/dist/urlencoded.js +102 -0
- package/tests/node_modules/whatwg-url/dist/utils.js +141 -0
- package/tests/node_modules/whatwg-url/index.js +25 -0
- package/tests/node_modules/whatwg-url/package.json +59 -0
- package/tests/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
- package/tests/node_modules/word-wrap/LICENSE +21 -0
- package/tests/node_modules/word-wrap/README.md +182 -0
- package/tests/node_modules/word-wrap/index.d.ts +50 -0
- package/tests/node_modules/word-wrap/index.js +46 -0
- package/tests/node_modules/word-wrap/package.json +77 -0
- package/tests/node_modules/ws/LICENSE +19 -0
- package/tests/node_modules/ws/README.md +495 -0
- package/tests/node_modules/ws/browser.js +8 -0
- package/tests/node_modules/ws/index.js +13 -0
- package/tests/node_modules/ws/lib/buffer-util.js +127 -0
- package/tests/node_modules/ws/lib/constants.js +12 -0
- package/tests/node_modules/ws/lib/event-target.js +266 -0
- package/tests/node_modules/ws/lib/extension.js +203 -0
- package/tests/node_modules/ws/lib/limiter.js +55 -0
- package/tests/node_modules/ws/lib/permessage-deflate.js +511 -0
- package/tests/node_modules/ws/lib/receiver.js +618 -0
- package/tests/node_modules/ws/lib/sender.js +478 -0
- package/tests/node_modules/ws/lib/stream.js +159 -0
- package/tests/node_modules/ws/lib/subprotocol.js +62 -0
- package/tests/node_modules/ws/lib/validation.js +125 -0
- package/tests/node_modules/ws/lib/websocket-server.js +535 -0
- package/tests/node_modules/ws/lib/websocket.js +1296 -0
- package/tests/node_modules/ws/package.json +61 -0
- package/tests/node_modules/ws/wrapper.mjs +8 -0
- package/tests/node_modules/xml-name-validator/LICENSE.txt +176 -0
- package/tests/node_modules/xml-name-validator/README.md +36 -0
- package/tests/node_modules/xml-name-validator/lib/generated-parser.js +504 -0
- package/tests/node_modules/xml-name-validator/lib/grammar.pegjs +35 -0
- package/tests/node_modules/xml-name-validator/lib/xml-name-validator.js +17 -0
- package/tests/node_modules/xml-name-validator/package.json +28 -0
- package/tests/node_modules/xmlchars/LICENSE +18 -0
- package/tests/node_modules/xmlchars/README.md +33 -0
- package/tests/node_modules/xmlchars/package.json +51 -0
- package/tests/node_modules/xmlchars/xml/1.0/ed4.d.ts +31 -0
- package/tests/node_modules/xmlchars/xml/1.0/ed4.js +44 -0
- package/tests/node_modules/xmlchars/xml/1.0/ed4.js.map +1 -0
- package/tests/node_modules/xmlchars/xml/1.0/ed5.d.ts +51 -0
- package/tests/node_modules/xmlchars/xml/1.0/ed5.js +105 -0
- package/tests/node_modules/xmlchars/xml/1.0/ed5.js.map +1 -0
- package/tests/node_modules/xmlchars/xml/1.1/ed2.d.ts +73 -0
- package/tests/node_modules/xmlchars/xml/1.1/ed2.js +145 -0
- package/tests/node_modules/xmlchars/xml/1.1/ed2.js.map +1 -0
- package/tests/node_modules/xmlchars/xmlchars.d.ts +170 -0
- package/tests/node_modules/xmlchars/xmlchars.js +191 -0
- package/tests/node_modules/xmlchars/xmlchars.js.map +1 -0
- package/tests/node_modules/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
- package/tests/node_modules/xmlchars/xmlns/1.0/ed3.js +65 -0
- package/tests/node_modules/xmlchars/xmlns/1.0/ed3.js.map +1 -0
- package/tests/node_modules/xtend/.jshintrc +30 -0
- package/tests/node_modules/xtend/LICENCE +19 -0
- package/tests/node_modules/xtend/Makefile +4 -0
- package/tests/node_modules/xtend/README.md +28 -0
- package/tests/node_modules/xtend/index.js +17 -0
- package/tests/node_modules/xtend/mutable.js +15 -0
- package/tests/node_modules/xtend/package.json +60 -0
- package/tests/node_modules/xtend/test.js +63 -0
- package/tests/package-lock.json +2628 -0
- package/tests/package.json +15 -0
|
@@ -0,0 +1,582 @@
|
|
|
1
|
+
[RFC6265](https://tools.ietf.org/html/rfc6265) Cookies and CookieJar for Node.js
|
|
2
|
+
|
|
3
|
+
[](https://nodei.co/npm/tough-cookie/)
|
|
4
|
+
|
|
5
|
+
[](https://travis-ci.org/salesforce/tough-cookie)
|
|
6
|
+
|
|
7
|
+
# Synopsis
|
|
8
|
+
|
|
9
|
+
``` javascript
|
|
10
|
+
var tough = require('tough-cookie');
|
|
11
|
+
var Cookie = tough.Cookie;
|
|
12
|
+
var cookie = Cookie.parse(header);
|
|
13
|
+
cookie.value = 'somethingdifferent';
|
|
14
|
+
header = cookie.toString();
|
|
15
|
+
|
|
16
|
+
var cookiejar = new tough.CookieJar();
|
|
17
|
+
cookiejar.setCookie(cookie, 'http://currentdomain.example.com/path', cb);
|
|
18
|
+
// ...
|
|
19
|
+
cookiejar.getCookies('http://example.com/otherpath',function(err,cookies) {
|
|
20
|
+
res.headers['cookie'] = cookies.join('; ');
|
|
21
|
+
});
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
# Installation
|
|
25
|
+
|
|
26
|
+
It's _so_ easy!
|
|
27
|
+
|
|
28
|
+
`npm install tough-cookie`
|
|
29
|
+
|
|
30
|
+
Why the name? NPM modules `cookie`, `cookies` and `cookiejar` were already taken.
|
|
31
|
+
|
|
32
|
+
## Version Support
|
|
33
|
+
|
|
34
|
+
Support for versions of node.js will follow that of the [request](https://www.npmjs.com/package/request) module.
|
|
35
|
+
|
|
36
|
+
# API
|
|
37
|
+
|
|
38
|
+
## tough
|
|
39
|
+
|
|
40
|
+
Functions on the module you get from `require('tough-cookie')`. All can be used as pure functions and don't need to be "bound".
|
|
41
|
+
|
|
42
|
+
**Note**: prior to 1.0.x, several of these functions took a `strict` parameter. This has since been removed from the API as it was no longer necessary.
|
|
43
|
+
|
|
44
|
+
### `parseDate(string)`
|
|
45
|
+
|
|
46
|
+
Parse a cookie date string into a `Date`. Parses according to RFC6265 Section 5.1.1, not `Date.parse()`.
|
|
47
|
+
|
|
48
|
+
### `formatDate(date)`
|
|
49
|
+
|
|
50
|
+
Format a Date into a RFC1123 string (the RFC6265-recommended format).
|
|
51
|
+
|
|
52
|
+
### `canonicalDomain(str)`
|
|
53
|
+
|
|
54
|
+
Transforms a domain-name into a canonical domain-name. The canonical domain-name is a trimmed, lowercased, stripped-of-leading-dot and optionally punycode-encoded domain-name (Section 5.1.2 of RFC6265). For the most part, this function is idempotent (can be run again on its output without ill effects).
|
|
55
|
+
|
|
56
|
+
### `domainMatch(str,domStr[,canonicalize=true])`
|
|
57
|
+
|
|
58
|
+
Answers "does this real domain match the domain in a cookie?". The `str` is the "current" domain-name and the `domStr` is the "cookie" domain-name. Matches according to RFC6265 Section 5.1.3, but it helps to think of it as a "suffix match".
|
|
59
|
+
|
|
60
|
+
The `canonicalize` parameter will run the other two parameters through `canonicalDomain` or not.
|
|
61
|
+
|
|
62
|
+
### `defaultPath(path)`
|
|
63
|
+
|
|
64
|
+
Given a current request/response path, gives the Path apropriate for storing in a cookie. This is basically the "directory" of a "file" in the path, but is specified by Section 5.1.4 of the RFC.
|
|
65
|
+
|
|
66
|
+
The `path` parameter MUST be _only_ the pathname part of a URI (i.e. excludes the hostname, query, fragment, etc.). This is the `.pathname` property of node's `uri.parse()` output.
|
|
67
|
+
|
|
68
|
+
### `pathMatch(reqPath,cookiePath)`
|
|
69
|
+
|
|
70
|
+
Answers "does the request-path path-match a given cookie-path?" as per RFC6265 Section 5.1.4. Returns a boolean.
|
|
71
|
+
|
|
72
|
+
This is essentially a prefix-match where `cookiePath` is a prefix of `reqPath`.
|
|
73
|
+
|
|
74
|
+
### `parse(cookieString[, options])`
|
|
75
|
+
|
|
76
|
+
alias for `Cookie.parse(cookieString[, options])`
|
|
77
|
+
|
|
78
|
+
### `fromJSON(string)`
|
|
79
|
+
|
|
80
|
+
alias for `Cookie.fromJSON(string)`
|
|
81
|
+
|
|
82
|
+
### `getPublicSuffix(hostname)`
|
|
83
|
+
|
|
84
|
+
Returns the public suffix of this hostname. The public suffix is the shortest domain-name upon which a cookie can be set. Returns `null` if the hostname cannot have cookies set for it.
|
|
85
|
+
|
|
86
|
+
For example: `www.example.com` and `www.subdomain.example.com` both have public suffix `example.com`.
|
|
87
|
+
|
|
88
|
+
For further information, see http://publicsuffix.org/. This module derives its list from that site. This call is currently a wrapper around [`psl`](https://www.npmjs.com/package/psl)'s [get() method](https://www.npmjs.com/package/psl#pslgetdomain).
|
|
89
|
+
|
|
90
|
+
### `cookieCompare(a,b)`
|
|
91
|
+
|
|
92
|
+
For use with `.sort()`, sorts a list of cookies into the recommended order given in the RFC (Section 5.4 step 2). The sort algorithm is, in order of precedence:
|
|
93
|
+
|
|
94
|
+
* Longest `.path`
|
|
95
|
+
* oldest `.creation` (which has a 1ms precision, same as `Date`)
|
|
96
|
+
* lowest `.creationIndex` (to get beyond the 1ms precision)
|
|
97
|
+
|
|
98
|
+
``` javascript
|
|
99
|
+
var cookies = [ /* unsorted array of Cookie objects */ ];
|
|
100
|
+
cookies = cookies.sort(cookieCompare);
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
**Note**: Since JavaScript's `Date` is limited to a 1ms precision, cookies within the same milisecond are entirely possible. This is especially true when using the `now` option to `.setCookie()`. The `.creationIndex` property is a per-process global counter, assigned during construction with `new Cookie()`. This preserves the spirit of the RFC sorting: older cookies go first. This works great for `MemoryCookieStore`, since `Set-Cookie` headers are parsed in order, but may not be so great for distributed systems. Sophisticated `Store`s may wish to set this to some other _logical clock_ such that if cookies A and B are created in the same millisecond, but cookie A is created before cookie B, then `A.creationIndex < B.creationIndex`. If you want to alter the global counter, which you probably _shouldn't_ do, it's stored in `Cookie.cookiesCreated`.
|
|
104
|
+
|
|
105
|
+
### `permuteDomain(domain)`
|
|
106
|
+
|
|
107
|
+
Generates a list of all possible domains that `domainMatch()` the parameter. May be handy for implementing cookie stores.
|
|
108
|
+
|
|
109
|
+
### `permutePath(path)`
|
|
110
|
+
|
|
111
|
+
Generates a list of all possible paths that `pathMatch()` the parameter. May be handy for implementing cookie stores.
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
## Cookie
|
|
115
|
+
|
|
116
|
+
Exported via `tough.Cookie`.
|
|
117
|
+
|
|
118
|
+
### `Cookie.parse(cookieString[, options])`
|
|
119
|
+
|
|
120
|
+
Parses a single Cookie or Set-Cookie HTTP header into a `Cookie` object. Returns `undefined` if the string can't be parsed.
|
|
121
|
+
|
|
122
|
+
The options parameter is not required and currently has only one property:
|
|
123
|
+
|
|
124
|
+
* _loose_ - boolean - if `true` enable parsing of key-less cookies like `=abc` and `=`, which are not RFC-compliant.
|
|
125
|
+
|
|
126
|
+
If options is not an object, it is ignored, which means you can use `Array#map` with it.
|
|
127
|
+
|
|
128
|
+
Here's how to process the Set-Cookie header(s) on a node HTTP/HTTPS response:
|
|
129
|
+
|
|
130
|
+
``` javascript
|
|
131
|
+
if (res.headers['set-cookie'] instanceof Array)
|
|
132
|
+
cookies = res.headers['set-cookie'].map(Cookie.parse);
|
|
133
|
+
else
|
|
134
|
+
cookies = [Cookie.parse(res.headers['set-cookie'])];
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
_Note:_ in version 2.3.3, tough-cookie limited the number of spaces before the `=` to 256 characters. This limitation has since been removed.
|
|
138
|
+
See [Issue 92](https://github.com/salesforce/tough-cookie/issues/92)
|
|
139
|
+
|
|
140
|
+
### Properties
|
|
141
|
+
|
|
142
|
+
Cookie object properties:
|
|
143
|
+
|
|
144
|
+
* _key_ - string - the name or key of the cookie (default "")
|
|
145
|
+
* _value_ - string - the value of the cookie (default "")
|
|
146
|
+
* _expires_ - `Date` - if set, the `Expires=` attribute of the cookie (defaults to the string `"Infinity"`). See `setExpires()`
|
|
147
|
+
* _maxAge_ - seconds - if set, the `Max-Age=` attribute _in seconds_ of the cookie. May also be set to strings `"Infinity"` and `"-Infinity"` for non-expiry and immediate-expiry, respectively. See `setMaxAge()`
|
|
148
|
+
* _domain_ - string - the `Domain=` attribute of the cookie
|
|
149
|
+
* _path_ - string - the `Path=` of the cookie
|
|
150
|
+
* _secure_ - boolean - the `Secure` cookie flag
|
|
151
|
+
* _httpOnly_ - boolean - the `HttpOnly` cookie flag
|
|
152
|
+
* _sameSite_ - string - the `SameSite` cookie attribute (from [RFC6265bis]); must be one of `none`, `lax`, or `strict`
|
|
153
|
+
* _extensions_ - `Array` - any unrecognized cookie attributes as strings (even if equal-signs inside)
|
|
154
|
+
* _creation_ - `Date` - when this cookie was constructed
|
|
155
|
+
* _creationIndex_ - number - set at construction, used to provide greater sort precision (please see `cookieCompare(a,b)` for a full explanation)
|
|
156
|
+
|
|
157
|
+
After a cookie has been passed through `CookieJar.setCookie()` it will have the following additional attributes:
|
|
158
|
+
|
|
159
|
+
* _hostOnly_ - boolean - is this a host-only cookie (i.e. no Domain field was set, but was instead implied)
|
|
160
|
+
* _pathIsDefault_ - boolean - if true, there was no Path field on the cookie and `defaultPath()` was used to derive one.
|
|
161
|
+
* _creation_ - `Date` - **modified** from construction to when the cookie was added to the jar
|
|
162
|
+
* _lastAccessed_ - `Date` - last time the cookie got accessed. Will affect cookie cleaning once implemented. Using `cookiejar.getCookies(...)` will update this attribute.
|
|
163
|
+
|
|
164
|
+
### `Cookie([{properties}])`
|
|
165
|
+
|
|
166
|
+
Receives an options object that can contain any of the above Cookie properties, uses the default for unspecified properties.
|
|
167
|
+
|
|
168
|
+
### `.toString()`
|
|
169
|
+
|
|
170
|
+
encode to a Set-Cookie header value. The Expires cookie field is set using `formatDate()`, but is omitted entirely if `.expires` is `Infinity`.
|
|
171
|
+
|
|
172
|
+
### `.cookieString()`
|
|
173
|
+
|
|
174
|
+
encode to a Cookie header value (i.e. the `.key` and `.value` properties joined with '=').
|
|
175
|
+
|
|
176
|
+
### `.setExpires(String)`
|
|
177
|
+
|
|
178
|
+
sets the expiry based on a date-string passed through `parseDate()`. If parseDate returns `null` (i.e. can't parse this date string), `.expires` is set to `"Infinity"` (a string) is set.
|
|
179
|
+
|
|
180
|
+
### `.setMaxAge(number)`
|
|
181
|
+
|
|
182
|
+
sets the maxAge in seconds. Coerces `-Infinity` to `"-Infinity"` and `Infinity` to `"Infinity"` so it JSON serializes correctly.
|
|
183
|
+
|
|
184
|
+
### `.expiryTime([now=Date.now()])`
|
|
185
|
+
|
|
186
|
+
### `.expiryDate([now=Date.now()])`
|
|
187
|
+
|
|
188
|
+
expiryTime() Computes the absolute unix-epoch milliseconds that this cookie expires. expiryDate() works similarly, except it returns a `Date` object. Note that in both cases the `now` parameter should be milliseconds.
|
|
189
|
+
|
|
190
|
+
Max-Age takes precedence over Expires (as per the RFC). The `.creation` attribute -- or, by default, the `now` parameter -- is used to offset the `.maxAge` attribute.
|
|
191
|
+
|
|
192
|
+
If Expires (`.expires`) is set, that's returned.
|
|
193
|
+
|
|
194
|
+
Otherwise, `expiryTime()` returns `Infinity` and `expiryDate()` returns a `Date` object for "Tue, 19 Jan 2038 03:14:07 GMT" (latest date that can be expressed by a 32-bit `time_t`; the common limit for most user-agents).
|
|
195
|
+
|
|
196
|
+
### `.TTL([now=Date.now()])`
|
|
197
|
+
|
|
198
|
+
compute the TTL relative to `now` (milliseconds). The same precedence rules as for `expiryTime`/`expiryDate` apply.
|
|
199
|
+
|
|
200
|
+
The "number" `Infinity` is returned for cookies without an explicit expiry and `0` is returned if the cookie is expired. Otherwise a time-to-live in milliseconds is returned.
|
|
201
|
+
|
|
202
|
+
### `.canonicalizedDomain()`
|
|
203
|
+
|
|
204
|
+
### `.cdomain()`
|
|
205
|
+
|
|
206
|
+
return the canonicalized `.domain` field. This is lower-cased and punycode (RFC3490) encoded if the domain has any non-ASCII characters.
|
|
207
|
+
|
|
208
|
+
### `.toJSON()`
|
|
209
|
+
|
|
210
|
+
For convenience in using `JSON.serialize(cookie)`. Returns a plain-old `Object` that can be JSON-serialized.
|
|
211
|
+
|
|
212
|
+
Any `Date` properties (i.e., `.expires`, `.creation`, and `.lastAccessed`) are exported in ISO format (`.toISOString()`).
|
|
213
|
+
|
|
214
|
+
**NOTE**: Custom `Cookie` properties will be discarded. In tough-cookie 1.x, since there was no `.toJSON` method explicitly defined, all enumerable properties were captured. If you want a property to be serialized, add the property name to the `Cookie.serializableProperties` Array.
|
|
215
|
+
|
|
216
|
+
### `Cookie.fromJSON(strOrObj)`
|
|
217
|
+
|
|
218
|
+
Does the reverse of `cookie.toJSON()`. If passed a string, will `JSON.parse()` that first.
|
|
219
|
+
|
|
220
|
+
Any `Date` properties (i.e., `.expires`, `.creation`, and `.lastAccessed`) are parsed via `Date.parse()`, not the tough-cookie `parseDate`, since it's JavaScript/JSON-y timestamps being handled at this layer.
|
|
221
|
+
|
|
222
|
+
Returns `null` upon JSON parsing error.
|
|
223
|
+
|
|
224
|
+
### `.clone()`
|
|
225
|
+
|
|
226
|
+
Does a deep clone of this cookie, exactly implemented as `Cookie.fromJSON(cookie.toJSON())`.
|
|
227
|
+
|
|
228
|
+
### `.validate()`
|
|
229
|
+
|
|
230
|
+
Status: *IN PROGRESS*. Works for a few things, but is by no means comprehensive.
|
|
231
|
+
|
|
232
|
+
validates cookie attributes for semantic correctness. Useful for "lint" checking any Set-Cookie headers you generate. For now, it returns a boolean, but eventually could return a reason string -- you can future-proof with this construct:
|
|
233
|
+
|
|
234
|
+
``` javascript
|
|
235
|
+
if (cookie.validate() === true) {
|
|
236
|
+
// it's tasty
|
|
237
|
+
} else {
|
|
238
|
+
// yuck!
|
|
239
|
+
}
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
## CookieJar
|
|
244
|
+
|
|
245
|
+
Exported via `tough.CookieJar`.
|
|
246
|
+
|
|
247
|
+
### `CookieJar([store],[options])`
|
|
248
|
+
|
|
249
|
+
Simply use `new CookieJar()`. If you'd like to use a custom store, pass that to the constructor otherwise a `MemoryCookieStore` will be created and used.
|
|
250
|
+
|
|
251
|
+
The `options` object can be omitted and can have the following properties:
|
|
252
|
+
|
|
253
|
+
* _rejectPublicSuffixes_ - boolean - default `true` - reject cookies with domains like "com" and "co.uk"
|
|
254
|
+
* _looseMode_ - boolean - default `false` - accept malformed cookies like `bar` and `=bar`, which have an implied empty name.
|
|
255
|
+
* _prefixSecurity_ - string - default `silent` - set to `'unsafe-disabled'`, `'silent'`, or `'strict'`. See [Cookie Prefixes] below.
|
|
256
|
+
* _allowSpecialUseDomain_ - boolean - default `false` - accepts special-use domain suffixes, such as `local`. Useful for testing purposes.
|
|
257
|
+
This is not in the standard, but is used sometimes on the web and is accepted by (most) browsers.
|
|
258
|
+
|
|
259
|
+
Since eventually this module would like to support database/remote/etc. CookieJars, continuation passing style is used for CookieJar methods.
|
|
260
|
+
|
|
261
|
+
### `.setCookie(cookieOrString, currentUrl, [{options},] cb(err,cookie))`
|
|
262
|
+
|
|
263
|
+
Attempt to set the cookie in the cookie jar. If the operation fails, an error will be given to the callback `cb`, otherwise the cookie is passed through. The cookie will have updated `.creation`, `.lastAccessed` and `.hostOnly` properties.
|
|
264
|
+
|
|
265
|
+
The `options` object can be omitted and can have the following properties:
|
|
266
|
+
|
|
267
|
+
* _http_ - boolean - default `true` - indicates if this is an HTTP or non-HTTP API. Affects HttpOnly cookies.
|
|
268
|
+
* _secure_ - boolean - autodetect from url - indicates if this is a "Secure" API. If the currentUrl starts with `https:` or `wss:` then this is defaulted to `true`, otherwise `false`.
|
|
269
|
+
* _now_ - Date - default `new Date()` - what to use for the creation/access time of cookies
|
|
270
|
+
* _ignoreError_ - boolean - default `false` - silently ignore things like parse errors and invalid domains. `Store` errors aren't ignored by this option.
|
|
271
|
+
* _sameSiteContext_ - string - default unset - set to `'none'`, `'lax'`, or `'strict'` See [SameSite Cookies] below.
|
|
272
|
+
|
|
273
|
+
As per the RFC, the `.hostOnly` property is set if there was no "Domain=" parameter in the cookie string (or `.domain` was null on the Cookie object). The `.domain` property is set to the fully-qualified hostname of `currentUrl` in this case. Matching this cookie requires an exact hostname match (not a `domainMatch` as per usual).
|
|
274
|
+
|
|
275
|
+
### `.setCookieSync(cookieOrString, currentUrl, [{options}])`
|
|
276
|
+
|
|
277
|
+
Synchronous version of `setCookie`; only works with synchronous stores (e.g. the default `MemoryCookieStore`).
|
|
278
|
+
|
|
279
|
+
### `.getCookies(currentUrl, [{options},] cb(err,cookies))`
|
|
280
|
+
|
|
281
|
+
Retrieve the list of cookies that can be sent in a Cookie header for the current url.
|
|
282
|
+
|
|
283
|
+
If an error is encountered, that's passed as `err` to the callback, otherwise an `Array` of `Cookie` objects is passed. The array is sorted with `cookieCompare()` unless the `{sort:false}` option is given.
|
|
284
|
+
|
|
285
|
+
The `options` object can be omitted and can have the following properties:
|
|
286
|
+
|
|
287
|
+
* _http_ - boolean - default `true` - indicates if this is an HTTP or non-HTTP API. Affects HttpOnly cookies.
|
|
288
|
+
* _secure_ - boolean - autodetect from url - indicates if this is a "Secure" API. If the currentUrl starts with `https:` or `wss:` then this is defaulted to `true`, otherwise `false`.
|
|
289
|
+
* _now_ - Date - default `new Date()` - what to use for the creation/access time of cookies
|
|
290
|
+
* _expire_ - boolean - default `true` - perform expiry-time checking of cookies and asynchronously remove expired cookies from the store. Using `false` will return expired cookies and **not** remove them from the store (which is useful for replaying Set-Cookie headers, potentially).
|
|
291
|
+
* _allPaths_ - boolean - default `false` - if `true`, do not scope cookies by path. The default uses RFC-compliant path scoping. **Note**: may not be supported by the underlying store (the default `MemoryCookieStore` supports it).
|
|
292
|
+
* _sameSiteContext_ - string - default unset - Set this to `'none'`, `'lax'` or `'strict'` to enforce SameSite cookies upon retrival. See [SameSite Cookies] below.
|
|
293
|
+
|
|
294
|
+
The `.lastAccessed` property of the returned cookies will have been updated.
|
|
295
|
+
|
|
296
|
+
### `.getCookiesSync(currentUrl, [{options}])`
|
|
297
|
+
|
|
298
|
+
Synchronous version of `getCookies`; only works with synchronous stores (e.g. the default `MemoryCookieStore`).
|
|
299
|
+
|
|
300
|
+
### `.getCookieString(...)`
|
|
301
|
+
|
|
302
|
+
Accepts the same options as `.getCookies()` but passes a string suitable for a Cookie header rather than an array to the callback. Simply maps the `Cookie` array via `.cookieString()`.
|
|
303
|
+
|
|
304
|
+
### `.getCookieStringSync(...)`
|
|
305
|
+
|
|
306
|
+
Synchronous version of `getCookieString`; only works with synchronous stores (e.g. the default `MemoryCookieStore`).
|
|
307
|
+
|
|
308
|
+
### `.getSetCookieStrings(...)`
|
|
309
|
+
|
|
310
|
+
Returns an array of strings suitable for **Set-Cookie** headers. Accepts the same options as `.getCookies()`. Simply maps the cookie array via `.toString()`.
|
|
311
|
+
|
|
312
|
+
### `.getSetCookieStringsSync(...)`
|
|
313
|
+
|
|
314
|
+
Synchronous version of `getSetCookieStrings`; only works with synchronous stores (e.g. the default `MemoryCookieStore`).
|
|
315
|
+
|
|
316
|
+
### `.serialize(cb(err,serializedObject))`
|
|
317
|
+
|
|
318
|
+
Serialize the Jar if the underlying store supports `.getAllCookies`.
|
|
319
|
+
|
|
320
|
+
**NOTE**: Custom `Cookie` properties will be discarded. If you want a property to be serialized, add the property name to the `Cookie.serializableProperties` Array.
|
|
321
|
+
|
|
322
|
+
See [Serialization Format].
|
|
323
|
+
|
|
324
|
+
### `.serializeSync()`
|
|
325
|
+
|
|
326
|
+
Sync version of .serialize
|
|
327
|
+
|
|
328
|
+
### `.toJSON()`
|
|
329
|
+
|
|
330
|
+
Alias of .serializeSync() for the convenience of `JSON.stringify(cookiejar)`.
|
|
331
|
+
|
|
332
|
+
### `CookieJar.deserialize(serialized, [store], cb(err,object))`
|
|
333
|
+
|
|
334
|
+
A new Jar is created and the serialized Cookies are added to the underlying store. Each `Cookie` is added via `store.putCookie` in the order in which they appear in the serialization.
|
|
335
|
+
|
|
336
|
+
The `store` argument is optional, but should be an instance of `Store`. By default, a new instance of `MemoryCookieStore` is created.
|
|
337
|
+
|
|
338
|
+
As a convenience, if `serialized` is a string, it is passed through `JSON.parse` first. If that throws an error, this is passed to the callback.
|
|
339
|
+
|
|
340
|
+
### `CookieJar.deserializeSync(serialized, [store])`
|
|
341
|
+
|
|
342
|
+
Sync version of `.deserialize`. _Note_ that the `store` must be synchronous for this to work.
|
|
343
|
+
|
|
344
|
+
### `CookieJar.fromJSON(string)`
|
|
345
|
+
|
|
346
|
+
Alias of `.deserializeSync` to provide consistency with `Cookie.fromJSON()`.
|
|
347
|
+
|
|
348
|
+
### `.clone([store,]cb(err,newJar))`
|
|
349
|
+
|
|
350
|
+
Produces a deep clone of this jar. Modifications to the original won't affect the clone, and vice versa.
|
|
351
|
+
|
|
352
|
+
The `store` argument is optional, but should be an instance of `Store`. By default, a new instance of `MemoryCookieStore` is created. Transferring between store types is supported so long as the source implements `.getAllCookies()` and the destination implements `.putCookie()`.
|
|
353
|
+
|
|
354
|
+
### `.cloneSync([store])`
|
|
355
|
+
|
|
356
|
+
Synchronous version of `.clone`, returning a new `CookieJar` instance.
|
|
357
|
+
|
|
358
|
+
The `store` argument is optional, but must be a _synchronous_ `Store` instance if specified. If not passed, a new instance of `MemoryCookieStore` is used.
|
|
359
|
+
|
|
360
|
+
The _source_ and _destination_ must both be synchronous `Store`s. If one or both stores are asynchronous, use `.clone` instead. Recall that `MemoryCookieStore` supports both synchronous and asynchronous API calls.
|
|
361
|
+
|
|
362
|
+
### `.removeAllCookies(cb(err))`
|
|
363
|
+
|
|
364
|
+
Removes all cookies from the jar.
|
|
365
|
+
|
|
366
|
+
This is a new backwards-compatible feature of `tough-cookie` version 2.5, so not all Stores will implement it efficiently. For Stores that do not implement `removeAllCookies`, the fallback is to call `removeCookie` after `getAllCookies`. If `getAllCookies` fails or isn't implemented in the Store, that error is returned. If one or more of the `removeCookie` calls fail, only the first error is returned.
|
|
367
|
+
|
|
368
|
+
### `.removeAllCookiesSync()`
|
|
369
|
+
|
|
370
|
+
Sync version of `.removeAllCookies()`
|
|
371
|
+
|
|
372
|
+
## Store
|
|
373
|
+
|
|
374
|
+
Base class for CookieJar stores. Available as `tough.Store`.
|
|
375
|
+
|
|
376
|
+
## Store API
|
|
377
|
+
|
|
378
|
+
The storage model for each `CookieJar` instance can be replaced with a custom implementation. The default is `MemoryCookieStore` which can be found in the `lib/memstore.js` file. The API uses continuation-passing-style to allow for asynchronous stores.
|
|
379
|
+
|
|
380
|
+
Stores should inherit from the base `Store` class, which is available as `require('tough-cookie').Store`.
|
|
381
|
+
|
|
382
|
+
Stores are asynchronous by default, but if `store.synchronous` is set to `true`, then the `*Sync` methods on the of the containing `CookieJar` can be used (however, the continuation-passing style
|
|
383
|
+
|
|
384
|
+
All `domain` parameters will have been normalized before calling.
|
|
385
|
+
|
|
386
|
+
The Cookie store must have all of the following methods.
|
|
387
|
+
|
|
388
|
+
### `store.findCookie(domain, path, key, cb(err,cookie))`
|
|
389
|
+
|
|
390
|
+
Retrieve a cookie with the given domain, path and key (a.k.a. name). The RFC maintains that exactly one of these cookies should exist in a store. If the store is using versioning, this means that the latest/newest such cookie should be returned.
|
|
391
|
+
|
|
392
|
+
Callback takes an error and the resulting `Cookie` object. If no cookie is found then `null` MUST be passed instead (i.e. not an error).
|
|
393
|
+
|
|
394
|
+
### `store.findCookies(domain, path, cb(err,cookies))`
|
|
395
|
+
|
|
396
|
+
Locates cookies matching the given domain and path. This is most often called in the context of `cookiejar.getCookies()` above.
|
|
397
|
+
|
|
398
|
+
If no cookies are found, the callback MUST be passed an empty array.
|
|
399
|
+
|
|
400
|
+
The resulting list will be checked for applicability to the current request according to the RFC (domain-match, path-match, http-only-flag, secure-flag, expiry, etc.), so it's OK to use an optimistic search algorithm when implementing this method. However, the search algorithm used SHOULD try to find cookies that `domainMatch()` the domain and `pathMatch()` the path in order to limit the amount of checking that needs to be done.
|
|
401
|
+
|
|
402
|
+
As of version 0.9.12, the `allPaths` option to `cookiejar.getCookies()` above will cause the path here to be `null`. If the path is `null`, path-matching MUST NOT be performed (i.e. domain-matching only).
|
|
403
|
+
|
|
404
|
+
### `store.putCookie(cookie, cb(err))`
|
|
405
|
+
|
|
406
|
+
Adds a new cookie to the store. The implementation SHOULD replace any existing cookie with the same `.domain`, `.path`, and `.key` properties -- depending on the nature of the implementation, it's possible that between the call to `fetchCookie` and `putCookie` that a duplicate `putCookie` can occur.
|
|
407
|
+
|
|
408
|
+
The `cookie` object MUST NOT be modified; the caller will have already updated the `.creation` and `.lastAccessed` properties.
|
|
409
|
+
|
|
410
|
+
Pass an error if the cookie cannot be stored.
|
|
411
|
+
|
|
412
|
+
### `store.updateCookie(oldCookie, newCookie, cb(err))`
|
|
413
|
+
|
|
414
|
+
Update an existing cookie. The implementation MUST update the `.value` for a cookie with the same `domain`, `.path` and `.key`. The implementation SHOULD check that the old value in the store is equivalent to `oldCookie` - how the conflict is resolved is up to the store.
|
|
415
|
+
|
|
416
|
+
The `.lastAccessed` property will always be different between the two objects (to the precision possible via JavaScript's clock). Both `.creation` and `.creationIndex` are guaranteed to be the same. Stores MAY ignore or defer the `.lastAccessed` change at the cost of affecting how cookies are selected for automatic deletion (e.g., least-recently-used, which is up to the store to implement).
|
|
417
|
+
|
|
418
|
+
Stores may wish to optimize changing the `.value` of the cookie in the store versus storing a new cookie. If the implementation doesn't define this method a stub that calls `putCookie(newCookie,cb)` will be added to the store object.
|
|
419
|
+
|
|
420
|
+
The `newCookie` and `oldCookie` objects MUST NOT be modified.
|
|
421
|
+
|
|
422
|
+
Pass an error if the newCookie cannot be stored.
|
|
423
|
+
|
|
424
|
+
### `store.removeCookie(domain, path, key, cb(err))`
|
|
425
|
+
|
|
426
|
+
Remove a cookie from the store (see notes on `findCookie` about the uniqueness constraint).
|
|
427
|
+
|
|
428
|
+
The implementation MUST NOT pass an error if the cookie doesn't exist; only pass an error due to the failure to remove an existing cookie.
|
|
429
|
+
|
|
430
|
+
### `store.removeCookies(domain, path, cb(err))`
|
|
431
|
+
|
|
432
|
+
Removes matching cookies from the store. The `path` parameter is optional, and if missing means all paths in a domain should be removed.
|
|
433
|
+
|
|
434
|
+
Pass an error ONLY if removing any existing cookies failed.
|
|
435
|
+
|
|
436
|
+
### `store.removeAllCookies(cb(err))`
|
|
437
|
+
|
|
438
|
+
_Optional_. Removes all cookies from the store.
|
|
439
|
+
|
|
440
|
+
Pass an error if one or more cookies can't be removed.
|
|
441
|
+
|
|
442
|
+
**Note**: New method as of `tough-cookie` version 2.5, so not all Stores will implement this, plus some stores may choose not to implement this.
|
|
443
|
+
|
|
444
|
+
### `store.getAllCookies(cb(err, cookies))`
|
|
445
|
+
|
|
446
|
+
_Optional_. Produces an `Array` of all cookies during `jar.serialize()`. The items in the array can be true `Cookie` objects or generic `Object`s with the [Serialization Format] data structure.
|
|
447
|
+
|
|
448
|
+
Cookies SHOULD be returned in creation order to preserve sorting via `compareCookies()`. For reference, `MemoryCookieStore` will sort by `.creationIndex` since it uses true `Cookie` objects internally. If you don't return the cookies in creation order, they'll still be sorted by creation time, but this only has a precision of 1ms. See `compareCookies` for more detail.
|
|
449
|
+
|
|
450
|
+
Pass an error if retrieval fails.
|
|
451
|
+
|
|
452
|
+
**Note**: not all Stores can implement this due to technical limitations, so it is optional.
|
|
453
|
+
|
|
454
|
+
## MemoryCookieStore
|
|
455
|
+
|
|
456
|
+
Inherits from `Store`.
|
|
457
|
+
|
|
458
|
+
A just-in-memory CookieJar synchronous store implementation, used by default. Despite being a synchronous implementation, it's usable with both the synchronous and asynchronous forms of the `CookieJar` API. Supports serialization, `getAllCookies`, and `removeAllCookies`.
|
|
459
|
+
|
|
460
|
+
## Community Cookie Stores
|
|
461
|
+
|
|
462
|
+
These are some Store implementations authored and maintained by the community. They aren't official and we don't vouch for them but you may be interested to have a look:
|
|
463
|
+
|
|
464
|
+
- [`db-cookie-store`](https://github.com/JSBizon/db-cookie-store): SQL including SQLite-based databases
|
|
465
|
+
- [`file-cookie-store`](https://github.com/JSBizon/file-cookie-store): Netscape cookie file format on disk
|
|
466
|
+
- [`redis-cookie-store`](https://github.com/benkroeger/redis-cookie-store): Redis
|
|
467
|
+
- [`tough-cookie-filestore`](https://github.com/mitsuru/tough-cookie-filestore): JSON on disk
|
|
468
|
+
- [`tough-cookie-web-storage-store`](https://github.com/exponentjs/tough-cookie-web-storage-store): DOM localStorage and sessionStorage
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
# Serialization Format
|
|
472
|
+
|
|
473
|
+
**NOTE**: if you want to have custom `Cookie` properties serialized, add the property name to `Cookie.serializableProperties`.
|
|
474
|
+
|
|
475
|
+
```js
|
|
476
|
+
{
|
|
477
|
+
// The version of tough-cookie that serialized this jar.
|
|
478
|
+
version: 'tough-cookie@1.x.y',
|
|
479
|
+
|
|
480
|
+
// add the store type, to make humans happy:
|
|
481
|
+
storeType: 'MemoryCookieStore',
|
|
482
|
+
|
|
483
|
+
// CookieJar configuration:
|
|
484
|
+
rejectPublicSuffixes: true,
|
|
485
|
+
// ... future items go here
|
|
486
|
+
|
|
487
|
+
// Gets filled from jar.store.getAllCookies():
|
|
488
|
+
cookies: [
|
|
489
|
+
{
|
|
490
|
+
key: 'string',
|
|
491
|
+
value: 'string',
|
|
492
|
+
// ...
|
|
493
|
+
/* other Cookie.serializableProperties go here */
|
|
494
|
+
}
|
|
495
|
+
]
|
|
496
|
+
}
|
|
497
|
+
```
|
|
498
|
+
|
|
499
|
+
# RFC6265bis
|
|
500
|
+
|
|
501
|
+
Support for RFC6265bis revision 02 is being developed. Since this is a bit of an omnibus revision to the RFC6252, support is broken up into the functional areas.
|
|
502
|
+
|
|
503
|
+
## Leave Secure Cookies Alone
|
|
504
|
+
|
|
505
|
+
Not yet supported.
|
|
506
|
+
|
|
507
|
+
This change makes it so that if a cookie is sent from the server to the client with a `Secure` attribute, the channel must also be secure or the cookie is ignored.
|
|
508
|
+
|
|
509
|
+
## SameSite Cookies
|
|
510
|
+
|
|
511
|
+
Supported.
|
|
512
|
+
|
|
513
|
+
This change makes it possible for servers, and supporting clients, to mitigate certain types of CSRF attacks by disallowing `SameSite` cookies from being sent cross-origin.
|
|
514
|
+
|
|
515
|
+
On the Cookie object itself, you can get/set the `.sameSite` attribute, which will be serialized into the `SameSite=` cookie attribute. When unset or `undefined`, no `SameSite=` attribute will be serialized. The valid values of this attribute are `'none'`, `'lax'`, or `'strict'`. Other values will be serialized as-is.
|
|
516
|
+
|
|
517
|
+
When parsing cookies with a `SameSite` cookie attribute, values other than `'lax'` or `'strict'` are parsed as `'none'`. For example, `SomeCookie=SomeValue; SameSite=garbage` will parse so that `cookie.sameSite === 'none'`.
|
|
518
|
+
|
|
519
|
+
In order to support SameSite cookies, you must provide a `sameSiteContext` option to _both_ `setCookie` and `getCookies`. Valid values for this option are just like for the Cookie object, but have particular meanings:
|
|
520
|
+
1. `'strict'` mode - If the request is on the same "site for cookies" (see the RFC draft for what this means), pass this option to add a layer of defense against CSRF.
|
|
521
|
+
2. `'lax'` mode - If the request is from another site, _but_ is directly because of navigation by the user, e.g., `<link type=prefetch>` or `<a href="...">`, pass `sameSiteContext: 'lax'`.
|
|
522
|
+
3. `'none'` - Otherwise, pass `sameSiteContext: 'none'` (this indicates a cross-origin request).
|
|
523
|
+
4. unset/`undefined` - SameSite **will not** be enforced! This can be a valid use-case for when CSRF isn't in the threat model of the system being built.
|
|
524
|
+
|
|
525
|
+
It is highly recommended that you read RFC 6265bis for fine details on SameSite cookies. In particular [Section 8.8](https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-02#section-8.8) discusses security considerations and defense in depth.
|
|
526
|
+
|
|
527
|
+
## Cookie Prefixes
|
|
528
|
+
|
|
529
|
+
Supported.
|
|
530
|
+
|
|
531
|
+
Cookie prefixes are a way to indicate that a given cookie was set with a set of attributes simply by inspecting the first few characters of the cookie's name.
|
|
532
|
+
|
|
533
|
+
Cookie prefixes are defined in [Section 4.1.3 of 6265bis](https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-03#section-4.1.3). Two prefixes are defined:
|
|
534
|
+
|
|
535
|
+
1. `"__Secure-" Prefix`: If a cookie's name begins with a case-sensitive match for the string "__Secure-", then the cookie will have been set with a "Secure" attribute.
|
|
536
|
+
2. `"__Host-" Prefix`: If a cookie's name begins with a case-sensitive match for the string "__Host-", then the cookie will have been set with a "Secure" attribute, a "Path" attribute with a value of "/", and no "Domain" attribute.
|
|
537
|
+
|
|
538
|
+
If `prefixSecurity` is enabled for `CookieJar`, then cookies that match the prefixes defined above but do not obey the attribute restrictions will not be added.
|
|
539
|
+
|
|
540
|
+
You can define this functionality by passing in `prefixSecurity` option to `CookieJar`. It can be one of 3 values:
|
|
541
|
+
|
|
542
|
+
1. `silent`: Enable cookie prefix checking but silently fail to add the cookie if conditions not met. Default.
|
|
543
|
+
2. `strict`: Enable cookie prefix checking and error out if conditions not met.
|
|
544
|
+
3. `unsafe-disabled`: Disable cookie prefix checking.
|
|
545
|
+
|
|
546
|
+
Note that if `ignoreError` is passed in as `true` then the error will be silent regardless of `prefixSecurity` option (assuming it's enabled).
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
# Copyright and License
|
|
550
|
+
|
|
551
|
+
BSD-3-Clause:
|
|
552
|
+
|
|
553
|
+
```text
|
|
554
|
+
Copyright (c) 2015, Salesforce.com, Inc.
|
|
555
|
+
All rights reserved.
|
|
556
|
+
|
|
557
|
+
Redistribution and use in source and binary forms, with or without
|
|
558
|
+
modification, are permitted provided that the following conditions are met:
|
|
559
|
+
|
|
560
|
+
1. Redistributions of source code must retain the above copyright notice,
|
|
561
|
+
this list of conditions and the following disclaimer.
|
|
562
|
+
|
|
563
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
564
|
+
this list of conditions and the following disclaimer in the documentation
|
|
565
|
+
and/or other materials provided with the distribution.
|
|
566
|
+
|
|
567
|
+
3. Neither the name of Salesforce.com nor the names of its contributors may
|
|
568
|
+
be used to endorse or promote products derived from this software without
|
|
569
|
+
specific prior written permission.
|
|
570
|
+
|
|
571
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
572
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
573
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
574
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
575
|
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
576
|
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
577
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
578
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
579
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
580
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
581
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
582
|
+
```
|