node-red-contrib-tak-registration 0.3.2 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -3
- package/icons/tak.png +0 -0
- package/node_modules/@ampproject/remapping/LICENSE +202 -0
- package/node_modules/@ampproject/remapping/README.md +218 -0
- package/node_modules/@ampproject/remapping/dist/remapping.mjs +191 -0
- package/node_modules/@ampproject/remapping/dist/remapping.mjs.map +1 -0
- package/node_modules/@ampproject/remapping/dist/remapping.umd.js +196 -0
- package/node_modules/@ampproject/remapping/dist/remapping.umd.js.map +1 -0
- package/node_modules/@ampproject/remapping/dist/types/build-source-map-tree.d.ts +14 -0
- package/node_modules/@ampproject/remapping/dist/types/remapping.d.ts +19 -0
- package/node_modules/@ampproject/remapping/dist/types/source-map-tree.d.ts +42 -0
- package/node_modules/@ampproject/remapping/dist/types/source-map.d.ts +17 -0
- package/node_modules/@ampproject/remapping/dist/types/types.d.ts +14 -0
- package/node_modules/@ampproject/remapping/package.json +75 -0
- package/node_modules/@babel/code-frame/LICENSE +22 -0
- package/node_modules/@babel/code-frame/README.md +19 -0
- package/node_modules/@babel/code-frame/lib/index.js +142 -0
- package/node_modules/@babel/code-frame/lib/index.js.map +1 -0
- package/node_modules/@babel/code-frame/package.json +28 -0
- package/node_modules/@babel/compat-data/LICENSE +22 -0
- package/node_modules/@babel/compat-data/README.md +19 -0
- package/node_modules/@babel/compat-data/corejs2-built-ins.js +2 -0
- package/node_modules/@babel/compat-data/corejs3-shipped-proposals.js +2 -0
- package/node_modules/@babel/compat-data/data/corejs2-built-ins.json +2081 -0
- package/node_modules/@babel/compat-data/data/corejs3-shipped-proposals.json +5 -0
- package/node_modules/@babel/compat-data/data/native-modules.json +18 -0
- package/node_modules/@babel/compat-data/data/overlapping-plugins.json +25 -0
- package/node_modules/@babel/compat-data/data/plugin-bugfixes.json +201 -0
- package/node_modules/@babel/compat-data/data/plugins.json +763 -0
- package/node_modules/@babel/compat-data/native-modules.js +1 -0
- package/node_modules/@babel/compat-data/overlapping-plugins.js +1 -0
- package/node_modules/@babel/compat-data/package.json +40 -0
- package/node_modules/@babel/compat-data/plugin-bugfixes.js +1 -0
- package/node_modules/@babel/compat-data/plugins.js +1 -0
- package/node_modules/@babel/core/LICENSE +22 -0
- package/node_modules/@babel/core/README.md +19 -0
- package/node_modules/@babel/core/cjs-proxy.cjs +51 -0
- package/node_modules/@babel/core/lib/config/cache-contexts.js +3 -0
- package/node_modules/@babel/core/lib/config/cache-contexts.js.map +1 -0
- package/node_modules/@babel/core/lib/config/caching.js +261 -0
- package/node_modules/@babel/core/lib/config/caching.js.map +1 -0
- package/node_modules/@babel/core/lib/config/config-chain.js +467 -0
- package/node_modules/@babel/core/lib/config/config-chain.js.map +1 -0
- package/node_modules/@babel/core/lib/config/config-descriptors.js +189 -0
- package/node_modules/@babel/core/lib/config/config-descriptors.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/configuration.js +284 -0
- package/node_modules/@babel/core/lib/config/files/configuration.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/import-meta-resolve.js +17 -0
- package/node_modules/@babel/core/lib/config/files/import-meta-resolve.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
- package/node_modules/@babel/core/lib/config/files/import.cjs.map +1 -0
- package/node_modules/@babel/core/lib/config/files/index-browser.js +59 -0
- package/node_modules/@babel/core/lib/config/files/index-browser.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/index.js +78 -0
- package/node_modules/@babel/core/lib/config/files/index.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/module-types.js +155 -0
- package/node_modules/@babel/core/lib/config/files/module-types.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/package.js +61 -0
- package/node_modules/@babel/core/lib/config/files/package.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/plugins.js +206 -0
- package/node_modules/@babel/core/lib/config/files/plugins.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/types.js +3 -0
- package/node_modules/@babel/core/lib/config/files/types.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/utils.js +36 -0
- package/node_modules/@babel/core/lib/config/files/utils.js.map +1 -0
- package/node_modules/@babel/core/lib/config/full.js +311 -0
- package/node_modules/@babel/core/lib/config/full.js.map +1 -0
- package/node_modules/@babel/core/lib/config/helpers/config-api.js +85 -0
- package/node_modules/@babel/core/lib/config/helpers/config-api.js.map +1 -0
- package/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
- package/node_modules/@babel/core/lib/config/helpers/deep-array.js.map +1 -0
- package/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
- package/node_modules/@babel/core/lib/config/helpers/environment.js.map +1 -0
- package/node_modules/@babel/core/lib/config/index.js +73 -0
- package/node_modules/@babel/core/lib/config/index.js.map +1 -0
- package/node_modules/@babel/core/lib/config/item.js +67 -0
- package/node_modules/@babel/core/lib/config/item.js.map +1 -0
- package/node_modules/@babel/core/lib/config/partial.js +166 -0
- package/node_modules/@babel/core/lib/config/partial.js.map +1 -0
- package/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
- package/node_modules/@babel/core/lib/config/pattern-to-regex.js.map +1 -0
- package/node_modules/@babel/core/lib/config/plugin.js +33 -0
- package/node_modules/@babel/core/lib/config/plugin.js.map +1 -0
- package/node_modules/@babel/core/lib/config/printer.js +114 -0
- package/node_modules/@babel/core/lib/config/printer.js.map +1 -0
- package/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
- package/node_modules/@babel/core/lib/config/resolve-targets-browser.js.map +1 -0
- package/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
- package/node_modules/@babel/core/lib/config/resolve-targets.js.map +1 -0
- package/node_modules/@babel/core/lib/config/util.js +31 -0
- package/node_modules/@babel/core/lib/config/util.js.map +1 -0
- package/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
- package/node_modules/@babel/core/lib/config/validation/option-assertions.js.map +1 -0
- package/node_modules/@babel/core/lib/config/validation/options.js +193 -0
- package/node_modules/@babel/core/lib/config/validation/options.js.map +1 -0
- package/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
- package/node_modules/@babel/core/lib/config/validation/plugins.js.map +1 -0
- package/node_modules/@babel/core/lib/config/validation/removed.js +69 -0
- package/node_modules/@babel/core/lib/config/validation/removed.js.map +1 -0
- package/node_modules/@babel/core/lib/errors/config-error.js +18 -0
- package/node_modules/@babel/core/lib/errors/config-error.js.map +1 -0
- package/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
- package/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js.map +1 -0
- package/node_modules/@babel/core/lib/gensync-utils/async.js +93 -0
- package/node_modules/@babel/core/lib/gensync-utils/async.js.map +1 -0
- package/node_modules/@babel/core/lib/gensync-utils/fs.js +33 -0
- package/node_modules/@babel/core/lib/gensync-utils/fs.js.map +1 -0
- package/node_modules/@babel/core/lib/gensync-utils/functional.js +33 -0
- package/node_modules/@babel/core/lib/gensync-utils/functional.js.map +1 -0
- package/node_modules/@babel/core/lib/index.js +245 -0
- package/node_modules/@babel/core/lib/index.js.map +1 -0
- package/node_modules/@babel/core/lib/parse.js +48 -0
- package/node_modules/@babel/core/lib/parse.js.map +1 -0
- package/node_modules/@babel/core/lib/parser/index.js +79 -0
- package/node_modules/@babel/core/lib/parser/index.js.map +1 -0
- package/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +329 -0
- package/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js.map +1 -0
- package/node_modules/@babel/core/lib/tools/build-external-helpers.js +143 -0
- package/node_modules/@babel/core/lib/tools/build-external-helpers.js.map +1 -0
- package/node_modules/@babel/core/lib/transform-ast.js +51 -0
- package/node_modules/@babel/core/lib/transform-ast.js.map +1 -0
- package/node_modules/@babel/core/lib/transform-file-browser.js +24 -0
- package/node_modules/@babel/core/lib/transform-file-browser.js.map +1 -0
- package/node_modules/@babel/core/lib/transform-file.js +40 -0
- package/node_modules/@babel/core/lib/transform-file.js.map +1 -0
- package/node_modules/@babel/core/lib/transform.js +50 -0
- package/node_modules/@babel/core/lib/transform.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +77 -0
- package/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/file/file.js +211 -0
- package/node_modules/@babel/core/lib/transformation/file/file.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
- package/node_modules/@babel/core/lib/transformation/file/generate.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
- package/node_modules/@babel/core/lib/transformation/file/merge-map.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/index.js +99 -0
- package/node_modules/@babel/core/lib/transformation/index.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/normalize-file.js +127 -0
- package/node_modules/@babel/core/lib/transformation/normalize-file.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
- package/node_modules/@babel/core/lib/transformation/normalize-opts.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/plugin-pass.js +48 -0
- package/node_modules/@babel/core/lib/transformation/plugin-pass.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/util/clone-deep.js +36 -0
- package/node_modules/@babel/core/lib/transformation/util/clone-deep.js.map +1 -0
- package/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1012 -0
- package/node_modules/@babel/core/lib/vendor/import-meta-resolve.js.map +1 -0
- package/node_modules/@babel/core/package.json +82 -0
- package/node_modules/@babel/core/src/config/files/index-browser.ts +109 -0
- package/node_modules/@babel/core/src/config/files/index.ts +29 -0
- package/node_modules/@babel/core/src/config/resolve-targets-browser.ts +40 -0
- package/node_modules/@babel/core/src/config/resolve-targets.ts +56 -0
- package/node_modules/@babel/core/src/transform-file-browser.ts +31 -0
- package/node_modules/@babel/core/src/transform-file.ts +55 -0
- package/node_modules/@babel/generator/LICENSE +22 -0
- package/node_modules/@babel/generator/README.md +19 -0
- package/node_modules/@babel/generator/lib/buffer.js +307 -0
- package/node_modules/@babel/generator/lib/buffer.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/base.js +92 -0
- package/node_modules/@babel/generator/lib/generators/base.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/classes.js +177 -0
- package/node_modules/@babel/generator/lib/generators/classes.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/expressions.js +309 -0
- package/node_modules/@babel/generator/lib/generators/expressions.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/flow.js +668 -0
- package/node_modules/@babel/generator/lib/generators/flow.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/index.js +128 -0
- package/node_modules/@babel/generator/lib/generators/index.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/jsx.js +123 -0
- package/node_modules/@babel/generator/lib/generators/jsx.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/methods.js +173 -0
- package/node_modules/@babel/generator/lib/generators/methods.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/modules.js +254 -0
- package/node_modules/@babel/generator/lib/generators/modules.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/statements.js +277 -0
- package/node_modules/@babel/generator/lib/generators/statements.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/template-literals.js +30 -0
- package/node_modules/@babel/generator/lib/generators/template-literals.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/types.js +220 -0
- package/node_modules/@babel/generator/lib/generators/types.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/typescript.js +694 -0
- package/node_modules/@babel/generator/lib/generators/typescript.js.map +1 -0
- package/node_modules/@babel/generator/lib/index.js +94 -0
- package/node_modules/@babel/generator/lib/index.js.map +1 -0
- package/node_modules/@babel/generator/lib/node/index.js +78 -0
- package/node_modules/@babel/generator/lib/node/index.js.map +1 -0
- package/node_modules/@babel/generator/lib/node/parentheses.js +305 -0
- package/node_modules/@babel/generator/lib/node/parentheses.js.map +1 -0
- package/node_modules/@babel/generator/lib/node/whitespace.js +146 -0
- package/node_modules/@babel/generator/lib/node/whitespace.js.map +1 -0
- package/node_modules/@babel/generator/lib/printer.js +651 -0
- package/node_modules/@babel/generator/lib/printer.js.map +1 -0
- package/node_modules/@babel/generator/lib/source-map.js +85 -0
- package/node_modules/@babel/generator/lib/source-map.js.map +1 -0
- package/node_modules/@babel/generator/package.json +38 -0
- package/node_modules/@babel/helper-compilation-targets/LICENSE +22 -0
- package/node_modules/@babel/helper-compilation-targets/README.md +19 -0
- package/node_modules/@babel/helper-compilation-targets/lib/debug.js +28 -0
- package/node_modules/@babel/helper-compilation-targets/lib/debug.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/lib/filter-items.js +67 -0
- package/node_modules/@babel/helper-compilation-targets/lib/filter-items.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/lib/index.js +224 -0
- package/node_modules/@babel/helper-compilation-targets/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/lib/options.js +25 -0
- package/node_modules/@babel/helper-compilation-targets/lib/options.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/lib/pretty.js +40 -0
- package/node_modules/@babel/helper-compilation-targets/lib/pretty.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/lib/targets.js +30 -0
- package/node_modules/@babel/helper-compilation-targets/lib/targets.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/lib/utils.js +58 -0
- package/node_modules/@babel/helper-compilation-targets/lib/utils.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/package.json +44 -0
- package/node_modules/@babel/helper-environment-visitor/LICENSE +22 -0
- package/node_modules/@babel/helper-environment-visitor/README.md +19 -0
- package/node_modules/@babel/helper-environment-visitor/lib/index.js +56 -0
- package/node_modules/@babel/helper-environment-visitor/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-environment-visitor/package.json +29 -0
- package/node_modules/@babel/helper-function-name/LICENSE +22 -0
- package/node_modules/@babel/helper-function-name/README.md +19 -0
- package/node_modules/@babel/helper-function-name/lib/index.js +170 -0
- package/node_modules/@babel/helper-function-name/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-function-name/package.json +25 -0
- package/node_modules/@babel/helper-hoist-variables/LICENSE +22 -0
- package/node_modules/@babel/helper-hoist-variables/README.md +19 -0
- package/node_modules/@babel/helper-hoist-variables/lib/index.js +50 -0
- package/node_modules/@babel/helper-hoist-variables/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-hoist-variables/package.json +28 -0
- package/node_modules/@babel/helper-module-imports/LICENSE +22 -0
- package/node_modules/@babel/helper-module-imports/README.md +19 -0
- package/node_modules/@babel/helper-module-imports/lib/import-builder.js +122 -0
- package/node_modules/@babel/helper-module-imports/lib/import-builder.js.map +1 -0
- package/node_modules/@babel/helper-module-imports/lib/import-injector.js +240 -0
- package/node_modules/@babel/helper-module-imports/lib/import-injector.js.map +1 -0
- package/node_modules/@babel/helper-module-imports/lib/index.js +37 -0
- package/node_modules/@babel/helper-module-imports/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-module-imports/lib/is-module.js +11 -0
- package/node_modules/@babel/helper-module-imports/lib/is-module.js.map +1 -0
- package/node_modules/@babel/helper-module-imports/package.json +28 -0
- package/node_modules/@babel/helper-module-transforms/LICENSE +22 -0
- package/node_modules/@babel/helper-module-transforms/README.md +19 -0
- package/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js +52 -0
- package/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js.map +1 -0
- package/node_modules/@babel/helper-module-transforms/lib/get-module-name.js +48 -0
- package/node_modules/@babel/helper-module-transforms/lib/get-module-name.js.map +1 -0
- package/node_modules/@babel/helper-module-transforms/lib/index.js +375 -0
- package/node_modules/@babel/helper-module-transforms/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +354 -0
- package/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js.map +1 -0
- package/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +349 -0
- package/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js.map +1 -0
- package/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js +24 -0
- package/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js.map +1 -0
- package/node_modules/@babel/helper-module-transforms/package.json +35 -0
- package/node_modules/@babel/helper-simple-access/LICENSE +22 -0
- package/node_modules/@babel/helper-simple-access/README.md +19 -0
- package/node_modules/@babel/helper-simple-access/lib/index.js +91 -0
- package/node_modules/@babel/helper-simple-access/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-simple-access/package.json +28 -0
- package/node_modules/@babel/helper-split-export-declaration/LICENSE +22 -0
- package/node_modules/@babel/helper-split-export-declaration/README.md +19 -0
- package/node_modules/@babel/helper-split-export-declaration/lib/index.js +59 -0
- package/node_modules/@babel/helper-split-export-declaration/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-split-export-declaration/package.json +24 -0
- package/node_modules/@babel/helper-string-parser/LICENSE +22 -0
- package/node_modules/@babel/helper-string-parser/README.md +19 -0
- package/node_modules/@babel/helper-string-parser/lib/index.js +295 -0
- package/node_modules/@babel/helper-string-parser/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-string-parser/package.json +28 -0
- package/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
- package/node_modules/@babel/helper-validator-identifier/README.md +19 -0
- package/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
- package/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
- package/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
- package/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
- package/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
- package/node_modules/@babel/helper-validator-identifier/package.json +28 -0
- package/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js +75 -0
- package/node_modules/@babel/helper-validator-option/LICENSE +22 -0
- package/node_modules/@babel/helper-validator-option/README.md +19 -0
- package/node_modules/@babel/helper-validator-option/lib/find-suggestion.js +39 -0
- package/node_modules/@babel/helper-validator-option/lib/find-suggestion.js.map +1 -0
- package/node_modules/@babel/helper-validator-option/lib/index.js +21 -0
- package/node_modules/@babel/helper-validator-option/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-validator-option/lib/validator.js +48 -0
- package/node_modules/@babel/helper-validator-option/lib/validator.js.map +1 -0
- package/node_modules/@babel/helper-validator-option/package.json +24 -0
- package/node_modules/@babel/helpers/LICENSE +22 -0
- package/node_modules/@babel/helpers/README.md +19 -0
- package/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js +92 -0
- package/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/OverloadYield.js +12 -0
- package/node_modules/@babel/helpers/lib/helpers/OverloadYield.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs.js +448 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js +363 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js +365 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js +410 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js +388 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js +52 -0
- package/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/asyncIterator.js +70 -0
- package/node_modules/@babel/helpers/lib/helpers/asyncIterator.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js +12 -0
- package/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/checkInRHS.js +14 -0
- package/node_modules/@babel/helpers/lib/helpers/checkInRHS.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/defineAccessor.js +16 -0
- package/node_modules/@babel/helpers/lib/helpers/defineAccessor.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/dispose.js +47 -0
- package/node_modules/@babel/helpers/lib/helpers/dispose.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js +41 -0
- package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js +18 -0
- package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/jsx.js +47 -0
- package/node_modules/@babel/helpers/lib/helpers/jsx.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/objectSpread2.js +39 -0
- package/node_modules/@babel/helpers/lib/helpers/objectSpread2.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js +501 -0
- package/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/typeof.js +22 -0
- package/node_modules/@babel/helpers/lib/helpers/typeof.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/using.js +29 -0
- package/node_modules/@babel/helpers/lib/helpers/using.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js +66 -0
- package/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers-generated.js +41 -0
- package/node_modules/@babel/helpers/lib/helpers-generated.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers.js +1784 -0
- package/node_modules/@babel/helpers/lib/helpers.js.map +1 -0
- package/node_modules/@babel/helpers/lib/index.js +242 -0
- package/node_modules/@babel/helpers/lib/index.js.map +1 -0
- package/node_modules/@babel/helpers/package.json +33 -0
- package/node_modules/@babel/helpers/scripts/generate-helpers.js +64 -0
- package/node_modules/@babel/helpers/scripts/generate-regenerator-runtime.js +63 -0
- package/node_modules/@babel/helpers/scripts/package.json +1 -0
- package/node_modules/@babel/highlight/LICENSE +22 -0
- package/node_modules/@babel/highlight/README.md +19 -0
- package/node_modules/@babel/highlight/lib/index.js +96 -0
- package/node_modules/@babel/highlight/lib/index.js.map +1 -0
- package/node_modules/@babel/highlight/package.json +30 -0
- package/node_modules/@babel/parser/CHANGELOG.md +1073 -0
- package/node_modules/@babel/parser/LICENSE +19 -0
- package/node_modules/@babel/parser/README.md +19 -0
- package/node_modules/@babel/parser/bin/babel-parser.js +15 -0
- package/node_modules/@babel/parser/index.cjs +5 -0
- package/node_modules/@babel/parser/lib/index.js +14429 -0
- package/node_modules/@babel/parser/lib/index.js.map +1 -0
- package/node_modules/@babel/parser/lib/options.js +40 -0
- package/node_modules/@babel/parser/lib/options.js.map +1 -0
- package/node_modules/@babel/parser/lib/parse-error/credentials.js +28 -0
- package/node_modules/@babel/parser/lib/parse-error/credentials.js.map +1 -0
- package/node_modules/@babel/parser/lib/parse-error/module-errors.js +20 -0
- package/node_modules/@babel/parser/lib/parse-error/module-errors.js.map +1 -0
- package/node_modules/@babel/parser/lib/parse-error/pipeline-operator-errors.js +32 -0
- package/node_modules/@babel/parser/lib/parse-error/pipeline-operator-errors.js.map +1 -0
- package/node_modules/@babel/parser/lib/parse-error/standard-errors.js +220 -0
- package/node_modules/@babel/parser/lib/parse-error/standard-errors.js.map +1 -0
- package/node_modules/@babel/parser/lib/parse-error/strict-mode-errors.js +22 -0
- package/node_modules/@babel/parser/lib/parse-error/strict-mode-errors.js.map +1 -0
- package/node_modules/@babel/parser/lib/parse-error/to-node-description.js +39 -0
- package/node_modules/@babel/parser/lib/parse-error/to-node-description.js.map +1 -0
- package/node_modules/@babel/parser/lib/parse-error.js +106 -0
- package/node_modules/@babel/parser/lib/parse-error.js.map +1 -0
- package/node_modules/@babel/parser/lib/parser/base.js +36 -0
- package/node_modules/@babel/parser/lib/parser/base.js.map +1 -0
- package/node_modules/@babel/parser/lib/parser/comments.js +190 -0
- package/node_modules/@babel/parser/lib/parser/comments.js.map +1 -0
- package/node_modules/@babel/parser/lib/parser/expression.js +1824 -0
- package/node_modules/@babel/parser/lib/parser/expression.js.map +1 -0
- package/node_modules/@babel/parser/lib/parser/index.js +43 -0
- package/node_modules/@babel/parser/lib/parser/index.js.map +1 -0
- package/node_modules/@babel/parser/lib/parser/lval.js +421 -0
- package/node_modules/@babel/parser/lib/parser/lval.js.map +1 -0
- package/node_modules/@babel/parser/lib/parser/node.js +127 -0
- package/node_modules/@babel/parser/lib/parser/node.js.map +1 -0
- package/node_modules/@babel/parser/lib/parser/statement.js +2032 -0
- package/node_modules/@babel/parser/lib/parser/statement.js.map +1 -0
- package/node_modules/@babel/parser/lib/parser/util.js +238 -0
- package/node_modules/@babel/parser/lib/parser/util.js.map +1 -0
- package/node_modules/@babel/parser/lib/plugin-utils.js +136 -0
- package/node_modules/@babel/parser/lib/plugin-utils.js.map +1 -0
- package/node_modules/@babel/parser/lib/plugins/estree.js +340 -0
- package/node_modules/@babel/parser/lib/plugins/estree.js.map +1 -0
- package/node_modules/@babel/parser/lib/plugins/flow/index.js +2474 -0
- package/node_modules/@babel/parser/lib/plugins/flow/index.js.map +1 -0
- package/node_modules/@babel/parser/lib/plugins/flow/scope.js +44 -0
- package/node_modules/@babel/parser/lib/plugins/flow/scope.js.map +1 -0
- package/node_modules/@babel/parser/lib/plugins/jsx/index.js +444 -0
- package/node_modules/@babel/parser/lib/plugins/jsx/index.js.map +1 -0
- package/node_modules/@babel/parser/lib/plugins/jsx/xhtml.js +266 -0
- package/node_modules/@babel/parser/lib/plugins/jsx/xhtml.js.map +1 -0
- package/node_modules/@babel/parser/lib/plugins/placeholders.js +197 -0
- package/node_modules/@babel/parser/lib/plugins/placeholders.js.map +1 -0
- package/node_modules/@babel/parser/lib/plugins/typescript/index.js +2656 -0
- package/node_modules/@babel/parser/lib/plugins/typescript/index.js.map +1 -0
- package/node_modules/@babel/parser/lib/plugins/typescript/scope.js +119 -0
- package/node_modules/@babel/parser/lib/plugins/typescript/scope.js.map +1 -0
- package/node_modules/@babel/parser/lib/plugins/v8intrinsic.js +31 -0
- package/node_modules/@babel/parser/lib/plugins/v8intrinsic.js.map +1 -0
- package/node_modules/@babel/parser/lib/tokenizer/context.js +27 -0
- package/node_modules/@babel/parser/lib/tokenizer/context.js.map +1 -0
- package/node_modules/@babel/parser/lib/tokenizer/index.js +1119 -0
- package/node_modules/@babel/parser/lib/tokenizer/index.js.map +1 -0
- package/node_modules/@babel/parser/lib/tokenizer/state.js +82 -0
- package/node_modules/@babel/parser/lib/tokenizer/state.js.map +1 -0
- package/node_modules/@babel/parser/lib/tokenizer/types.js +586 -0
- package/node_modules/@babel/parser/lib/tokenizer/types.js.map +1 -0
- package/node_modules/@babel/parser/lib/util/class-scope.js +92 -0
- package/node_modules/@babel/parser/lib/util/class-scope.js.map +1 -0
- package/node_modules/@babel/parser/lib/util/expression-scope.js +147 -0
- package/node_modules/@babel/parser/lib/util/expression-scope.js.map +1 -0
- package/node_modules/@babel/parser/lib/util/identifier.js +62 -0
- package/node_modules/@babel/parser/lib/util/identifier.js.map +1 -0
- package/node_modules/@babel/parser/lib/util/location.js +39 -0
- package/node_modules/@babel/parser/lib/util/location.js.map +1 -0
- package/node_modules/@babel/parser/lib/util/production-parameter.js +49 -0
- package/node_modules/@babel/parser/lib/util/production-parameter.js.map +1 -0
- package/node_modules/@babel/parser/lib/util/scope.js +161 -0
- package/node_modules/@babel/parser/lib/util/scope.js.map +1 -0
- package/node_modules/@babel/parser/lib/util/scopeflags.js +106 -0
- package/node_modules/@babel/parser/lib/util/scopeflags.js.map +1 -0
- package/node_modules/@babel/parser/lib/util/whitespace.js +59 -0
- package/node_modules/@babel/parser/lib/util/whitespace.js.map +1 -0
- package/node_modules/@babel/parser/package.json +46 -0
- package/node_modules/@babel/parser/typings/babel-parser.d.ts +241 -0
- package/node_modules/@babel/template/LICENSE +22 -0
- package/node_modules/@babel/template/README.md +19 -0
- package/node_modules/@babel/template/lib/builder.js +69 -0
- package/node_modules/@babel/template/lib/builder.js.map +1 -0
- package/node_modules/@babel/template/lib/formatters.js +66 -0
- package/node_modules/@babel/template/lib/formatters.js.map +1 -0
- package/node_modules/@babel/template/lib/index.js +29 -0
- package/node_modules/@babel/template/lib/index.js.map +1 -0
- package/node_modules/@babel/template/lib/literal.js +69 -0
- package/node_modules/@babel/template/lib/literal.js.map +1 -0
- package/node_modules/@babel/template/lib/options.js +73 -0
- package/node_modules/@babel/template/lib/options.js.map +1 -0
- package/node_modules/@babel/template/lib/parse.js +160 -0
- package/node_modules/@babel/template/lib/parse.js.map +1 -0
- package/node_modules/@babel/template/lib/populate.js +122 -0
- package/node_modules/@babel/template/lib/populate.js.map +1 -0
- package/node_modules/@babel/template/lib/string.js +20 -0
- package/node_modules/@babel/template/lib/string.js.map +1 -0
- package/node_modules/@babel/template/package.json +27 -0
- package/node_modules/@babel/traverse/LICENSE +22 -0
- package/node_modules/@babel/traverse/README.md +19 -0
- package/node_modules/@babel/traverse/lib/cache.js +25 -0
- package/node_modules/@babel/traverse/lib/cache.js.map +1 -0
- package/node_modules/@babel/traverse/lib/context.js +115 -0
- package/node_modules/@babel/traverse/lib/context.js.map +1 -0
- package/node_modules/@babel/traverse/lib/hub.js +19 -0
- package/node_modules/@babel/traverse/lib/hub.js.map +1 -0
- package/node_modules/@babel/traverse/lib/index.js +93 -0
- package/node_modules/@babel/traverse/lib/index.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/ancestry.js +141 -0
- package/node_modules/@babel/traverse/lib/path/ancestry.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/comments.js +54 -0
- package/node_modules/@babel/traverse/lib/path/comments.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/context.js +222 -0
- package/node_modules/@babel/traverse/lib/path/context.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/conversion.js +473 -0
- package/node_modules/@babel/traverse/lib/path/conversion.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/evaluation.js +340 -0
- package/node_modules/@babel/traverse/lib/path/evaluation.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/family.js +336 -0
- package/node_modules/@babel/traverse/lib/path/family.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/index.js +197 -0
- package/node_modules/@babel/traverse/lib/path/index.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/inference/index.js +149 -0
- package/node_modules/@babel/traverse/lib/path/inference/index.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +151 -0
- package/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/inference/inferers.js +207 -0
- package/node_modules/@babel/traverse/lib/path/inference/inferers.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/inference/util.js +30 -0
- package/node_modules/@babel/traverse/lib/path/inference/util.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/introspection.js +385 -0
- package/node_modules/@babel/traverse/lib/path/introspection.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/lib/hoister.js +171 -0
- package/node_modules/@babel/traverse/lib/path/lib/hoister.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js +38 -0
- package/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js +161 -0
- package/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +44 -0
- package/node_modules/@babel/traverse/lib/path/lib/virtual-types.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/modification.js +224 -0
- package/node_modules/@babel/traverse/lib/path/modification.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/removal.js +58 -0
- package/node_modules/@babel/traverse/lib/path/removal.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/replacement.js +205 -0
- package/node_modules/@babel/traverse/lib/path/replacement.js.map +1 -0
- package/node_modules/@babel/traverse/lib/scope/binding.js +85 -0
- package/node_modules/@babel/traverse/lib/scope/binding.js.map +1 -0
- package/node_modules/@babel/traverse/lib/scope/index.js +887 -0
- package/node_modules/@babel/traverse/lib/scope/index.js.map +1 -0
- package/node_modules/@babel/traverse/lib/scope/lib/renamer.js +113 -0
- package/node_modules/@babel/traverse/lib/scope/lib/renamer.js.map +1 -0
- package/node_modules/@babel/traverse/lib/traverse-node.js +25 -0
- package/node_modules/@babel/traverse/lib/traverse-node.js.map +1 -0
- package/node_modules/@babel/traverse/lib/types.js +3 -0
- package/node_modules/@babel/traverse/lib/types.js.map +1 -0
- package/node_modules/@babel/traverse/lib/visitors.js +218 -0
- package/node_modules/@babel/traverse/lib/visitors.js.map +1 -0
- package/node_modules/@babel/traverse/package.json +37 -0
- package/node_modules/@babel/types/LICENSE +22 -0
- package/node_modules/@babel/types/README.md +19 -0
- package/node_modules/@babel/types/lib/asserts/assertNode.js +16 -0
- package/node_modules/@babel/types/lib/asserts/assertNode.js.map +1 -0
- package/node_modules/@babel/types/lib/asserts/generated/index.js +1231 -0
- package/node_modules/@babel/types/lib/asserts/generated/index.js.map +1 -0
- package/node_modules/@babel/types/lib/ast-types/generated/index.js +3 -0
- package/node_modules/@babel/types/lib/ast-types/generated/index.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +18 -0
- package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +32 -0
- package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/generated/index.js +1985 -0
- package/node_modules/@babel/types/lib/builders/generated/index.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/generated/uppercase.js +1526 -0
- package/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/react/buildChildren.js +24 -0
- package/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +22 -0
- package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/validateNode.js +17 -0
- package/node_modules/@babel/types/lib/builders/validateNode.js.map +1 -0
- package/node_modules/@babel/types/lib/clone/clone.js +12 -0
- package/node_modules/@babel/types/lib/clone/clone.js.map +1 -0
- package/node_modules/@babel/types/lib/clone/cloneDeep.js +12 -0
- package/node_modules/@babel/types/lib/clone/cloneDeep.js.map +1 -0
- package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +12 -0
- package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +1 -0
- package/node_modules/@babel/types/lib/clone/cloneNode.js +100 -0
- package/node_modules/@babel/types/lib/clone/cloneNode.js.map +1 -0
- package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +12 -0
- package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/addComment.js +15 -0
- package/node_modules/@babel/types/lib/comments/addComment.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/addComments.js +22 -0
- package/node_modules/@babel/types/lib/comments/addComments.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/inheritInnerComments.js +12 -0
- package/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +12 -0
- package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +12 -0
- package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/inheritsComments.js +17 -0
- package/node_modules/@babel/types/lib/comments/inheritsComments.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/removeComments.js +15 -0
- package/node_modules/@babel/types/lib/comments/removeComments.js.map +1 -0
- package/node_modules/@babel/types/lib/constants/generated/index.js +109 -0
- package/node_modules/@babel/types/lib/constants/generated/index.js.map +1 -0
- package/node_modules/@babel/types/lib/constants/index.js +51 -0
- package/node_modules/@babel/types/lib/constants/index.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/ensureBlock.js +14 -0
- package/node_modules/@babel/types/lib/converters/ensureBlock.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +64 -0
- package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +14 -0
- package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toBlock.js +29 -0
- package/node_modules/@babel/types/lib/converters/toBlock.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toComputedKey.js +14 -0
- package/node_modules/@babel/types/lib/converters/toComputedKey.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toExpression.js +28 -0
- package/node_modules/@babel/types/lib/converters/toExpression.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toIdentifier.js +25 -0
- package/node_modules/@babel/types/lib/converters/toIdentifier.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toKeyAlias.js +38 -0
- package/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toSequenceExpression.js +19 -0
- package/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toStatement.js +40 -0
- package/node_modules/@babel/types/lib/converters/toStatement.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/valueToNode.js +77 -0
- package/node_modules/@babel/types/lib/converters/valueToNode.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/core.js +1663 -0
- package/node_modules/@babel/types/lib/definitions/core.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +12 -0
- package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/experimental.js +134 -0
- package/node_modules/@babel/types/lib/definitions/experimental.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/flow.js +488 -0
- package/node_modules/@babel/types/lib/definitions/flow.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/index.js +97 -0
- package/node_modules/@babel/types/lib/definitions/index.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/jsx.js +158 -0
- package/node_modules/@babel/types/lib/definitions/jsx.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/misc.js +32 -0
- package/node_modules/@babel/types/lib/definitions/misc.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/placeholders.js +30 -0
- package/node_modules/@babel/types/lib/definitions/placeholders.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/typescript.js +490 -0
- package/node_modules/@babel/types/lib/definitions/typescript.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/utils.js +280 -0
- package/node_modules/@babel/types/lib/definitions/utils.js.map +1 -0
- package/node_modules/@babel/types/lib/index-legacy.d.ts +2748 -0
- package/node_modules/@babel/types/lib/index.d.ts +3266 -0
- package/node_modules/@babel/types/lib/index.js +570 -0
- package/node_modules/@babel/types/lib/index.js.flow +2602 -0
- package/node_modules/@babel/types/lib/index.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +15 -0
- package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +65 -0
- package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/inherits.js +28 -0
- package/node_modules/@babel/types/lib/modifications/inherits.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +17 -0
- package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/removeProperties.js +24 -0
- package/node_modules/@babel/types/lib/modifications/removeProperties.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +14 -0
- package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +65 -0
- package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +1 -0
- package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +93 -0
- package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +1 -0
- package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +14 -0
- package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +1 -0
- package/node_modules/@babel/types/lib/traverse/traverse.js +50 -0
- package/node_modules/@babel/types/lib/traverse/traverse.js.map +1 -0
- package/node_modules/@babel/types/lib/traverse/traverseFast.js +26 -0
- package/node_modules/@babel/types/lib/traverse/traverseFast.js.map +1 -0
- package/node_modules/@babel/types/lib/utils/deprecationWarning.js +44 -0
- package/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +1 -0
- package/node_modules/@babel/types/lib/utils/inherit.js +13 -0
- package/node_modules/@babel/types/lib/utils/inherit.js.map +1 -0
- package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +40 -0
- package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +1 -0
- package/node_modules/@babel/types/lib/utils/shallowEqual.js +17 -0
- package/node_modules/@babel/types/lib/utils/shallowEqual.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +13 -0
- package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/generated/index.js +2744 -0
- package/node_modules/@babel/types/lib/validators/generated/index.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/is.js +27 -0
- package/node_modules/@babel/types/lib/validators/is.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isBinding.js +27 -0
- package/node_modules/@babel/types/lib/validators/isBinding.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isBlockScoped.js +13 -0
- package/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isImmutable.js +21 -0
- package/node_modules/@babel/types/lib/validators/isImmutable.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isLet.js +13 -0
- package/node_modules/@babel/types/lib/validators/isLet.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isNode.js +12 -0
- package/node_modules/@babel/types/lib/validators/isNode.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +57 -0
- package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isPlaceholderType.js +19 -0
- package/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isReferenced.js +96 -0
- package/node_modules/@babel/types/lib/validators/isReferenced.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isScope.js +18 -0
- package/node_modules/@babel/types/lib/validators/isScope.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +14 -0
- package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isType.js +21 -0
- package/node_modules/@babel/types/lib/validators/isType.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +13 -0
- package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isValidIdentifier.js +18 -0
- package/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isVar.js +15 -0
- package/node_modules/@babel/types/lib/validators/isVar.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/matchesPattern.js +36 -0
- package/node_modules/@babel/types/lib/validators/matchesPattern.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/react/isCompatTag.js +11 -0
- package/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/react/isReactComponent.js +12 -0
- package/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/validate.js +30 -0
- package/node_modules/@babel/types/lib/validators/validate.js.map +1 -0
- package/node_modules/@babel/types/package.json +41 -0
- package/node_modules/@istanbuljs/load-nyc-config/CHANGELOG.md +41 -0
- package/node_modules/@istanbuljs/load-nyc-config/LICENSE +16 -0
- package/node_modules/@istanbuljs/load-nyc-config/README.md +64 -0
- package/node_modules/@istanbuljs/load-nyc-config/index.js +166 -0
- package/node_modules/@istanbuljs/load-nyc-config/load-esm.js +12 -0
- package/node_modules/@istanbuljs/load-nyc-config/package.json +49 -0
- package/node_modules/@istanbuljs/schema/CHANGELOG.md +44 -0
- package/node_modules/@istanbuljs/schema/LICENSE +21 -0
- package/node_modules/@istanbuljs/schema/README.md +30 -0
- package/node_modules/@istanbuljs/schema/default-exclude.js +22 -0
- package/node_modules/@istanbuljs/schema/default-extension.js +10 -0
- package/node_modules/@istanbuljs/schema/index.js +466 -0
- package/node_modules/@istanbuljs/schema/package.json +30 -0
- package/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
- package/node_modules/@jridgewell/gen-mapping/README.md +227 -0
- package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs +230 -0
- package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs.map +1 -0
- package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js +236 -0
- package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js.map +1 -0
- package/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts +90 -0
- package/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts +12 -0
- package/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts +35 -0
- package/node_modules/@jridgewell/gen-mapping/package.json +77 -0
- package/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
- package/node_modules/@jridgewell/resolve-uri/README.md +40 -0
- package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +242 -0
- package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
- package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +250 -0
- package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
- package/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
- package/node_modules/@jridgewell/resolve-uri/package.json +69 -0
- package/node_modules/@jridgewell/set-array/LICENSE +19 -0
- package/node_modules/@jridgewell/set-array/README.md +37 -0
- package/node_modules/@jridgewell/set-array/dist/set-array.mjs +48 -0
- package/node_modules/@jridgewell/set-array/dist/set-array.mjs.map +1 -0
- package/node_modules/@jridgewell/set-array/dist/set-array.umd.js +58 -0
- package/node_modules/@jridgewell/set-array/dist/set-array.umd.js.map +1 -0
- package/node_modules/@jridgewell/set-array/dist/types/set-array.d.ts +26 -0
- package/node_modules/@jridgewell/set-array/package.json +66 -0
- package/node_modules/@jridgewell/set-array/src/set-array.ts +55 -0
- package/node_modules/@jridgewell/sourcemap-codec/LICENSE +21 -0
- package/node_modules/@jridgewell/sourcemap-codec/README.md +200 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +164 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +1 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +175 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/types/sourcemap-codec.d.ts +6 -0
- package/node_modules/@jridgewell/sourcemap-codec/package.json +74 -0
- package/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
- package/node_modules/@jridgewell/trace-mapping/README.md +252 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +552 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +566 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts +8 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/binary-search.d.ts +32 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/by-source.d.ts +7 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/resolve.d.ts +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/sort.d.ts +2 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts +16 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/strip-filename.d.ts +4 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts +74 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts +92 -0
- package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/LICENSE +21 -0
- package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/README.md +200 -0
- package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +164 -0
- package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +1 -0
- package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +175 -0
- package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
- package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/types/sourcemap-codec.d.ts +6 -0
- package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/package.json +75 -0
- package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/src/sourcemap-codec.ts +198 -0
- package/node_modules/@jridgewell/trace-mapping/package.json +75 -0
- package/node_modules/@protobufjs/aspromise/LICENSE +26 -0
- package/node_modules/@protobufjs/aspromise/README.md +13 -0
- package/node_modules/@protobufjs/aspromise/index.d.ts +13 -0
- package/node_modules/@protobufjs/aspromise/index.js +52 -0
- package/node_modules/@protobufjs/aspromise/package.json +21 -0
- package/node_modules/@protobufjs/aspromise/tests/index.js +130 -0
- package/node_modules/@protobufjs/base64/LICENSE +26 -0
- package/node_modules/@protobufjs/base64/README.md +19 -0
- package/node_modules/@protobufjs/base64/index.d.ts +32 -0
- package/node_modules/@protobufjs/base64/index.js +139 -0
- package/node_modules/@protobufjs/base64/package.json +21 -0
- package/node_modules/@protobufjs/base64/tests/index.js +46 -0
- package/node_modules/@protobufjs/codegen/LICENSE +26 -0
- package/node_modules/@protobufjs/codegen/README.md +49 -0
- package/node_modules/@protobufjs/codegen/index.d.ts +31 -0
- package/node_modules/@protobufjs/codegen/index.js +99 -0
- package/node_modules/@protobufjs/codegen/package.json +13 -0
- package/node_modules/@protobufjs/codegen/tests/index.js +13 -0
- package/node_modules/@protobufjs/eventemitter/LICENSE +26 -0
- package/node_modules/@protobufjs/eventemitter/README.md +22 -0
- package/node_modules/@protobufjs/eventemitter/index.d.ts +43 -0
- package/node_modules/@protobufjs/eventemitter/index.js +76 -0
- package/node_modules/@protobufjs/eventemitter/package.json +21 -0
- package/node_modules/@protobufjs/eventemitter/tests/index.js +47 -0
- package/node_modules/@protobufjs/fetch/LICENSE +26 -0
- package/node_modules/@protobufjs/fetch/README.md +13 -0
- package/node_modules/@protobufjs/fetch/index.d.ts +56 -0
- package/node_modules/@protobufjs/fetch/index.js +115 -0
- package/node_modules/@protobufjs/fetch/package.json +25 -0
- package/node_modules/@protobufjs/fetch/tests/index.js +16 -0
- package/node_modules/@protobufjs/float/LICENSE +26 -0
- package/node_modules/@protobufjs/float/README.md +102 -0
- package/node_modules/@protobufjs/float/bench/index.js +87 -0
- package/node_modules/@protobufjs/float/bench/suite.js +46 -0
- package/node_modules/@protobufjs/float/index.d.ts +83 -0
- package/node_modules/@protobufjs/float/index.js +335 -0
- package/node_modules/@protobufjs/float/package.json +26 -0
- package/node_modules/@protobufjs/float/tests/index.js +100 -0
- package/node_modules/@protobufjs/inquire/.npmignore +3 -0
- package/node_modules/@protobufjs/inquire/LICENSE +26 -0
- package/node_modules/@protobufjs/inquire/README.md +13 -0
- package/node_modules/@protobufjs/inquire/index.d.ts +9 -0
- package/node_modules/@protobufjs/inquire/index.js +17 -0
- package/node_modules/@protobufjs/inquire/package.json +21 -0
- package/node_modules/@protobufjs/inquire/tests/data/array.js +1 -0
- package/node_modules/@protobufjs/inquire/tests/data/emptyArray.js +1 -0
- package/node_modules/@protobufjs/inquire/tests/data/emptyObject.js +1 -0
- package/node_modules/@protobufjs/inquire/tests/data/object.js +1 -0
- package/node_modules/@protobufjs/inquire/tests/index.js +20 -0
- package/node_modules/@protobufjs/path/LICENSE +26 -0
- package/node_modules/@protobufjs/path/README.md +19 -0
- package/node_modules/@protobufjs/path/index.d.ts +22 -0
- package/node_modules/@protobufjs/path/index.js +65 -0
- package/node_modules/@protobufjs/path/package.json +21 -0
- package/node_modules/@protobufjs/path/tests/index.js +60 -0
- package/node_modules/@protobufjs/pool/.npmignore +3 -0
- package/node_modules/@protobufjs/pool/LICENSE +26 -0
- package/node_modules/@protobufjs/pool/README.md +13 -0
- package/node_modules/@protobufjs/pool/index.d.ts +32 -0
- package/node_modules/@protobufjs/pool/index.js +48 -0
- package/node_modules/@protobufjs/pool/package.json +21 -0
- package/node_modules/@protobufjs/pool/tests/index.js +33 -0
- package/node_modules/@protobufjs/utf8/.npmignore +3 -0
- package/node_modules/@protobufjs/utf8/LICENSE +26 -0
- package/node_modules/@protobufjs/utf8/README.md +20 -0
- package/node_modules/@protobufjs/utf8/index.d.ts +24 -0
- package/node_modules/@protobufjs/utf8/index.js +105 -0
- package/node_modules/@protobufjs/utf8/package.json +21 -0
- package/node_modules/@protobufjs/utf8/tests/data/utf8.txt +216 -0
- package/node_modules/@protobufjs/utf8/tests/index.js +57 -0
- package/node_modules/@turf/along/package.json +41 -69
- package/node_modules/@turf/angle/package.json +44 -75
- package/node_modules/@turf/area/package.json +38 -68
- package/node_modules/@turf/bbox/package.json +37 -81
- package/node_modules/@turf/bbox-clip/package.json +44 -81
- package/node_modules/@turf/bbox-polygon/package.json +36 -66
- package/node_modules/@turf/bearing/package.json +36 -70
- package/node_modules/@turf/bezier-spline/package.json +39 -67
- package/node_modules/@turf/boolean-clockwise/package.json +42 -83
- package/node_modules/@turf/boolean-contains/package.json +46 -80
- package/node_modules/@turf/boolean-crosses/package.json +45 -79
- package/node_modules/@turf/boolean-disjoint/package.json +44 -79
- package/node_modules/@turf/boolean-equal/package.json +47 -84
- package/node_modules/@turf/boolean-intersects/package.json +42 -77
- package/node_modules/@turf/boolean-overlap/package.json +48 -82
- package/node_modules/@turf/boolean-parallel/package.json +42 -73
- package/node_modules/@turf/boolean-point-in-polygon/package.json +37 -77
- package/node_modules/@turf/boolean-point-on-line/package.json +39 -73
- package/node_modules/@turf/boolean-within/package.json +46 -79
- package/node_modules/@turf/buffer/package.json +47 -84
- package/node_modules/@turf/center/package.json +42 -73
- package/node_modules/@turf/center-mean/package.json +45 -78
- package/node_modules/@turf/center-median/package.json +45 -76
- package/node_modules/@turf/center-of-mass/package.json +40 -68
- package/node_modules/@turf/centroid/package.json +40 -74
- package/node_modules/@turf/circle/package.json +41 -71
- package/node_modules/@turf/clean-coords/package.json +40 -75
- package/node_modules/@turf/clone/package.json +36 -81
- package/node_modules/@turf/clusters/package.json +39 -70
- package/node_modules/@turf/clusters-dbscan/package.json +51 -88
- package/node_modules/@turf/clusters-kmeans/package.json +53 -90
- package/node_modules/@turf/collect/package.json +42 -73
- package/node_modules/@turf/combine/package.json +37 -65
- package/node_modules/@turf/concave/package.json +56 -111
- package/node_modules/@turf/convex/package.json +39 -68
- package/node_modules/@turf/destination/package.json +41 -75
- package/node_modules/@turf/difference/package.json +35 -63
- package/node_modules/@turf/dissolve/package.json +38 -66
- package/node_modules/@turf/distance/package.json +38 -83
- package/node_modules/@turf/distance-weight/package.json +40 -72
- package/node_modules/@turf/ellipse/package.json +43 -75
- package/node_modules/@turf/envelope/package.json +36 -65
- package/node_modules/@turf/explode/package.json +36 -67
- package/node_modules/@turf/flatten/package.json +39 -73
- package/node_modules/@turf/flip/package.json +36 -64
- package/node_modules/@turf/great-circle/package.json +41 -78
- package/node_modules/@turf/helpers/package.json +38 -184
- package/node_modules/@turf/hex-grid/package.json +50 -97
- package/node_modules/@turf/interpolate/package.json +47 -78
- package/node_modules/@turf/intersect/package.json +39 -69
- package/node_modules/@turf/invariant/package.json +36 -126
- package/node_modules/@turf/isobands/package.json +52 -83
- package/node_modules/@turf/isolines/package.json +48 -79
- package/node_modules/@turf/kinks/package.json +35 -63
- package/node_modules/@turf/length/package.json +43 -78
- package/node_modules/@turf/line-arc/package.json +36 -65
- package/node_modules/@turf/line-chunk/package.json +44 -84
- package/node_modules/@turf/line-intersect/package.json +46 -85
- package/node_modules/@turf/line-offset/package.json +41 -78
- package/node_modules/@turf/line-overlap/package.json +48 -80
- package/node_modules/@turf/line-segment/package.json +38 -70
- package/node_modules/@turf/line-slice/package.json +39 -67
- package/node_modules/@turf/line-slice-along/package.json +36 -65
- package/node_modules/@turf/line-split/package.json +46 -77
- package/node_modules/@turf/line-to-polygon/package.json +43 -74
- package/node_modules/@turf/mask/package.json +35 -63
- package/node_modules/@turf/meta/package.json +39 -128
- package/node_modules/@turf/midpoint/package.json +36 -64
- package/node_modules/@turf/moran-index/package.json +39 -70
- package/node_modules/@turf/nearest-point/package.json +39 -69
- package/node_modules/@turf/nearest-point-on-line/package.json +40 -71
- package/node_modules/@turf/nearest-point-to-line/package.json +47 -78
- package/node_modules/@turf/planepoint/package.json +34 -62
- package/node_modules/@turf/point-grid/package.json +45 -80
- package/node_modules/@turf/point-on-feature/package.json +40 -68
- package/node_modules/@turf/point-to-line-distance/package.json +46 -78
- package/node_modules/@turf/points-within-polygon/package.json +35 -64
- package/node_modules/@turf/polygon-smooth/package.json +37 -68
- package/node_modules/@turf/polygon-tangents/package.json +43 -77
- package/node_modules/@turf/polygon-to-line/package.json +39 -69
- package/node_modules/@turf/polygonize/package.json +43 -77
- package/node_modules/@turf/projection/package.json +44 -77
- package/node_modules/@turf/random/package.json +34 -62
- package/node_modules/@turf/rectangle-grid/package.json +43 -77
- package/node_modules/@turf/rewind/package.json +43 -83
- package/node_modules/@turf/rhumb-bearing/package.json +43 -85
- package/node_modules/@turf/rhumb-destination/package.json +44 -85
- package/node_modules/@turf/rhumb-distance/package.json +44 -84
- package/node_modules/@turf/sample/package.json +32 -60
- package/node_modules/@turf/sector/package.json +37 -65
- package/node_modules/@turf/shortest-path/package.json +45 -79
- package/node_modules/@turf/simplify/package.json +43 -77
- package/node_modules/@turf/square/package.json +33 -62
- package/node_modules/@turf/square-grid/package.json +40 -69
- package/node_modules/@turf/standard-deviational-ellipse/package.json +43 -74
- package/node_modules/@turf/tag/package.json +38 -66
- package/node_modules/@turf/tesselate/package.json +40 -80
- package/node_modules/@turf/tin/package.json +34 -63
- package/node_modules/@turf/transform-rotate/package.json +45 -80
- package/node_modules/@turf/transform-scale/package.json +51 -86
- package/node_modules/@turf/transform-translate/package.json +44 -78
- package/node_modules/@turf/triangle-grid/package.json +42 -71
- package/node_modules/@turf/truncate/package.json +40 -72
- package/node_modules/@turf/turf/package.json +74 -102
- package/node_modules/@turf/union/package.json +39 -67
- package/node_modules/@turf/unkink-polygon/package.json +40 -68
- package/node_modules/@turf/voronoi/package.json +43 -83
- package/node_modules/@types/geojson/package.json +42 -66
- package/node_modules/@types/node/LICENSE +21 -0
- package/node_modules/@types/node/README.md +16 -0
- package/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/node_modules/@types/node/assert.d.ts +972 -0
- package/node_modules/@types/node/async_hooks.d.ts +530 -0
- package/node_modules/@types/node/buffer.d.ts +2354 -0
- package/node_modules/@types/node/child_process.d.ts +1395 -0
- package/node_modules/@types/node/cluster.d.ts +414 -0
- package/node_modules/@types/node/console.d.ts +412 -0
- package/node_modules/@types/node/constants.d.ts +18 -0
- package/node_modules/@types/node/crypto.d.ts +3978 -0
- package/node_modules/@types/node/dgram.d.ts +545 -0
- package/node_modules/@types/node/diagnostics_channel.d.ts +191 -0
- package/node_modules/@types/node/dns/promises.d.ts +414 -0
- package/node_modules/@types/node/dns.d.ts +668 -0
- package/node_modules/@types/node/dom-events.d.ts +126 -0
- package/node_modules/@types/node/domain.d.ts +170 -0
- package/node_modules/@types/node/events.d.ts +753 -0
- package/node_modules/@types/node/fs/promises.d.ts +1197 -0
- package/node_modules/@types/node/fs.d.ts +4044 -0
- package/node_modules/@types/node/globals.d.ts +303 -0
- package/node_modules/@types/node/globals.global.d.ts +1 -0
- package/node_modules/@types/node/http.d.ts +1724 -0
- package/node_modules/@types/node/http2.d.ts +2129 -0
- package/node_modules/@types/node/https.d.ts +441 -0
- package/node_modules/@types/node/index.d.ts +133 -0
- package/node_modules/@types/node/inspector.d.ts +2748 -0
- package/node_modules/@types/node/module.d.ts +129 -0
- package/node_modules/@types/node/net.d.ts +888 -0
- package/node_modules/@types/node/os.d.ts +477 -0
- package/node_modules/@types/node/package.json +232 -0
- package/node_modules/@types/node/path.d.ts +191 -0
- package/node_modules/@types/node/perf_hooks.d.ts +638 -0
- package/node_modules/@types/node/process.d.ts +1494 -0
- package/node_modules/@types/node/punycode.d.ts +117 -0
- package/node_modules/@types/node/querystring.d.ts +131 -0
- package/node_modules/@types/node/readline/promises.d.ts +145 -0
- package/node_modules/@types/node/readline.d.ts +526 -0
- package/node_modules/@types/node/repl.d.ts +424 -0
- package/node_modules/@types/node/stream/consumers.d.ts +12 -0
- package/node_modules/@types/node/stream/promises.d.ts +42 -0
- package/node_modules/@types/node/stream/web.d.ts +330 -0
- package/node_modules/@types/node/stream.d.ts +1425 -0
- package/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/node_modules/@types/node/test.d.ts +1432 -0
- package/node_modules/@types/node/timers/promises.d.ts +93 -0
- package/node_modules/@types/node/timers.d.ts +215 -0
- package/node_modules/@types/node/tls.d.ts +1130 -0
- package/node_modules/@types/node/trace_events.d.ts +182 -0
- package/node_modules/@types/node/ts4.8/assert/strict.d.ts +8 -0
- package/node_modules/@types/node/ts4.8/assert.d.ts +972 -0
- package/node_modules/@types/node/ts4.8/async_hooks.d.ts +530 -0
- package/node_modules/@types/node/ts4.8/buffer.d.ts +2354 -0
- package/node_modules/@types/node/ts4.8/child_process.d.ts +1395 -0
- package/node_modules/@types/node/ts4.8/cluster.d.ts +414 -0
- package/node_modules/@types/node/ts4.8/console.d.ts +412 -0
- package/node_modules/@types/node/ts4.8/constants.d.ts +18 -0
- package/node_modules/@types/node/ts4.8/crypto.d.ts +3977 -0
- package/node_modules/@types/node/ts4.8/dgram.d.ts +545 -0
- package/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +191 -0
- package/node_modules/@types/node/ts4.8/dns/promises.d.ts +414 -0
- package/node_modules/@types/node/ts4.8/dns.d.ts +668 -0
- package/node_modules/@types/node/ts4.8/dom-events.d.ts +126 -0
- package/node_modules/@types/node/ts4.8/domain.d.ts +170 -0
- package/node_modules/@types/node/ts4.8/events.d.ts +753 -0
- package/node_modules/@types/node/ts4.8/fs/promises.d.ts +1197 -0
- package/node_modules/@types/node/ts4.8/fs.d.ts +4044 -0
- package/node_modules/@types/node/ts4.8/globals.d.ts +303 -0
- package/node_modules/@types/node/ts4.8/globals.global.d.ts +1 -0
- package/node_modules/@types/node/ts4.8/http.d.ts +1724 -0
- package/node_modules/@types/node/ts4.8/http2.d.ts +2129 -0
- package/node_modules/@types/node/ts4.8/https.d.ts +441 -0
- package/node_modules/@types/node/ts4.8/index.d.ts +88 -0
- package/node_modules/@types/node/ts4.8/inspector.d.ts +2748 -0
- package/node_modules/@types/node/ts4.8/module.d.ts +129 -0
- package/node_modules/@types/node/ts4.8/net.d.ts +888 -0
- package/node_modules/@types/node/ts4.8/os.d.ts +477 -0
- package/node_modules/@types/node/ts4.8/path.d.ts +191 -0
- package/node_modules/@types/node/ts4.8/perf_hooks.d.ts +638 -0
- package/node_modules/@types/node/ts4.8/process.d.ts +1494 -0
- package/node_modules/@types/node/ts4.8/punycode.d.ts +117 -0
- package/node_modules/@types/node/ts4.8/querystring.d.ts +131 -0
- package/node_modules/@types/node/ts4.8/readline/promises.d.ts +145 -0
- package/node_modules/@types/node/ts4.8/readline.d.ts +526 -0
- package/node_modules/@types/node/ts4.8/repl.d.ts +424 -0
- package/node_modules/@types/node/ts4.8/stream/consumers.d.ts +12 -0
- package/node_modules/@types/node/ts4.8/stream/promises.d.ts +42 -0
- package/node_modules/@types/node/ts4.8/stream/web.d.ts +330 -0
- package/node_modules/@types/node/ts4.8/stream.d.ts +1396 -0
- package/node_modules/@types/node/ts4.8/string_decoder.d.ts +67 -0
- package/node_modules/@types/node/ts4.8/test.d.ts +1414 -0
- package/node_modules/@types/node/ts4.8/timers/promises.d.ts +93 -0
- package/node_modules/@types/node/ts4.8/timers.d.ts +215 -0
- package/node_modules/@types/node/ts4.8/tls.d.ts +1130 -0
- package/node_modules/@types/node/ts4.8/trace_events.d.ts +182 -0
- package/node_modules/@types/node/ts4.8/tty.d.ts +208 -0
- package/node_modules/@types/node/ts4.8/url.d.ts +915 -0
- package/node_modules/@types/node/ts4.8/util.d.ts +2116 -0
- package/node_modules/@types/node/ts4.8/v8.d.ts +635 -0
- package/node_modules/@types/node/ts4.8/vm.d.ts +894 -0
- package/node_modules/@types/node/ts4.8/wasi.d.ts +152 -0
- package/node_modules/@types/node/ts4.8/worker_threads.d.ts +693 -0
- package/node_modules/@types/node/ts4.8/zlib.d.ts +517 -0
- package/node_modules/@types/node/tty.d.ts +208 -0
- package/node_modules/@types/node/url.d.ts +915 -0
- package/node_modules/@types/node/util.d.ts +2116 -0
- package/node_modules/@types/node/v8.d.ts +635 -0
- package/node_modules/@types/node/vm.d.ts +894 -0
- package/node_modules/@types/node/wasi.d.ts +152 -0
- package/node_modules/@types/node/worker_threads.d.ts +693 -0
- package/node_modules/@types/node/zlib.d.ts +517 -0
- package/node_modules/adm-zip/LICENSE +21 -21
- package/node_modules/adm-zip/adm-zip.js +25 -22
- package/node_modules/adm-zip/headers/mainHeader.js +2 -1
- package/node_modules/adm-zip/package.json +28 -57
- package/node_modules/adm-zip/util/utils.js +1 -0
- package/node_modules/aggregate-error/index.d.ts +51 -0
- package/node_modules/aggregate-error/index.js +47 -0
- package/node_modules/aggregate-error/license +9 -0
- package/node_modules/aggregate-error/package.json +41 -0
- package/node_modules/aggregate-error/readme.md +61 -0
- package/node_modules/ansi-regex/index.d.ts +37 -0
- package/node_modules/ansi-regex/index.js +10 -0
- package/node_modules/ansi-regex/license +9 -0
- package/node_modules/ansi-regex/package.json +55 -0
- package/node_modules/ansi-regex/readme.md +78 -0
- package/node_modules/ansi-styles/index.js +165 -0
- package/node_modules/ansi-styles/license +9 -0
- package/node_modules/ansi-styles/package.json +56 -0
- package/node_modules/ansi-styles/readme.md +147 -0
- package/node_modules/append-transform/CHANGELOG.md +14 -0
- package/node_modules/append-transform/index.js +91 -0
- package/node_modules/append-transform/license +21 -0
- package/node_modules/append-transform/package.json +47 -0
- package/node_modules/append-transform/readme.md +76 -0
- package/node_modules/archy/.travis.yml +4 -0
- package/node_modules/archy/LICENSE +18 -0
- package/node_modules/archy/examples/beep.js +24 -0
- package/node_modules/archy/examples/multi_line.js +25 -0
- package/node_modules/archy/index.js +35 -0
- package/node_modules/archy/package.json +40 -0
- package/node_modules/archy/readme.markdown +88 -0
- package/node_modules/archy/test/beep.js +40 -0
- package/node_modules/archy/test/multi_line.js +45 -0
- package/node_modules/archy/test/non_unicode.js +40 -0
- package/node_modules/argparse/CHANGELOG.md +185 -0
- package/node_modules/argparse/LICENSE +21 -0
- package/node_modules/argparse/README.md +257 -0
- package/node_modules/argparse/index.js +3 -0
- package/node_modules/argparse/lib/action/append/constant.js +47 -0
- package/node_modules/argparse/lib/action/append.js +53 -0
- package/node_modules/argparse/lib/action/count.js +40 -0
- package/node_modules/argparse/lib/action/help.js +47 -0
- package/node_modules/argparse/lib/action/store/constant.js +43 -0
- package/node_modules/argparse/lib/action/store/false.js +27 -0
- package/node_modules/argparse/lib/action/store/true.js +26 -0
- package/node_modules/argparse/lib/action/store.js +50 -0
- package/node_modules/argparse/lib/action/subparsers.js +149 -0
- package/node_modules/argparse/lib/action/version.js +47 -0
- package/node_modules/argparse/lib/action.js +146 -0
- package/node_modules/argparse/lib/action_container.js +482 -0
- package/node_modules/argparse/lib/argparse.js +14 -0
- package/node_modules/argparse/lib/argument/error.js +50 -0
- package/node_modules/argparse/lib/argument/exclusive.js +54 -0
- package/node_modules/argparse/lib/argument/group.js +75 -0
- package/node_modules/argparse/lib/argument_parser.js +1161 -0
- package/node_modules/argparse/lib/const.js +21 -0
- package/node_modules/argparse/lib/help/added_formatters.js +87 -0
- package/node_modules/argparse/lib/help/formatter.js +795 -0
- package/node_modules/argparse/lib/namespace.js +76 -0
- package/node_modules/argparse/lib/utils.js +57 -0
- package/node_modules/argparse/package.json +34 -0
- package/node_modules/asynckit/package.json +40 -68
- package/node_modules/axios/CHANGELOG.md +473 -837
- package/node_modules/axios/LICENSE +4 -16
- package/node_modules/axios/MIGRATION_GUIDE.md +3 -0
- package/node_modules/axios/README.md +518 -114
- package/node_modules/axios/SECURITY.md +4 -3
- package/node_modules/axios/dist/axios.js +2759 -2070
- package/node_modules/axios/dist/axios.js.map +1 -0
- package/node_modules/axios/dist/axios.min.js +2 -2
- package/node_modules/axios/dist/axios.min.js.map +1 -0
- package/node_modules/axios/dist/browser/axios.cjs +3210 -0
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -0
- package/node_modules/axios/dist/esm/axios.js +3232 -0
- package/node_modules/axios/dist/esm/axios.js.map +1 -0
- package/node_modules/axios/dist/esm/axios.min.js +2 -0
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -0
- package/node_modules/axios/dist/node/axios.cjs +4237 -0
- package/node_modules/axios/dist/node/axios.cjs.map +1 -0
- package/node_modules/axios/index.d.cts +532 -0
- package/node_modules/axios/index.d.ts +398 -72
- package/node_modules/axios/index.js +41 -1
- package/node_modules/axios/lib/adapters/adapters.js +59 -0
- package/node_modules/axios/lib/adapters/http.js +479 -217
- package/node_modules/axios/lib/adapters/xhr.js +95 -54
- package/node_modules/axios/lib/axios.js +49 -20
- package/node_modules/axios/lib/cancel/CancelToken.js +91 -89
- package/node_modules/axios/lib/cancel/CanceledError.js +25 -0
- package/node_modules/axios/lib/cancel/isCancel.js +2 -2
- package/node_modules/axios/lib/core/Axios.js +155 -100
- package/node_modules/axios/lib/core/AxiosError.js +100 -0
- package/node_modules/axios/lib/core/AxiosHeaders.js +288 -0
- package/node_modules/axios/lib/core/InterceptorManager.js +62 -45
- package/node_modules/axios/lib/core/buildFullPath.js +5 -4
- package/node_modules/axios/lib/core/dispatchRequest.js +27 -33
- package/node_modules/axios/lib/core/mergeConfig.js +58 -52
- package/node_modules/axios/lib/core/settle.js +8 -6
- package/node_modules/axios/lib/core/transformData.js +15 -9
- package/node_modules/axios/lib/defaults/index.js +76 -41
- package/node_modules/axios/lib/defaults/transitional.js +1 -1
- package/node_modules/axios/lib/env/classes/FormData.js +2 -0
- package/node_modules/axios/lib/env/data.js +1 -3
- package/node_modules/axios/lib/helpers/AxiosTransformStream.js +191 -0
- package/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +58 -0
- package/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
- package/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +28 -0
- package/node_modules/axios/lib/helpers/bind.js +3 -7
- package/node_modules/axios/lib/helpers/buildURL.js +26 -33
- package/node_modules/axios/lib/helpers/callbackify.js +16 -0
- package/node_modules/axios/lib/helpers/combineURLs.js +3 -2
- package/node_modules/axios/lib/helpers/cookies.js +43 -44
- package/node_modules/axios/lib/helpers/deprecatedMethod.js +4 -2
- package/node_modules/axios/lib/helpers/formDataToJSON.js +92 -0
- package/node_modules/axios/lib/helpers/formDataToStream.js +111 -0
- package/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
- package/node_modules/axios/lib/helpers/isAbsoluteURL.js +3 -2
- package/node_modules/axios/lib/helpers/isAxiosError.js +4 -3
- package/node_modules/axios/lib/helpers/isURLSameOrigin.js +44 -45
- package/node_modules/axios/lib/helpers/null.js +2 -0
- package/node_modules/axios/lib/helpers/parseHeaders.js +24 -22
- package/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
- package/node_modules/axios/lib/helpers/readBlob.js +15 -0
- package/node_modules/axios/lib/helpers/speedometer.js +55 -0
- package/node_modules/axios/lib/helpers/spread.js +3 -2
- package/node_modules/axios/lib/helpers/throttle.js +33 -0
- package/node_modules/axios/lib/helpers/toFormData.js +203 -39
- package/node_modules/axios/lib/helpers/toURLEncodedForm.js +18 -0
- package/node_modules/axios/lib/helpers/validator.js +27 -18
- package/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
- package/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
- package/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
- package/node_modules/axios/lib/platform/browser/index.js +64 -0
- package/node_modules/axios/lib/platform/index.js +3 -0
- package/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
- package/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
- package/node_modules/axios/lib/platform/node/index.js +12 -0
- package/node_modules/axios/lib/utils.js +517 -144
- package/node_modules/axios/package.json +194 -93
- package/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/node_modules/balanced-match/LICENSE.md +21 -0
- package/node_modules/balanced-match/README.md +97 -0
- package/node_modules/balanced-match/index.js +62 -0
- package/node_modules/balanced-match/package.json +48 -0
- package/node_modules/brace-expansion/LICENSE +21 -0
- package/node_modules/brace-expansion/README.md +129 -0
- package/node_modules/brace-expansion/index.js +201 -0
- package/node_modules/brace-expansion/package.json +47 -0
- package/node_modules/browserslist/LICENSE +20 -0
- package/node_modules/browserslist/README.md +73 -0
- package/node_modules/browserslist/browser.js +52 -0
- package/node_modules/browserslist/cli.js +151 -0
- package/node_modules/browserslist/error.d.ts +7 -0
- package/node_modules/browserslist/error.js +12 -0
- package/node_modules/browserslist/index.d.ts +200 -0
- package/node_modules/browserslist/index.js +1196 -0
- package/node_modules/browserslist/node.js +410 -0
- package/node_modules/browserslist/package.json +44 -0
- package/node_modules/browserslist/parse.js +78 -0
- package/node_modules/caching-transform/index.js +102 -0
- package/node_modules/caching-transform/license +21 -0
- package/node_modules/caching-transform/package.json +46 -0
- package/node_modules/caching-transform/readme.md +163 -0
- package/node_modules/call-bind/package.json +78 -109
- package/node_modules/camelcase/index.d.ts +63 -0
- package/node_modules/camelcase/index.js +76 -0
- package/node_modules/camelcase/license +9 -0
- package/node_modules/camelcase/package.json +43 -0
- package/node_modules/camelcase/readme.md +99 -0
- package/node_modules/caniuse-lite/LICENSE +395 -0
- package/node_modules/caniuse-lite/README.md +6 -0
- package/node_modules/caniuse-lite/data/agents.js +1 -0
- package/node_modules/caniuse-lite/data/browserVersions.js +1 -0
- package/node_modules/caniuse-lite/data/browsers.js +1 -0
- package/node_modules/caniuse-lite/data/features/aac.js +1 -0
- package/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -0
- package/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -0
- package/node_modules/caniuse-lite/data/features/accelerometer.js +1 -0
- package/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -0
- package/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -0
- package/node_modules/caniuse-lite/data/features/ambient-light.js +1 -0
- package/node_modules/caniuse-lite/data/features/apng.js +1 -0
- package/node_modules/caniuse-lite/data/features/array-find-index.js +1 -0
- package/node_modules/caniuse-lite/data/features/array-find.js +1 -0
- package/node_modules/caniuse-lite/data/features/array-flat.js +1 -0
- package/node_modules/caniuse-lite/data/features/array-includes.js +1 -0
- package/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -0
- package/node_modules/caniuse-lite/data/features/asmjs.js +1 -0
- package/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -0
- package/node_modules/caniuse-lite/data/features/async-functions.js +1 -0
- package/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -0
- package/node_modules/caniuse-lite/data/features/audio-api.js +1 -0
- package/node_modules/caniuse-lite/data/features/audio.js +1 -0
- package/node_modules/caniuse-lite/data/features/audiotracks.js +1 -0
- package/node_modules/caniuse-lite/data/features/autofocus.js +1 -0
- package/node_modules/caniuse-lite/data/features/auxclick.js +1 -0
- package/node_modules/caniuse-lite/data/features/av1.js +1 -0
- package/node_modules/caniuse-lite/data/features/avif.js +1 -0
- package/node_modules/caniuse-lite/data/features/background-attachment.js +1 -0
- package/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -0
- package/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -0
- package/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -0
- package/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -0
- package/node_modules/caniuse-lite/data/features/background-sync.js +1 -0
- package/node_modules/caniuse-lite/data/features/battery-status.js +1 -0
- package/node_modules/caniuse-lite/data/features/beacon.js +1 -0
- package/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -0
- package/node_modules/caniuse-lite/data/features/bigint.js +1 -0
- package/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -0
- package/node_modules/caniuse-lite/data/features/bloburls.js +1 -0
- package/node_modules/caniuse-lite/data/features/border-image.js +1 -0
- package/node_modules/caniuse-lite/data/features/border-radius.js +1 -0
- package/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -0
- package/node_modules/caniuse-lite/data/features/brotli.js +1 -0
- package/node_modules/caniuse-lite/data/features/calc.js +1 -0
- package/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -0
- package/node_modules/caniuse-lite/data/features/canvas-text.js +1 -0
- package/node_modules/caniuse-lite/data/features/canvas.js +1 -0
- package/node_modules/caniuse-lite/data/features/ch-unit.js +1 -0
- package/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -0
- package/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -0
- package/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -0
- package/node_modules/caniuse-lite/data/features/classlist.js +1 -0
- package/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -0
- package/node_modules/caniuse-lite/data/features/clipboard.js +1 -0
- package/node_modules/caniuse-lite/data/features/colr-v1.js +1 -0
- package/node_modules/caniuse-lite/data/features/colr.js +1 -0
- package/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -0
- package/node_modules/caniuse-lite/data/features/console-basic.js +1 -0
- package/node_modules/caniuse-lite/data/features/console-time.js +1 -0
- package/node_modules/caniuse-lite/data/features/const.js +1 -0
- package/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -0
- package/node_modules/caniuse-lite/data/features/contenteditable.js +1 -0
- package/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -0
- package/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -0
- package/node_modules/caniuse-lite/data/features/cookie-store-api.js +1 -0
- package/node_modules/caniuse-lite/data/features/cors.js +1 -0
- package/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -0
- package/node_modules/caniuse-lite/data/features/credential-management.js +1 -0
- package/node_modules/caniuse-lite/data/features/cryptography.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-all.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-animation.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-any-link.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-appearance.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-autofill.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-canvas.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-cascade-layers.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-cascade-scope.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-color-function.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-container-queries-style.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-container-queries.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-container-query-units.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-containment.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-content-visibility.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-counters.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-element-function.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-env-function.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-file-selector-button.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-filters.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-first-line.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-fixed.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-font-palette.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-gradients.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-grid-animation.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-grid.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-has.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-image-set.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-lch-lab.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-masks.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-nesting.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-opacity.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-overflow.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-page-break.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-reflections.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-regions.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-relative-colors.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-resize.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-scroll-timeline.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-sel2.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-sel3.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-selection.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-shapes.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-sticky.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-table.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-text-box-trim.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-transitions.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-variables.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-when-else.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-width-stretch.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -0
- package/node_modules/caniuse-lite/data/features/css-zoom.js +1 -0
- package/node_modules/caniuse-lite/data/features/css3-attr.js +1 -0
- package/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -0
- package/node_modules/caniuse-lite/data/features/css3-colors.js +1 -0
- package/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -0
- package/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -0
- package/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -0
- package/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -0
- package/node_modules/caniuse-lite/data/features/currentcolor.js +1 -0
- package/node_modules/caniuse-lite/data/features/custom-elements.js +1 -0
- package/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -0
- package/node_modules/caniuse-lite/data/features/customevent.js +1 -0
- package/node_modules/caniuse-lite/data/features/datalist.js +1 -0
- package/node_modules/caniuse-lite/data/features/dataset.js +1 -0
- package/node_modules/caniuse-lite/data/features/datauri.js +1 -0
- package/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -0
- package/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +1 -0
- package/node_modules/caniuse-lite/data/features/decorators.js +1 -0
- package/node_modules/caniuse-lite/data/features/details.js +1 -0
- package/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -0
- package/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -0
- package/node_modules/caniuse-lite/data/features/dialog.js +1 -0
- package/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -0
- package/node_modules/caniuse-lite/data/features/dnssec.js +1 -0
- package/node_modules/caniuse-lite/data/features/do-not-track.js +1 -0
- package/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -0
- package/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -0
- package/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -0
- package/node_modules/caniuse-lite/data/features/document-policy.js +1 -0
- package/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -0
- package/node_modules/caniuse-lite/data/features/documenthead.js +1 -0
- package/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -0
- package/node_modules/caniuse-lite/data/features/dom-range.js +1 -0
- package/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -0
- package/node_modules/caniuse-lite/data/features/dommatrix.js +1 -0
- package/node_modules/caniuse-lite/data/features/download.js +1 -0
- package/node_modules/caniuse-lite/data/features/dragndrop.js +1 -0
- package/node_modules/caniuse-lite/data/features/element-closest.js +1 -0
- package/node_modules/caniuse-lite/data/features/element-from-point.js +1 -0
- package/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -0
- package/node_modules/caniuse-lite/data/features/eme.js +1 -0
- package/node_modules/caniuse-lite/data/features/eot.js +1 -0
- package/node_modules/caniuse-lite/data/features/es5.js +1 -0
- package/node_modules/caniuse-lite/data/features/es6-class.js +1 -0
- package/node_modules/caniuse-lite/data/features/es6-generators.js +1 -0
- package/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -0
- package/node_modules/caniuse-lite/data/features/es6-module.js +1 -0
- package/node_modules/caniuse-lite/data/features/es6-number.js +1 -0
- package/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -0
- package/node_modules/caniuse-lite/data/features/es6.js +1 -0
- package/node_modules/caniuse-lite/data/features/eventsource.js +1 -0
- package/node_modules/caniuse-lite/data/features/extended-system-fonts.js +1 -0
- package/node_modules/caniuse-lite/data/features/feature-policy.js +1 -0
- package/node_modules/caniuse-lite/data/features/fetch.js +1 -0
- package/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -0
- package/node_modules/caniuse-lite/data/features/fileapi.js +1 -0
- package/node_modules/caniuse-lite/data/features/filereader.js +1 -0
- package/node_modules/caniuse-lite/data/features/filereadersync.js +1 -0
- package/node_modules/caniuse-lite/data/features/filesystem.js +1 -0
- package/node_modules/caniuse-lite/data/features/flac.js +1 -0
- package/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -0
- package/node_modules/caniuse-lite/data/features/flexbox.js +1 -0
- package/node_modules/caniuse-lite/data/features/flow-root.js +1 -0
- package/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -0
- package/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -0
- package/node_modules/caniuse-lite/data/features/font-feature.js +1 -0
- package/node_modules/caniuse-lite/data/features/font-kerning.js +1 -0
- package/node_modules/caniuse-lite/data/features/font-loading.js +1 -0
- package/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -0
- package/node_modules/caniuse-lite/data/features/font-smooth.js +1 -0
- package/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -0
- package/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -0
- package/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -0
- package/node_modules/caniuse-lite/data/features/fontface.js +1 -0
- package/node_modules/caniuse-lite/data/features/form-attribute.js +1 -0
- package/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -0
- package/node_modules/caniuse-lite/data/features/form-validation.js +1 -0
- package/node_modules/caniuse-lite/data/features/forms.js +1 -0
- package/node_modules/caniuse-lite/data/features/fullscreen.js +1 -0
- package/node_modules/caniuse-lite/data/features/gamepad.js +1 -0
- package/node_modules/caniuse-lite/data/features/geolocation.js +1 -0
- package/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -0
- package/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -0
- package/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -0
- package/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -0
- package/node_modules/caniuse-lite/data/features/gyroscope.js +1 -0
- package/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -0
- package/node_modules/caniuse-lite/data/features/hashchange.js +1 -0
- package/node_modules/caniuse-lite/data/features/heif.js +1 -0
- package/node_modules/caniuse-lite/data/features/hevc.js +1 -0
- package/node_modules/caniuse-lite/data/features/hidden.js +1 -0
- package/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -0
- package/node_modules/caniuse-lite/data/features/history.js +1 -0
- package/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -0
- package/node_modules/caniuse-lite/data/features/html5semantic.js +1 -0
- package/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -0
- package/node_modules/caniuse-lite/data/features/http2.js +1 -0
- package/node_modules/caniuse-lite/data/features/http3.js +1 -0
- package/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -0
- package/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -0
- package/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -0
- package/node_modules/caniuse-lite/data/features/imagecapture.js +1 -0
- package/node_modules/caniuse-lite/data/features/ime.js +1 -0
- package/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -0
- package/node_modules/caniuse-lite/data/features/import-maps.js +1 -0
- package/node_modules/caniuse-lite/data/features/imports.js +1 -0
- package/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -0
- package/node_modules/caniuse-lite/data/features/indexeddb.js +1 -0
- package/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -0
- package/node_modules/caniuse-lite/data/features/inline-block.js +1 -0
- package/node_modules/caniuse-lite/data/features/innertext.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-color.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-datetime.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-event.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-minlength.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-number.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-pattern.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-range.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-search.js +1 -0
- package/node_modules/caniuse-lite/data/features/input-selection.js +1 -0
- package/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -0
- package/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -0
- package/node_modules/caniuse-lite/data/features/internationalization.js +1 -0
- package/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +1 -0
- package/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -0
- package/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -0
- package/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -0
- package/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -0
- package/node_modules/caniuse-lite/data/features/jpegxl.js +1 -0
- package/node_modules/caniuse-lite/data/features/jpegxr.js +1 -0
- package/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -0
- package/node_modules/caniuse-lite/data/features/json.js +1 -0
- package/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -0
- package/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -0
- package/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -0
- package/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -0
- package/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -0
- package/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -0
- package/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -0
- package/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -0
- package/node_modules/caniuse-lite/data/features/lazyload.js +1 -0
- package/node_modules/caniuse-lite/data/features/let.js +1 -0
- package/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -0
- package/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -0
- package/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -0
- package/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -0
- package/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -0
- package/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -0
- package/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -0
- package/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -0
- package/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -0
- package/node_modules/caniuse-lite/data/features/localecompare.js +1 -0
- package/node_modules/caniuse-lite/data/features/magnetometer.js +1 -0
- package/node_modules/caniuse-lite/data/features/matchesselector.js +1 -0
- package/node_modules/caniuse-lite/data/features/matchmedia.js +1 -0
- package/node_modules/caniuse-lite/data/features/mathml.js +1 -0
- package/node_modules/caniuse-lite/data/features/maxlength.js +1 -0
- package/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js +1 -0
- package/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js +1 -0
- package/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js +1 -0
- package/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js +1 -0
- package/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js +1 -0
- package/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js +1 -0
- package/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js +1 -0
- package/node_modules/caniuse-lite/data/features/media-fragments.js +1 -0
- package/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -0
- package/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -0
- package/node_modules/caniuse-lite/data/features/mediasource.js +1 -0
- package/node_modules/caniuse-lite/data/features/menu.js +1 -0
- package/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -0
- package/node_modules/caniuse-lite/data/features/meter.js +1 -0
- package/node_modules/caniuse-lite/data/features/midi.js +1 -0
- package/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -0
- package/node_modules/caniuse-lite/data/features/mp3.js +1 -0
- package/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -0
- package/node_modules/caniuse-lite/data/features/mpeg4.js +1 -0
- package/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -0
- package/node_modules/caniuse-lite/data/features/multicolumn.js +1 -0
- package/node_modules/caniuse-lite/data/features/mutation-events.js +1 -0
- package/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -0
- package/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -0
- package/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -0
- package/node_modules/caniuse-lite/data/features/nav-timing.js +1 -0
- package/node_modules/caniuse-lite/data/features/netinfo.js +1 -0
- package/node_modules/caniuse-lite/data/features/notifications.js +1 -0
- package/node_modules/caniuse-lite/data/features/object-entries.js +1 -0
- package/node_modules/caniuse-lite/data/features/object-fit.js +1 -0
- package/node_modules/caniuse-lite/data/features/object-observe.js +1 -0
- package/node_modules/caniuse-lite/data/features/object-values.js +1 -0
- package/node_modules/caniuse-lite/data/features/objectrtc.js +1 -0
- package/node_modules/caniuse-lite/data/features/offline-apps.js +1 -0
- package/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -0
- package/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -0
- package/node_modules/caniuse-lite/data/features/ogv.js +1 -0
- package/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -0
- package/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -0
- package/node_modules/caniuse-lite/data/features/online-status.js +1 -0
- package/node_modules/caniuse-lite/data/features/opus.js +1 -0
- package/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -0
- package/node_modules/caniuse-lite/data/features/outline.js +1 -0
- package/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -0
- package/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -0
- package/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -0
- package/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -0
- package/node_modules/caniuse-lite/data/features/passkeys.js +1 -0
- package/node_modules/caniuse-lite/data/features/passwordrules.js +1 -0
- package/node_modules/caniuse-lite/data/features/path2d.js +1 -0
- package/node_modules/caniuse-lite/data/features/payment-request.js +1 -0
- package/node_modules/caniuse-lite/data/features/pdf-viewer.js +1 -0
- package/node_modules/caniuse-lite/data/features/permissions-api.js +1 -0
- package/node_modules/caniuse-lite/data/features/permissions-policy.js +1 -0
- package/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -0
- package/node_modules/caniuse-lite/data/features/picture.js +1 -0
- package/node_modules/caniuse-lite/data/features/ping.js +1 -0
- package/node_modules/caniuse-lite/data/features/png-alpha.js +1 -0
- package/node_modules/caniuse-lite/data/features/pointer-events.js +1 -0
- package/node_modules/caniuse-lite/data/features/pointer.js +1 -0
- package/node_modules/caniuse-lite/data/features/pointerlock.js +1 -0
- package/node_modules/caniuse-lite/data/features/portals.js +1 -0
- package/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -0
- package/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -0
- package/node_modules/caniuse-lite/data/features/progress.js +1 -0
- package/node_modules/caniuse-lite/data/features/promise-finally.js +1 -0
- package/node_modules/caniuse-lite/data/features/promises.js +1 -0
- package/node_modules/caniuse-lite/data/features/proximity.js +1 -0
- package/node_modules/caniuse-lite/data/features/proxy.js +1 -0
- package/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -0
- package/node_modules/caniuse-lite/data/features/push-api.js +1 -0
- package/node_modules/caniuse-lite/data/features/queryselector.js +1 -0
- package/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -0
- package/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -0
- package/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -0
- package/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -0
- package/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -0
- package/node_modules/caniuse-lite/data/features/rellist.js +1 -0
- package/node_modules/caniuse-lite/data/features/rem.js +1 -0
- package/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -0
- package/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -0
- package/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -0
- package/node_modules/caniuse-lite/data/features/resource-timing.js +1 -0
- package/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -0
- package/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -0
- package/node_modules/caniuse-lite/data/features/ruby.js +1 -0
- package/node_modules/caniuse-lite/data/features/run-in.js +1 -0
- package/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -0
- package/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -0
- package/node_modules/caniuse-lite/data/features/script-async.js +1 -0
- package/node_modules/caniuse-lite/data/features/script-defer.js +1 -0
- package/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -0
- package/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -0
- package/node_modules/caniuse-lite/data/features/sdch.js +1 -0
- package/node_modules/caniuse-lite/data/features/selection-api.js +1 -0
- package/node_modules/caniuse-lite/data/features/server-timing.js +1 -0
- package/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -0
- package/node_modules/caniuse-lite/data/features/setimmediate.js +1 -0
- package/node_modules/caniuse-lite/data/features/shadowdom.js +1 -0
- package/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -0
- package/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -0
- package/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -0
- package/node_modules/caniuse-lite/data/features/sni.js +1 -0
- package/node_modules/caniuse-lite/data/features/spdy.js +1 -0
- package/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -0
- package/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -0
- package/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -0
- package/node_modules/caniuse-lite/data/features/sql-storage.js +1 -0
- package/node_modules/caniuse-lite/data/features/srcset.js +1 -0
- package/node_modules/caniuse-lite/data/features/stream.js +1 -0
- package/node_modules/caniuse-lite/data/features/streams.js +1 -0
- package/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -0
- package/node_modules/caniuse-lite/data/features/style-scoped.js +1 -0
- package/node_modules/caniuse-lite/data/features/subresource-bundling.js +1 -0
- package/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -0
- package/node_modules/caniuse-lite/data/features/svg-css.js +1 -0
- package/node_modules/caniuse-lite/data/features/svg-filters.js +1 -0
- package/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -0
- package/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -0
- package/node_modules/caniuse-lite/data/features/svg-html.js +1 -0
- package/node_modules/caniuse-lite/data/features/svg-html5.js +1 -0
- package/node_modules/caniuse-lite/data/features/svg-img.js +1 -0
- package/node_modules/caniuse-lite/data/features/svg-smil.js +1 -0
- package/node_modules/caniuse-lite/data/features/svg.js +1 -0
- package/node_modules/caniuse-lite/data/features/sxg.js +1 -0
- package/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -0
- package/node_modules/caniuse-lite/data/features/template-literals.js +1 -0
- package/node_modules/caniuse-lite/data/features/template.js +1 -0
- package/node_modules/caniuse-lite/data/features/temporal.js +1 -0
- package/node_modules/caniuse-lite/data/features/testfeat.js +1 -0
- package/node_modules/caniuse-lite/data/features/text-decoration.js +1 -0
- package/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -0
- package/node_modules/caniuse-lite/data/features/text-overflow.js +1 -0
- package/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -0
- package/node_modules/caniuse-lite/data/features/text-stroke.js +1 -0
- package/node_modules/caniuse-lite/data/features/textcontent.js +1 -0
- package/node_modules/caniuse-lite/data/features/textencoder.js +1 -0
- package/node_modules/caniuse-lite/data/features/tls1-1.js +1 -0
- package/node_modules/caniuse-lite/data/features/tls1-2.js +1 -0
- package/node_modules/caniuse-lite/data/features/tls1-3.js +1 -0
- package/node_modules/caniuse-lite/data/features/touch.js +1 -0
- package/node_modules/caniuse-lite/data/features/transforms2d.js +1 -0
- package/node_modules/caniuse-lite/data/features/transforms3d.js +1 -0
- package/node_modules/caniuse-lite/data/features/trusted-types.js +1 -0
- package/node_modules/caniuse-lite/data/features/ttf.js +1 -0
- package/node_modules/caniuse-lite/data/features/typedarrays.js +1 -0
- package/node_modules/caniuse-lite/data/features/u2f.js +1 -0
- package/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -0
- package/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -0
- package/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +1 -0
- package/node_modules/caniuse-lite/data/features/url.js +1 -0
- package/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -0
- package/node_modules/caniuse-lite/data/features/use-strict.js +1 -0
- package/node_modules/caniuse-lite/data/features/user-select-none.js +1 -0
- package/node_modules/caniuse-lite/data/features/user-timing.js +1 -0
- package/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -0
- package/node_modules/caniuse-lite/data/features/vector-effect.js +1 -0
- package/node_modules/caniuse-lite/data/features/vibration.js +1 -0
- package/node_modules/caniuse-lite/data/features/video.js +1 -0
- package/node_modules/caniuse-lite/data/features/videotracks.js +1 -0
- package/node_modules/caniuse-lite/data/features/view-transitions.js +1 -0
- package/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +1 -0
- package/node_modules/caniuse-lite/data/features/viewport-units.js +1 -0
- package/node_modules/caniuse-lite/data/features/wai-aria.js +1 -0
- package/node_modules/caniuse-lite/data/features/wake-lock.js +1 -0
- package/node_modules/caniuse-lite/data/features/wasm.js +1 -0
- package/node_modules/caniuse-lite/data/features/wav.js +1 -0
- package/node_modules/caniuse-lite/data/features/wbr-element.js +1 -0
- package/node_modules/caniuse-lite/data/features/web-animation.js +1 -0
- package/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -0
- package/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -0
- package/node_modules/caniuse-lite/data/features/web-serial.js +1 -0
- package/node_modules/caniuse-lite/data/features/web-share.js +1 -0
- package/node_modules/caniuse-lite/data/features/webauthn.js +1 -0
- package/node_modules/caniuse-lite/data/features/webcodecs.js +1 -0
- package/node_modules/caniuse-lite/data/features/webgl.js +1 -0
- package/node_modules/caniuse-lite/data/features/webgl2.js +1 -0
- package/node_modules/caniuse-lite/data/features/webgpu.js +1 -0
- package/node_modules/caniuse-lite/data/features/webhid.js +1 -0
- package/node_modules/caniuse-lite/data/features/webkit-user-drag.js +1 -0
- package/node_modules/caniuse-lite/data/features/webm.js +1 -0
- package/node_modules/caniuse-lite/data/features/webnfc.js +1 -0
- package/node_modules/caniuse-lite/data/features/webp.js +1 -0
- package/node_modules/caniuse-lite/data/features/websockets.js +1 -0
- package/node_modules/caniuse-lite/data/features/webtransport.js +1 -0
- package/node_modules/caniuse-lite/data/features/webusb.js +1 -0
- package/node_modules/caniuse-lite/data/features/webvr.js +1 -0
- package/node_modules/caniuse-lite/data/features/webvtt.js +1 -0
- package/node_modules/caniuse-lite/data/features/webworkers.js +1 -0
- package/node_modules/caniuse-lite/data/features/webxr.js +1 -0
- package/node_modules/caniuse-lite/data/features/will-change.js +1 -0
- package/node_modules/caniuse-lite/data/features/woff.js +1 -0
- package/node_modules/caniuse-lite/data/features/woff2.js +1 -0
- package/node_modules/caniuse-lite/data/features/word-break.js +1 -0
- package/node_modules/caniuse-lite/data/features/wordwrap.js +1 -0
- package/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -0
- package/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -0
- package/node_modules/caniuse-lite/data/features/xhr2.js +1 -0
- package/node_modules/caniuse-lite/data/features/xhtml.js +1 -0
- package/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -0
- package/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -0
- package/node_modules/caniuse-lite/data/features/zstd.js +1 -0
- package/node_modules/caniuse-lite/data/features.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AD.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AF.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AG.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AI.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AL.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AO.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AS.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AT.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AU.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AW.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AX.js +1 -0
- package/node_modules/caniuse-lite/data/regions/AZ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BA.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BB.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BD.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BF.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BG.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BH.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BI.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BJ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BN.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BO.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BS.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BT.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BW.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BY.js +1 -0
- package/node_modules/caniuse-lite/data/regions/BZ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CA.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CD.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CF.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CG.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CH.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CI.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CK.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CL.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CN.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CO.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CU.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CV.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CX.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CY.js +1 -0
- package/node_modules/caniuse-lite/data/regions/CZ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/DE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/DJ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/DK.js +1 -0
- package/node_modules/caniuse-lite/data/regions/DM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/DO.js +1 -0
- package/node_modules/caniuse-lite/data/regions/DZ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/EC.js +1 -0
- package/node_modules/caniuse-lite/data/regions/EE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/EG.js +1 -0
- package/node_modules/caniuse-lite/data/regions/ER.js +1 -0
- package/node_modules/caniuse-lite/data/regions/ES.js +1 -0
- package/node_modules/caniuse-lite/data/regions/ET.js +1 -0
- package/node_modules/caniuse-lite/data/regions/FI.js +1 -0
- package/node_modules/caniuse-lite/data/regions/FJ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/FK.js +1 -0
- package/node_modules/caniuse-lite/data/regions/FM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/FO.js +1 -0
- package/node_modules/caniuse-lite/data/regions/FR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GA.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GB.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GD.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GF.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GG.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GH.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GI.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GL.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GN.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GP.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GQ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GT.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GU.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GW.js +1 -0
- package/node_modules/caniuse-lite/data/regions/GY.js +1 -0
- package/node_modules/caniuse-lite/data/regions/HK.js +1 -0
- package/node_modules/caniuse-lite/data/regions/HN.js +1 -0
- package/node_modules/caniuse-lite/data/regions/HR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/HT.js +1 -0
- package/node_modules/caniuse-lite/data/regions/HU.js +1 -0
- package/node_modules/caniuse-lite/data/regions/ID.js +1 -0
- package/node_modules/caniuse-lite/data/regions/IE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/IL.js +1 -0
- package/node_modules/caniuse-lite/data/regions/IM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/IN.js +1 -0
- package/node_modules/caniuse-lite/data/regions/IQ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/IR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/IS.js +1 -0
- package/node_modules/caniuse-lite/data/regions/IT.js +1 -0
- package/node_modules/caniuse-lite/data/regions/JE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/JM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/JO.js +1 -0
- package/node_modules/caniuse-lite/data/regions/JP.js +1 -0
- package/node_modules/caniuse-lite/data/regions/KE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/KG.js +1 -0
- package/node_modules/caniuse-lite/data/regions/KH.js +1 -0
- package/node_modules/caniuse-lite/data/regions/KI.js +1 -0
- package/node_modules/caniuse-lite/data/regions/KM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/KN.js +1 -0
- package/node_modules/caniuse-lite/data/regions/KP.js +1 -0
- package/node_modules/caniuse-lite/data/regions/KR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/KW.js +1 -0
- package/node_modules/caniuse-lite/data/regions/KY.js +1 -0
- package/node_modules/caniuse-lite/data/regions/KZ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/LA.js +1 -0
- package/node_modules/caniuse-lite/data/regions/LB.js +1 -0
- package/node_modules/caniuse-lite/data/regions/LC.js +1 -0
- package/node_modules/caniuse-lite/data/regions/LI.js +1 -0
- package/node_modules/caniuse-lite/data/regions/LK.js +1 -0
- package/node_modules/caniuse-lite/data/regions/LR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/LS.js +1 -0
- package/node_modules/caniuse-lite/data/regions/LT.js +1 -0
- package/node_modules/caniuse-lite/data/regions/LU.js +1 -0
- package/node_modules/caniuse-lite/data/regions/LV.js +1 -0
- package/node_modules/caniuse-lite/data/regions/LY.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MA.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MC.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MD.js +1 -0
- package/node_modules/caniuse-lite/data/regions/ME.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MG.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MH.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MK.js +1 -0
- package/node_modules/caniuse-lite/data/regions/ML.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MN.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MO.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MP.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MQ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MS.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MT.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MU.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MV.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MW.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MX.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MY.js +1 -0
- package/node_modules/caniuse-lite/data/regions/MZ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/NA.js +1 -0
- package/node_modules/caniuse-lite/data/regions/NC.js +1 -0
- package/node_modules/caniuse-lite/data/regions/NE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/NF.js +1 -0
- package/node_modules/caniuse-lite/data/regions/NG.js +1 -0
- package/node_modules/caniuse-lite/data/regions/NI.js +1 -0
- package/node_modules/caniuse-lite/data/regions/NL.js +1 -0
- package/node_modules/caniuse-lite/data/regions/NO.js +1 -0
- package/node_modules/caniuse-lite/data/regions/NP.js +1 -0
- package/node_modules/caniuse-lite/data/regions/NR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/NU.js +1 -0
- package/node_modules/caniuse-lite/data/regions/NZ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/OM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PA.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PF.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PG.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PH.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PK.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PL.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PN.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PS.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PT.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PW.js +1 -0
- package/node_modules/caniuse-lite/data/regions/PY.js +1 -0
- package/node_modules/caniuse-lite/data/regions/QA.js +1 -0
- package/node_modules/caniuse-lite/data/regions/RE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/RO.js +1 -0
- package/node_modules/caniuse-lite/data/regions/RS.js +1 -0
- package/node_modules/caniuse-lite/data/regions/RU.js +1 -0
- package/node_modules/caniuse-lite/data/regions/RW.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SA.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SB.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SC.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SD.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SG.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SH.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SI.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SK.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SL.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SN.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SO.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/ST.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SV.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SY.js +1 -0
- package/node_modules/caniuse-lite/data/regions/SZ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TC.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TD.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TG.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TH.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TJ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TK.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TL.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TN.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TO.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TR.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TT.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TV.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TW.js +1 -0
- package/node_modules/caniuse-lite/data/regions/TZ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/UA.js +1 -0
- package/node_modules/caniuse-lite/data/regions/UG.js +1 -0
- package/node_modules/caniuse-lite/data/regions/US.js +1 -0
- package/node_modules/caniuse-lite/data/regions/UY.js +1 -0
- package/node_modules/caniuse-lite/data/regions/UZ.js +1 -0
- package/node_modules/caniuse-lite/data/regions/VA.js +1 -0
- package/node_modules/caniuse-lite/data/regions/VC.js +1 -0
- package/node_modules/caniuse-lite/data/regions/VE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/VG.js +1 -0
- package/node_modules/caniuse-lite/data/regions/VI.js +1 -0
- package/node_modules/caniuse-lite/data/regions/VN.js +1 -0
- package/node_modules/caniuse-lite/data/regions/VU.js +1 -0
- package/node_modules/caniuse-lite/data/regions/WF.js +1 -0
- package/node_modules/caniuse-lite/data/regions/WS.js +1 -0
- package/node_modules/caniuse-lite/data/regions/YE.js +1 -0
- package/node_modules/caniuse-lite/data/regions/YT.js +1 -0
- package/node_modules/caniuse-lite/data/regions/ZA.js +1 -0
- package/node_modules/caniuse-lite/data/regions/ZM.js +1 -0
- package/node_modules/caniuse-lite/data/regions/ZW.js +1 -0
- package/node_modules/caniuse-lite/data/regions/alt-af.js +1 -0
- package/node_modules/caniuse-lite/data/regions/alt-an.js +1 -0
- package/node_modules/caniuse-lite/data/regions/alt-as.js +1 -0
- package/node_modules/caniuse-lite/data/regions/alt-eu.js +1 -0
- package/node_modules/caniuse-lite/data/regions/alt-na.js +1 -0
- package/node_modules/caniuse-lite/data/regions/alt-oc.js +1 -0
- package/node_modules/caniuse-lite/data/regions/alt-sa.js +1 -0
- package/node_modules/caniuse-lite/data/regions/alt-ww.js +1 -0
- package/node_modules/caniuse-lite/dist/lib/statuses.js +9 -0
- package/node_modules/caniuse-lite/dist/lib/supported.js +9 -0
- package/node_modules/caniuse-lite/dist/unpacker/agents.js +47 -0
- package/node_modules/caniuse-lite/dist/unpacker/browserVersions.js +1 -0
- package/node_modules/caniuse-lite/dist/unpacker/browsers.js +1 -0
- package/node_modules/caniuse-lite/dist/unpacker/feature.js +48 -0
- package/node_modules/caniuse-lite/dist/unpacker/features.js +6 -0
- package/node_modules/caniuse-lite/dist/unpacker/index.js +4 -0
- package/node_modules/caniuse-lite/dist/unpacker/region.js +22 -0
- package/node_modules/caniuse-lite/package.json +34 -0
- package/node_modules/chalk/index.js +228 -0
- package/node_modules/chalk/index.js.flow +93 -0
- package/node_modules/chalk/license +9 -0
- package/node_modules/chalk/package.json +71 -0
- package/node_modules/chalk/readme.md +314 -0
- package/node_modules/chalk/templates.js +128 -0
- package/node_modules/chalk/types/index.d.ts +97 -0
- package/node_modules/clean-stack/index.d.ts +47 -0
- package/node_modules/clean-stack/index.js +40 -0
- package/node_modules/clean-stack/license +9 -0
- package/node_modules/clean-stack/package.json +39 -0
- package/node_modules/clean-stack/readme.md +76 -0
- package/node_modules/cliui/CHANGELOG.md +76 -0
- package/node_modules/cliui/LICENSE.txt +14 -0
- package/node_modules/cliui/README.md +115 -0
- package/node_modules/cliui/index.js +354 -0
- package/node_modules/cliui/package.json +65 -0
- package/node_modules/color-convert/CHANGELOG.md +54 -0
- package/node_modules/color-convert/LICENSE +21 -0
- package/node_modules/color-convert/README.md +68 -0
- package/node_modules/color-convert/conversions.js +868 -0
- package/node_modules/color-convert/index.js +78 -0
- package/node_modules/color-convert/package.json +46 -0
- package/node_modules/color-convert/route.js +97 -0
- package/node_modules/color-name/.eslintrc.json +43 -0
- package/node_modules/color-name/.npmignore +107 -0
- package/node_modules/color-name/LICENSE +8 -0
- package/node_modules/color-name/README.md +11 -0
- package/node_modules/color-name/index.js +152 -0
- package/node_modules/color-name/package.json +25 -0
- package/node_modules/color-name/test.js +7 -0
- package/node_modules/combined-stream/package.json +14 -46
- package/node_modules/commander/package.json +20 -53
- package/node_modules/commondir/LICENSE +24 -0
- package/node_modules/commondir/example/dir.js +3 -0
- package/node_modules/commondir/index.js +29 -0
- package/node_modules/commondir/package.json +34 -0
- package/node_modules/commondir/readme.markdown +48 -0
- package/node_modules/commondir/test/dirs.js +55 -0
- package/node_modules/concat-map/.travis.yml +4 -0
- package/node_modules/concat-map/LICENSE +18 -0
- package/node_modules/concat-map/README.markdown +62 -0
- package/node_modules/concat-map/example/map.js +6 -0
- package/node_modules/concat-map/index.js +13 -0
- package/node_modules/concat-map/package.json +43 -0
- package/node_modules/concat-map/test/map.js +39 -0
- package/node_modules/concaveman/node_modules/quickselect/package.json +43 -0
- package/node_modules/{@turf/collect → concaveman}/node_modules/rbush/README.md +22 -95
- package/node_modules/{@turf/unkink-polygon → concaveman}/node_modules/rbush/index.js +131 -181
- package/node_modules/concaveman/node_modules/rbush/package.json +56 -0
- package/node_modules/concaveman/node_modules/rbush/rbush.js +574 -0
- package/node_modules/concaveman/node_modules/rbush/rbush.min.js +1 -0
- package/node_modules/concaveman/package.json +15 -46
- package/node_modules/convert-source-map/LICENSE +23 -0
- package/node_modules/convert-source-map/README.md +123 -0
- package/node_modules/convert-source-map/index.js +179 -0
- package/node_modules/convert-source-map/package.json +41 -0
- package/node_modules/cross-spawn/CHANGELOG.md +130 -0
- package/node_modules/cross-spawn/LICENSE +21 -0
- package/node_modules/cross-spawn/README.md +96 -0
- package/node_modules/cross-spawn/index.js +39 -0
- package/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/node_modules/cross-spawn/lib/parse.js +91 -0
- package/node_modules/cross-spawn/lib/util/escape.js +45 -0
- package/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- package/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- package/node_modules/cross-spawn/package.json +73 -0
- package/node_modules/d3-array/package.json +19 -47
- package/node_modules/d3-geo/package.json +24 -52
- package/node_modules/d3-voronoi/package.json +19 -47
- package/node_modules/debug/LICENSE +20 -0
- package/node_modules/debug/README.md +481 -0
- package/node_modules/debug/package.json +59 -0
- package/node_modules/debug/src/browser.js +269 -0
- package/node_modules/debug/src/common.js +274 -0
- package/node_modules/debug/src/index.js +10 -0
- package/node_modules/debug/src/node.js +263 -0
- package/node_modules/decamelize/index.js +13 -0
- package/node_modules/decamelize/license +21 -0
- package/node_modules/decamelize/package.json +38 -0
- package/node_modules/decamelize/readme.md +48 -0
- package/node_modules/deep-equal/package.json +34 -64
- package/node_modules/default-require-extensions/js.js +8 -0
- package/node_modules/default-require-extensions/json.js +14 -0
- package/node_modules/default-require-extensions/license +11 -0
- package/node_modules/default-require-extensions/package.json +43 -0
- package/node_modules/default-require-extensions/readme.md +27 -0
- package/node_modules/define-properties/.eslintrc +10 -3
- package/node_modules/define-properties/.github/FUNDING.yml +12 -0
- package/node_modules/define-properties/.nycrc +9 -0
- package/node_modules/define-properties/CHANGELOG.md +39 -0
- package/node_modules/define-properties/README.md +11 -13
- package/node_modules/define-properties/index.js +12 -17
- package/node_modules/define-properties/package.json +85 -95
- package/node_modules/delayed-stream/package.json +14 -49
- package/node_modules/density-clustering/package.json +46 -70
- package/node_modules/earcut/README.md +12 -3
- package/node_modules/earcut/dist/earcut.dev.js +47 -50
- package/node_modules/earcut/dist/earcut.min.js +1 -1
- package/node_modules/earcut/package.json +26 -60
- package/node_modules/earcut/src/earcut.js +46 -49
- package/node_modules/electron-to-chromium/CHANGELOG.md +14 -0
- package/node_modules/electron-to-chromium/LICENSE +5 -0
- package/node_modules/electron-to-chromium/README.md +186 -0
- package/node_modules/electron-to-chromium/chromium-versions.js +57 -0
- package/node_modules/electron-to-chromium/chromium-versions.json +1 -0
- package/node_modules/electron-to-chromium/full-chromium-versions.js +2726 -0
- package/node_modules/electron-to-chromium/full-chromium-versions.json +1 -0
- package/node_modules/electron-to-chromium/full-versions.js +1994 -0
- package/node_modules/electron-to-chromium/full-versions.json +1 -0
- package/node_modules/electron-to-chromium/index.js +36 -0
- package/node_modules/electron-to-chromium/package.json +44 -0
- package/node_modules/electron-to-chromium/versions.js +129 -0
- package/node_modules/electron-to-chromium/versions.json +1 -0
- package/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/node_modules/emoji-regex/README.md +73 -0
- package/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/emoji-regex/index.d.ts +23 -0
- package/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/emoji-regex/package.json +50 -0
- package/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/es6-error/CHANGELOG.md +26 -0
- package/node_modules/es6-error/LICENSE.md +21 -0
- package/node_modules/es6-error/README.md +59 -0
- package/node_modules/es6-error/es6/index.js +72 -0
- package/node_modules/es6-error/lib/index.js +79 -0
- package/node_modules/es6-error/package.json +48 -0
- package/node_modules/es6-error/typings/index.d.ts +1 -0
- package/node_modules/escalade/dist/index.js +22 -0
- package/node_modules/escalade/dist/index.mjs +22 -0
- package/node_modules/escalade/index.d.ts +3 -0
- package/node_modules/escalade/license +9 -0
- package/node_modules/escalade/package.json +61 -0
- package/node_modules/escalade/readme.md +211 -0
- package/node_modules/escalade/sync/index.d.ts +2 -0
- package/node_modules/escalade/sync/index.js +18 -0
- package/node_modules/escalade/sync/index.mjs +18 -0
- package/node_modules/escape-string-regexp/index.js +11 -0
- package/node_modules/escape-string-regexp/license +21 -0
- package/node_modules/escape-string-regexp/package.json +41 -0
- package/node_modules/escape-string-regexp/readme.md +27 -0
- package/node_modules/esprima/ChangeLog +235 -0
- package/node_modules/esprima/LICENSE.BSD +21 -0
- package/node_modules/esprima/README.md +46 -0
- package/node_modules/esprima/bin/esparse.js +139 -0
- package/node_modules/esprima/bin/esvalidate.js +236 -0
- package/node_modules/esprima/dist/esprima.js +6709 -0
- package/node_modules/esprima/package.json +112 -0
- package/node_modules/fast-xml-parser/LICENSE +21 -0
- package/node_modules/fast-xml-parser/README.md +367 -0
- package/node_modules/fast-xml-parser/cli.js +101 -0
- package/node_modules/fast-xml-parser/package.json +94 -0
- package/node_modules/fast-xml-parser/src/json2xml.js +274 -0
- package/node_modules/fast-xml-parser/src/nimndata.js +144 -0
- package/node_modules/fast-xml-parser/src/node2json.js +42 -0
- package/node_modules/fast-xml-parser/src/node2json_str.js +63 -0
- package/node_modules/fast-xml-parser/src/parser.d.ts +79 -0
- package/node_modules/fast-xml-parser/src/parser.js +76 -0
- package/node_modules/fast-xml-parser/src/read.js +92 -0
- package/node_modules/fast-xml-parser/src/util.js +108 -0
- package/node_modules/fast-xml-parser/src/validator.js +413 -0
- package/node_modules/fast-xml-parser/src/xmlNode.js +17 -0
- package/node_modules/fast-xml-parser/src/xmlstr2xmlnode.js +339 -0
- package/node_modules/find-cache-dir/index.js +67 -0
- package/node_modules/find-cache-dir/license +9 -0
- package/node_modules/find-cache-dir/package.json +44 -0
- package/node_modules/find-cache-dir/readme.md +123 -0
- package/node_modules/find-up/index.d.ts +137 -0
- package/node_modules/find-up/index.js +89 -0
- package/node_modules/find-up/license +9 -0
- package/node_modules/find-up/package.json +53 -0
- package/node_modules/find-up/readme.md +156 -0
- package/node_modules/follow-redirects/README.md +8 -1
- package/node_modules/follow-redirects/index.js +83 -36
- package/node_modules/follow-redirects/package.json +38 -74
- package/node_modules/foreground-child/CHANGELOG.md +99 -0
- package/node_modules/foreground-child/LICENSE +15 -0
- package/node_modules/foreground-child/README.md +62 -0
- package/node_modules/foreground-child/changelog.sh +10 -0
- package/node_modules/foreground-child/index.js +133 -0
- package/node_modules/foreground-child/package.json +40 -0
- package/node_modules/form-data/package.json +37 -70
- package/node_modules/fromentries/LICENSE +20 -0
- package/node_modules/fromentries/README.md +70 -0
- package/node_modules/fromentries/index.d.ts +3 -0
- package/node_modules/fromentries/index.js +7 -0
- package/node_modules/fromentries/package.json +58 -0
- package/node_modules/fs.realpath/LICENSE +43 -0
- package/node_modules/fs.realpath/README.md +33 -0
- package/node_modules/fs.realpath/index.js +66 -0
- package/node_modules/fs.realpath/old.js +303 -0
- package/node_modules/fs.realpath/package.json +26 -0
- package/node_modules/function-bind/package.json +23 -56
- package/node_modules/functions-have-names/.editorconfig +20 -0
- package/node_modules/functions-have-names/.eslintrc +19 -0
- package/node_modules/functions-have-names/.github/FUNDING.yml +12 -0
- package/node_modules/functions-have-names/.nycrc +9 -0
- package/node_modules/functions-have-names/CHANGELOG.md +89 -0
- package/node_modules/functions-have-names/LICENSE +21 -0
- package/node_modules/functions-have-names/README.md +40 -0
- package/node_modules/functions-have-names/index.js +31 -0
- package/node_modules/functions-have-names/package.json +55 -0
- package/node_modules/functions-have-names/test/index.js +65 -0
- package/node_modules/gensync/LICENSE +7 -0
- package/node_modules/gensync/README.md +196 -0
- package/node_modules/gensync/index.js +373 -0
- package/node_modules/gensync/index.js.flow +32 -0
- package/node_modules/gensync/package.json +37 -0
- package/node_modules/gensync/test/.babelrc +5 -0
- package/node_modules/gensync/test/index.test.js +489 -0
- package/node_modules/geojson-equality/package.json +23 -55
- package/node_modules/geojson-rbush/node_modules/quickselect/package.json +43 -0
- package/node_modules/{@turf/unkink-polygon → geojson-rbush}/node_modules/rbush/README.md +22 -95
- package/node_modules/{@turf/collect → geojson-rbush}/node_modules/rbush/index.js +131 -181
- package/node_modules/geojson-rbush/node_modules/rbush/package.json +56 -0
- package/node_modules/geojson-rbush/node_modules/rbush/rbush.js +574 -0
- package/node_modules/geojson-rbush/node_modules/rbush/rbush.min.js +1 -0
- package/node_modules/geojson-rbush/package.json +32 -71
- package/node_modules/get-caller-file/LICENSE.md +6 -0
- package/node_modules/get-caller-file/README.md +41 -0
- package/node_modules/get-caller-file/index.d.ts +2 -0
- package/node_modules/get-caller-file/index.js +22 -0
- package/node_modules/get-caller-file/index.js.map +1 -0
- package/node_modules/get-caller-file/package.json +42 -0
- package/node_modules/get-intrinsic/.eslintrc +3 -8
- package/node_modules/get-intrinsic/.nycrc +0 -4
- package/node_modules/get-intrinsic/CHANGELOG.md +53 -0
- package/node_modules/get-intrinsic/README.md +7 -1
- package/node_modules/get-intrinsic/index.js +29 -8
- package/node_modules/get-intrinsic/package.json +91 -104
- package/node_modules/get-intrinsic/test/GetIntrinsic.js +26 -12
- package/node_modules/get-package-type/CHANGELOG.md +10 -0
- package/node_modules/get-package-type/LICENSE +21 -0
- package/node_modules/get-package-type/README.md +32 -0
- package/node_modules/get-package-type/async.cjs +52 -0
- package/node_modules/get-package-type/cache.cjs +3 -0
- package/node_modules/get-package-type/index.cjs +7 -0
- package/node_modules/get-package-type/is-node-modules.cjs +15 -0
- package/node_modules/get-package-type/package.json +35 -0
- package/node_modules/get-package-type/sync.cjs +42 -0
- package/node_modules/glob/LICENSE +21 -0
- package/node_modules/glob/README.md +378 -0
- package/node_modules/glob/common.js +238 -0
- package/node_modules/glob/glob.js +790 -0
- package/node_modules/glob/package.json +55 -0
- package/node_modules/glob/sync.js +486 -0
- package/node_modules/globals/globals.json +1563 -0
- package/node_modules/globals/index.js +2 -0
- package/node_modules/globals/license +9 -0
- package/node_modules/globals/package.json +41 -0
- package/node_modules/globals/readme.md +41 -0
- package/node_modules/graceful-fs/LICENSE +15 -0
- package/node_modules/graceful-fs/README.md +143 -0
- package/node_modules/graceful-fs/clone.js +23 -0
- package/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/node_modules/graceful-fs/package.json +53 -0
- package/node_modules/graceful-fs/polyfills.js +355 -0
- package/node_modules/has/package.json +21 -46
- package/node_modules/has-flag/index.js +8 -0
- package/node_modules/has-flag/license +9 -0
- package/node_modules/has-flag/package.json +44 -0
- package/node_modules/has-flag/readme.md +70 -0
- package/node_modules/has-property-descriptors/.eslintrc +13 -0
- package/node_modules/has-property-descriptors/.github/FUNDING.yml +12 -0
- package/node_modules/has-property-descriptors/.nycrc +9 -0
- package/node_modules/has-property-descriptors/CHANGELOG.md +16 -0
- package/node_modules/has-property-descriptors/LICENSE +21 -0
- package/node_modules/has-property-descriptors/README.md +43 -0
- package/node_modules/has-property-descriptors/index.js +33 -0
- package/node_modules/has-property-descriptors/package.json +70 -0
- package/node_modules/has-property-descriptors/test/index.js +57 -0
- package/node_modules/has-proto/.eslintrc +5 -0
- package/node_modules/has-proto/.github/FUNDING.yml +12 -0
- package/node_modules/has-proto/CHANGELOG.md +23 -0
- package/node_modules/has-proto/LICENSE +21 -0
- package/node_modules/has-proto/README.md +38 -0
- package/node_modules/has-proto/index.js +11 -0
- package/node_modules/has-proto/package.json +74 -0
- package/node_modules/has-proto/test/index.js +19 -0
- package/node_modules/has-symbols/package.json +99 -125
- package/node_modules/has-tostringtag/package.json +82 -109
- package/node_modules/hasha/index.d.ts +167 -0
- package/node_modules/hasha/index.js +150 -0
- package/node_modules/hasha/license +9 -0
- package/node_modules/hasha/package.json +62 -0
- package/node_modules/hasha/readme.md +129 -0
- package/node_modules/hasha/thread.js +57 -0
- package/node_modules/html-escaper/LICENSE.txt +19 -0
- package/node_modules/html-escaper/README.md +97 -0
- package/node_modules/html-escaper/cjs/index.js +65 -0
- package/node_modules/html-escaper/cjs/package.json +1 -0
- package/node_modules/html-escaper/esm/index.js +62 -0
- package/node_modules/html-escaper/index.js +70 -0
- package/node_modules/html-escaper/min.js +1 -0
- package/node_modules/html-escaper/package.json +42 -0
- package/node_modules/html-escaper/test/index.js +23 -0
- package/node_modules/html-escaper/test/package.json +1 -0
- package/node_modules/imurmurhash/README.md +122 -0
- package/node_modules/imurmurhash/imurmurhash.js +138 -0
- package/node_modules/imurmurhash/imurmurhash.min.js +12 -0
- package/node_modules/imurmurhash/package.json +40 -0
- package/node_modules/indent-string/index.d.ts +42 -0
- package/node_modules/indent-string/index.js +35 -0
- package/node_modules/indent-string/license +9 -0
- package/node_modules/indent-string/package.json +37 -0
- package/node_modules/indent-string/readme.md +70 -0
- package/node_modules/inflight/LICENSE +15 -0
- package/node_modules/inflight/README.md +37 -0
- package/node_modules/inflight/inflight.js +54 -0
- package/node_modules/inflight/package.json +29 -0
- package/node_modules/inherits/LICENSE +16 -0
- package/node_modules/inherits/README.md +42 -0
- package/node_modules/inherits/inherits.js +9 -0
- package/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/inherits/package.json +29 -0
- package/node_modules/is-arguments/package.json +89 -114
- package/node_modules/is-date-object/package.json +77 -108
- package/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/node_modules/is-fullwidth-code-point/license +9 -0
- package/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/is-regex/package.json +84 -112
- package/node_modules/is-stream/index.d.ts +79 -0
- package/node_modules/is-stream/index.js +28 -0
- package/node_modules/is-stream/license +9 -0
- package/node_modules/is-stream/package.json +42 -0
- package/node_modules/is-stream/readme.md +60 -0
- package/node_modules/is-typedarray/LICENSE.md +18 -0
- package/node_modules/is-typedarray/README.md +16 -0
- package/node_modules/is-typedarray/index.js +41 -0
- package/node_modules/is-typedarray/package.json +30 -0
- package/node_modules/is-typedarray/test.js +34 -0
- package/node_modules/is-windows/LICENSE +21 -0
- package/node_modules/is-windows/README.md +95 -0
- package/node_modules/is-windows/index.js +27 -0
- package/node_modules/is-windows/package.json +71 -0
- package/node_modules/isexe/.npmignore +2 -0
- package/node_modules/isexe/LICENSE +15 -0
- package/node_modules/isexe/README.md +51 -0
- package/node_modules/isexe/index.js +57 -0
- package/node_modules/isexe/mode.js +41 -0
- package/node_modules/isexe/package.json +31 -0
- package/node_modules/isexe/test/basic.js +221 -0
- package/node_modules/isexe/windows.js +42 -0
- package/node_modules/istanbul-lib-coverage/CHANGELOG.md +193 -0
- package/node_modules/istanbul-lib-coverage/LICENSE +24 -0
- package/node_modules/istanbul-lib-coverage/README.md +29 -0
- package/node_modules/istanbul-lib-coverage/index.js +64 -0
- package/node_modules/istanbul-lib-coverage/lib/coverage-map.js +134 -0
- package/node_modules/istanbul-lib-coverage/lib/coverage-summary.js +112 -0
- package/node_modules/istanbul-lib-coverage/lib/data-properties.js +12 -0
- package/node_modules/istanbul-lib-coverage/lib/file-coverage.js +345 -0
- package/node_modules/istanbul-lib-coverage/lib/percent.js +15 -0
- package/node_modules/istanbul-lib-coverage/package.json +47 -0
- package/node_modules/istanbul-lib-hook/CHANGELOG.md +184 -0
- package/node_modules/istanbul-lib-hook/LICENSE +24 -0
- package/node_modules/istanbul-lib-hook/README.md +6 -0
- package/node_modules/istanbul-lib-hook/index.js +6 -0
- package/node_modules/istanbul-lib-hook/lib/hook.js +237 -0
- package/node_modules/istanbul-lib-hook/package.json +40 -0
- package/node_modules/istanbul-lib-instrument/CHANGELOG.md +571 -0
- package/node_modules/istanbul-lib-instrument/LICENSE +24 -0
- package/node_modules/istanbul-lib-instrument/README.md +21 -0
- package/node_modules/istanbul-lib-instrument/dist/constants.js +22 -0
- package/node_modules/istanbul-lib-instrument/dist/index.js +42 -0
- package/node_modules/istanbul-lib-instrument/dist/instrumenter.js +182 -0
- package/node_modules/istanbul-lib-instrument/dist/read-coverage.js +87 -0
- package/node_modules/istanbul-lib-instrument/dist/source-coverage.js +121 -0
- package/node_modules/istanbul-lib-instrument/dist/visitor.js +683 -0
- package/node_modules/istanbul-lib-instrument/package.json +54 -0
- package/node_modules/istanbul-lib-processinfo/LICENSE +15 -0
- package/node_modules/istanbul-lib-processinfo/README.md +188 -0
- package/node_modules/istanbul-lib-processinfo/index.js +347 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/CHANGELOG.md +229 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/README.md +505 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/rng-browser.js +26 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/stringify.js +39 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v35.js +78 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v4.js +37 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/package.json +135 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/istanbul-lib-processinfo/package.json +42 -0
- package/node_modules/istanbul-lib-report/CHANGELOG.md +192 -0
- package/node_modules/istanbul-lib-report/LICENSE +24 -0
- package/node_modules/istanbul-lib-report/README.md +43 -0
- package/node_modules/istanbul-lib-report/index.js +40 -0
- package/node_modules/istanbul-lib-report/lib/context.js +132 -0
- package/node_modules/istanbul-lib-report/lib/file-writer.js +189 -0
- package/node_modules/istanbul-lib-report/lib/path.js +169 -0
- package/node_modules/istanbul-lib-report/lib/report-base.js +16 -0
- package/node_modules/istanbul-lib-report/lib/summarizer-factory.js +284 -0
- package/node_modules/istanbul-lib-report/lib/tree.js +137 -0
- package/node_modules/istanbul-lib-report/lib/watermarks.js +15 -0
- package/node_modules/istanbul-lib-report/lib/xml-writer.js +90 -0
- package/node_modules/istanbul-lib-report/node_modules/has-flag/index.d.ts +39 -0
- package/node_modules/istanbul-lib-report/node_modules/has-flag/index.js +8 -0
- package/node_modules/istanbul-lib-report/node_modules/has-flag/license +9 -0
- package/node_modules/istanbul-lib-report/node_modules/has-flag/package.json +46 -0
- package/node_modules/istanbul-lib-report/node_modules/has-flag/readme.md +89 -0
- package/node_modules/istanbul-lib-report/node_modules/lru-cache/LICENSE +15 -0
- package/node_modules/istanbul-lib-report/node_modules/lru-cache/README.md +166 -0
- package/node_modules/istanbul-lib-report/node_modules/lru-cache/index.js +334 -0
- package/node_modules/istanbul-lib-report/node_modules/lru-cache/package.json +34 -0
- package/node_modules/istanbul-lib-report/node_modules/make-dir/index.d.ts +66 -0
- package/node_modules/istanbul-lib-report/node_modules/make-dir/index.js +155 -0
- package/node_modules/istanbul-lib-report/node_modules/make-dir/license +9 -0
- package/node_modules/istanbul-lib-report/node_modules/make-dir/package.json +63 -0
- package/node_modules/istanbul-lib-report/node_modules/make-dir/readme.md +125 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/LICENSE +15 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/README.md +637 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/bin/semver.js +197 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/classes/comparator.js +141 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/classes/index.js +5 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/classes/range.js +539 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/classes/semver.js +302 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/clean.js +6 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/cmp.js +52 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/coerce.js +52 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/compare-build.js +7 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/compare-loose.js +3 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/compare.js +5 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/diff.js +65 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/eq.js +3 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/gt.js +3 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/gte.js +3 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/inc.js +19 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/lt.js +3 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/lte.js +3 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/major.js +3 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/minor.js +3 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/neq.js +3 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/parse.js +16 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/patch.js +3 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/prerelease.js +6 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/rcompare.js +3 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/rsort.js +3 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/satisfies.js +10 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/sort.js +3 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/functions/valid.js +6 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/index.js +89 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/internal/constants.js +35 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/internal/debug.js +9 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/internal/identifiers.js +23 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/internal/parse-options.js +15 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/internal/re.js +212 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/package.json +87 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/preload.js +2 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/range.bnf +16 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/ranges/gtr.js +4 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/ranges/intersects.js +7 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/ranges/ltr.js +4 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/ranges/min-version.js +61 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/ranges/outside.js +80 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/ranges/simplify.js +47 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/ranges/subset.js +247 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/ranges/to-comparators.js +8 -0
- package/node_modules/istanbul-lib-report/node_modules/semver/ranges/valid.js +11 -0
- package/node_modules/istanbul-lib-report/node_modules/supports-color/browser.js +5 -0
- package/node_modules/istanbul-lib-report/node_modules/supports-color/index.js +135 -0
- package/node_modules/istanbul-lib-report/node_modules/supports-color/license +9 -0
- package/node_modules/istanbul-lib-report/node_modules/supports-color/package.json +53 -0
- package/node_modules/istanbul-lib-report/node_modules/supports-color/readme.md +76 -0
- package/node_modules/istanbul-lib-report/node_modules/yallist/LICENSE +15 -0
- package/node_modules/istanbul-lib-report/node_modules/yallist/README.md +204 -0
- package/node_modules/istanbul-lib-report/node_modules/yallist/iterator.js +8 -0
- package/node_modules/istanbul-lib-report/node_modules/yallist/package.json +29 -0
- package/node_modules/istanbul-lib-report/node_modules/yallist/yallist.js +426 -0
- package/node_modules/istanbul-lib-report/package.json +44 -0
- package/node_modules/istanbul-lib-source-maps/CHANGELOG.md +295 -0
- package/node_modules/istanbul-lib-source-maps/LICENSE +24 -0
- package/node_modules/istanbul-lib-source-maps/README.md +11 -0
- package/node_modules/istanbul-lib-source-maps/index.js +15 -0
- package/node_modules/istanbul-lib-source-maps/lib/get-mapping.js +182 -0
- package/node_modules/istanbul-lib-source-maps/lib/map-store.js +226 -0
- package/node_modules/istanbul-lib-source-maps/lib/mapped.js +113 -0
- package/node_modules/istanbul-lib-source-maps/lib/pathutils.js +21 -0
- package/node_modules/istanbul-lib-source-maps/lib/transform-utils.js +21 -0
- package/node_modules/istanbul-lib-source-maps/lib/transformer.js +147 -0
- package/node_modules/istanbul-lib-source-maps/package.json +45 -0
- package/node_modules/istanbul-reports/CHANGELOG.md +457 -0
- package/node_modules/istanbul-reports/LICENSE +24 -0
- package/node_modules/istanbul-reports/README.md +13 -0
- package/node_modules/istanbul-reports/index.js +24 -0
- package/node_modules/istanbul-reports/lib/clover/index.js +163 -0
- package/node_modules/istanbul-reports/lib/cobertura/index.js +151 -0
- package/node_modules/istanbul-reports/lib/html/annotator.js +305 -0
- package/node_modules/istanbul-reports/lib/html/assets/base.css +224 -0
- package/node_modules/istanbul-reports/lib/html/assets/block-navigation.js +86 -0
- package/node_modules/istanbul-reports/lib/html/assets/favicon.png +0 -0
- package/node_modules/istanbul-reports/lib/html/assets/sort-arrow-sprite.png +0 -0
- package/node_modules/istanbul-reports/lib/html/assets/sorter.js +195 -0
- package/node_modules/istanbul-reports/lib/html/assets/vendor/prettify.css +1 -0
- package/node_modules/istanbul-reports/lib/html/assets/vendor/prettify.js +1 -0
- package/node_modules/istanbul-reports/lib/html/index.js +421 -0
- package/node_modules/istanbul-reports/lib/html/insertion-text.js +114 -0
- package/node_modules/istanbul-reports/lib/html-spa/.babelrc +3 -0
- package/node_modules/istanbul-reports/lib/html-spa/assets/bundle.js +30 -0
- package/node_modules/istanbul-reports/lib/html-spa/assets/sort-arrow-sprite.png +0 -0
- package/node_modules/istanbul-reports/lib/html-spa/assets/spa.css +298 -0
- package/node_modules/istanbul-reports/lib/html-spa/index.js +176 -0
- package/node_modules/istanbul-reports/lib/html-spa/src/fileBreadcrumbs.js +31 -0
- package/node_modules/istanbul-reports/lib/html-spa/src/filterToggle.js +50 -0
- package/node_modules/istanbul-reports/lib/html-spa/src/flattenToggle.js +25 -0
- package/node_modules/istanbul-reports/lib/html-spa/src/getChildData.js +155 -0
- package/node_modules/istanbul-reports/lib/html-spa/src/index.js +160 -0
- package/node_modules/istanbul-reports/lib/html-spa/src/routing.js +52 -0
- package/node_modules/istanbul-reports/lib/html-spa/src/summaryHeader.js +63 -0
- package/node_modules/istanbul-reports/lib/html-spa/src/summaryTableHeader.js +130 -0
- package/node_modules/istanbul-reports/lib/html-spa/src/summaryTableLine.js +159 -0
- package/node_modules/istanbul-reports/lib/html-spa/webpack.config.js +22 -0
- package/node_modules/istanbul-reports/lib/json/index.js +44 -0
- package/node_modules/istanbul-reports/lib/json-summary/index.js +56 -0
- package/node_modules/istanbul-reports/lib/lcov/index.js +33 -0
- package/node_modules/istanbul-reports/lib/lcovonly/index.js +77 -0
- package/node_modules/istanbul-reports/lib/none/index.js +10 -0
- package/node_modules/istanbul-reports/lib/teamcity/index.js +67 -0
- package/node_modules/istanbul-reports/lib/text/index.js +298 -0
- package/node_modules/istanbul-reports/lib/text-lcov/index.js +17 -0
- package/node_modules/istanbul-reports/lib/text-summary/index.js +62 -0
- package/node_modules/istanbul-reports/package.json +60 -0
- package/node_modules/js-tokens/CHANGELOG.md +151 -0
- package/node_modules/js-tokens/LICENSE +21 -0
- package/node_modules/js-tokens/README.md +240 -0
- package/node_modules/js-tokens/index.js +23 -0
- package/node_modules/js-tokens/package.json +30 -0
- package/node_modules/js-yaml/CHANGELOG.md +557 -0
- package/node_modules/js-yaml/LICENSE +21 -0
- package/node_modules/js-yaml/README.md +299 -0
- package/node_modules/js-yaml/bin/js-yaml.js +132 -0
- package/node_modules/js-yaml/dist/js-yaml.js +3989 -0
- package/node_modules/js-yaml/dist/js-yaml.min.js +1 -0
- package/node_modules/js-yaml/index.js +7 -0
- package/node_modules/js-yaml/lib/js-yaml/common.js +59 -0
- package/node_modules/js-yaml/lib/js-yaml/dumper.js +850 -0
- package/node_modules/js-yaml/lib/js-yaml/exception.js +43 -0
- package/node_modules/js-yaml/lib/js-yaml/loader.js +1644 -0
- package/node_modules/js-yaml/lib/js-yaml/mark.js +76 -0
- package/node_modules/js-yaml/lib/js-yaml/schema/core.js +18 -0
- package/node_modules/js-yaml/lib/js-yaml/schema/default_full.js +25 -0
- package/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js +28 -0
- package/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js +17 -0
- package/node_modules/js-yaml/lib/js-yaml/schema/json.js +25 -0
- package/node_modules/js-yaml/lib/js-yaml/schema.js +108 -0
- package/node_modules/js-yaml/lib/js-yaml/type/binary.js +138 -0
- package/node_modules/js-yaml/lib/js-yaml/type/bool.js +35 -0
- package/node_modules/js-yaml/lib/js-yaml/type/float.js +116 -0
- package/node_modules/js-yaml/lib/js-yaml/type/int.js +173 -0
- package/node_modules/js-yaml/lib/js-yaml/type/js/function.js +93 -0
- package/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js +60 -0
- package/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js +28 -0
- package/node_modules/js-yaml/lib/js-yaml/type/map.js +8 -0
- package/node_modules/js-yaml/lib/js-yaml/type/merge.js +12 -0
- package/node_modules/js-yaml/lib/js-yaml/type/null.js +34 -0
- package/node_modules/js-yaml/lib/js-yaml/type/omap.js +44 -0
- package/node_modules/js-yaml/lib/js-yaml/type/pairs.js +53 -0
- package/node_modules/js-yaml/lib/js-yaml/type/seq.js +8 -0
- package/node_modules/js-yaml/lib/js-yaml/type/set.js +29 -0
- package/node_modules/js-yaml/lib/js-yaml/type/str.js +8 -0
- package/node_modules/js-yaml/lib/js-yaml/type/timestamp.js +88 -0
- package/node_modules/js-yaml/lib/js-yaml/type.js +61 -0
- package/node_modules/js-yaml/lib/js-yaml.js +39 -0
- package/node_modules/js-yaml/package.json +49 -0
- package/node_modules/jsesc/LICENSE-MIT.txt +20 -0
- package/node_modules/jsesc/README.md +421 -0
- package/node_modules/jsesc/bin/jsesc +148 -0
- package/node_modules/jsesc/jsesc.js +329 -0
- package/node_modules/jsesc/man/jsesc.1 +94 -0
- package/node_modules/jsesc/package.json +54 -0
- package/node_modules/json5/LICENSE.md +23 -0
- package/node_modules/json5/README.md +282 -0
- package/node_modules/json5/dist/index.js +1737 -0
- package/node_modules/json5/dist/index.min.js +1 -0
- package/node_modules/json5/dist/index.min.mjs +1 -0
- package/node_modules/json5/dist/index.mjs +1426 -0
- package/node_modules/json5/lib/cli.js +152 -0
- package/node_modules/json5/lib/index.d.ts +4 -0
- package/node_modules/json5/lib/index.js +9 -0
- package/node_modules/json5/lib/parse.d.ts +15 -0
- package/node_modules/json5/lib/parse.js +1114 -0
- package/node_modules/json5/lib/register.js +13 -0
- package/node_modules/json5/lib/require.js +4 -0
- package/node_modules/json5/lib/stringify.d.ts +89 -0
- package/node_modules/json5/lib/stringify.js +261 -0
- package/node_modules/json5/lib/unicode.d.ts +3 -0
- package/node_modules/json5/lib/unicode.js +4 -0
- package/node_modules/json5/lib/util.d.ts +5 -0
- package/node_modules/json5/lib/util.js +35 -0
- package/node_modules/json5/package.json +72 -0
- package/node_modules/locate-path/index.d.ts +83 -0
- package/node_modules/locate-path/index.js +65 -0
- package/node_modules/locate-path/license +9 -0
- package/node_modules/locate-path/package.json +45 -0
- package/node_modules/locate-path/readme.md +122 -0
- package/node_modules/lodash.flattendeep/LICENSE +47 -0
- package/node_modules/lodash.flattendeep/README.md +18 -0
- package/node_modules/lodash.flattendeep/index.js +350 -0
- package/node_modules/lodash.flattendeep/package.json +17 -0
- package/node_modules/long/LICENSE +202 -0
- package/node_modules/long/README.md +280 -0
- package/node_modules/long/index.d.ts +457 -0
- package/node_modules/long/index.js +1467 -0
- package/node_modules/long/package.json +50 -0
- package/node_modules/long/umd/index.d.ts +2 -0
- package/node_modules/long/umd/index.js +1432 -0
- package/node_modules/long/umd/package.json +3 -0
- package/node_modules/lru-cache/LICENSE +15 -0
- package/node_modules/lru-cache/README.md +166 -0
- package/node_modules/lru-cache/index.js +334 -0
- package/node_modules/lru-cache/package.json +32 -0
- package/node_modules/make-dir/index.d.ts +66 -0
- package/node_modules/make-dir/index.js +156 -0
- package/node_modules/make-dir/license +9 -0
- package/node_modules/make-dir/package.json +59 -0
- package/node_modules/make-dir/readme.md +125 -0
- package/node_modules/mime-db/HISTORY.md +8 -0
- package/node_modules/mime-db/LICENSE +19 -18
- package/node_modules/mime-db/README.md +1 -1
- package/node_modules/mime-db/db.json +54 -6
- package/node_modules/mime-db/index.js +1 -0
- package/node_modules/mime-db/package.json +24 -66
- package/node_modules/mime-types/HISTORY.md +9 -0
- package/node_modules/mime-types/README.md +1 -1
- package/node_modules/mime-types/package.json +19 -62
- package/node_modules/minimatch/LICENSE +15 -0
- package/node_modules/minimatch/README.md +230 -0
- package/node_modules/minimatch/minimatch.js +947 -0
- package/node_modules/minimatch/package.json +33 -0
- package/node_modules/ms/index.js +162 -0
- package/node_modules/ms/license.md +21 -0
- package/node_modules/ms/package.json +37 -0
- package/node_modules/ms/readme.md +60 -0
- package/node_modules/node-preload/CHANGELOG.md +61 -0
- package/node_modules/node-preload/LICENSE +21 -0
- package/node_modules/node-preload/README.md +47 -0
- package/node_modules/node-preload/generate-require.js +31 -0
- package/node_modules/node-preload/hook-spawn.js +21 -0
- package/node_modules/node-preload/index.js +5 -0
- package/node_modules/node-preload/internal-preload-module.js +25 -0
- package/node_modules/node-preload/package.json +50 -0
- package/node_modules/node-preload/preload-list-env.js +8 -0
- package/node_modules/node-preload/preload-list.js +15 -0
- package/node_modules/node-preload/preload-path/node-preload.js +11 -0
- package/node_modules/node-preload/process-node-options.js +16 -0
- package/node_modules/node-releases/LICENSE +21 -0
- package/node_modules/node-releases/README.md +12 -0
- package/node_modules/node-releases/data/processed/envs.json +1 -0
- package/node_modules/node-releases/data/release-schedule/release-schedule.json +1 -0
- package/node_modules/node-releases/package.json +19 -0
- package/node_modules/nyc/CHANGELOG.md +1017 -0
- package/node_modules/nyc/LICENSE.txt +16 -0
- package/node_modules/nyc/README.md +388 -0
- package/node_modules/nyc/bin/nyc.js +118 -0
- package/node_modules/nyc/bin/wrap.js +4 -0
- package/node_modules/nyc/index.js +546 -0
- package/node_modules/nyc/lib/commands/check-coverage.js +28 -0
- package/node_modules/nyc/lib/commands/helpers.js +74 -0
- package/node_modules/nyc/lib/commands/instrument.js +63 -0
- package/node_modules/nyc/lib/commands/merge.js +46 -0
- package/node_modules/nyc/lib/commands/report.js +30 -0
- package/node_modules/nyc/lib/config-util.js +65 -0
- package/node_modules/nyc/lib/fs-promises.js +51 -0
- package/node_modules/nyc/lib/hash.js +30 -0
- package/node_modules/nyc/lib/instrumenters/istanbul.js +44 -0
- package/node_modules/nyc/lib/instrumenters/noop.js +22 -0
- package/node_modules/nyc/lib/process-args.js +39 -0
- package/node_modules/nyc/lib/register-env.js +27 -0
- package/node_modules/nyc/lib/source-maps.js +84 -0
- package/node_modules/nyc/lib/wrap.js +28 -0
- package/node_modules/nyc/package.json +107 -0
- package/node_modules/object-assign/package.json +15 -49
- package/node_modules/object-is/package.json +85 -112
- package/node_modules/object-keys/package.json +86 -116
- package/node_modules/once/LICENSE +15 -0
- package/node_modules/once/README.md +79 -0
- package/node_modules/once/once.js +42 -0
- package/node_modules/once/package.json +33 -0
- package/node_modules/p-limit/index.d.ts +38 -0
- package/node_modules/p-limit/index.js +57 -0
- package/node_modules/p-limit/license +9 -0
- package/node_modules/p-limit/package.json +52 -0
- package/node_modules/p-limit/readme.md +101 -0
- package/node_modules/p-locate/index.d.ts +64 -0
- package/node_modules/p-locate/index.js +52 -0
- package/node_modules/p-locate/license +9 -0
- package/node_modules/p-locate/package.json +53 -0
- package/node_modules/p-locate/readme.md +90 -0
- package/node_modules/p-map/index.d.ts +65 -0
- package/node_modules/p-map/index.js +81 -0
- package/node_modules/p-map/license +9 -0
- package/node_modules/p-map/package.json +52 -0
- package/node_modules/p-map/readme.md +99 -0
- package/node_modules/p-try/index.d.ts +39 -0
- package/node_modules/p-try/index.js +9 -0
- package/node_modules/p-try/license +9 -0
- package/node_modules/p-try/package.json +42 -0
- package/node_modules/p-try/readme.md +58 -0
- package/node_modules/package-hash/LICENSE +14 -0
- package/node_modules/package-hash/README.md +79 -0
- package/node_modules/package-hash/index.js +162 -0
- package/node_modules/package-hash/package.json +60 -0
- package/node_modules/path-exists/index.d.ts +28 -0
- package/node_modules/path-exists/index.js +23 -0
- package/node_modules/path-exists/license +9 -0
- package/node_modules/path-exists/package.json +39 -0
- package/node_modules/path-exists/readme.md +52 -0
- package/node_modules/path-is-absolute/index.js +20 -0
- package/node_modules/path-is-absolute/license +21 -0
- package/node_modules/path-is-absolute/package.json +43 -0
- package/node_modules/path-is-absolute/readme.md +59 -0
- package/node_modules/path-key/index.d.ts +40 -0
- package/node_modules/path-key/index.js +16 -0
- package/node_modules/path-key/license +9 -0
- package/node_modules/path-key/package.json +39 -0
- package/node_modules/path-key/readme.md +61 -0
- package/node_modules/picocolors/LICENSE +15 -0
- package/node_modules/picocolors/README.md +21 -0
- package/node_modules/picocolors/package.json +25 -0
- package/node_modules/picocolors/picocolors.browser.js +4 -0
- package/node_modules/picocolors/picocolors.d.ts +5 -0
- package/node_modules/picocolors/picocolors.js +58 -0
- package/node_modules/picocolors/types.ts +30 -0
- package/node_modules/pkg-dir/index.d.ts +44 -0
- package/node_modules/pkg-dir/index.js +17 -0
- package/node_modules/pkg-dir/license +9 -0
- package/node_modules/pkg-dir/package.json +56 -0
- package/node_modules/pkg-dir/readme.md +66 -0
- package/node_modules/point-in-polygon/package.json +19 -48
- package/node_modules/polygon-clipping/package.json +41 -80
- package/node_modules/process-on-spawn/CHANGELOG.md +10 -0
- package/node_modules/process-on-spawn/LICENSE +21 -0
- package/node_modules/process-on-spawn/README.md +64 -0
- package/node_modules/process-on-spawn/index.js +112 -0
- package/node_modules/process-on-spawn/package.json +34 -0
- package/node_modules/protobufjs/LICENSE +39 -0
- package/node_modules/protobufjs/README.md +740 -0
- package/node_modules/protobufjs/dist/light/protobuf.js +7370 -0
- package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -0
- package/node_modules/protobufjs/dist/light/protobuf.min.js +8 -0
- package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -0
- package/node_modules/protobufjs/dist/minimal/protobuf.js +2731 -0
- package/node_modules/protobufjs/dist/minimal/protobuf.js.map +1 -0
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js +8 -0
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js.map +1 -0
- package/node_modules/protobufjs/dist/protobuf.js +9066 -0
- package/node_modules/protobufjs/dist/protobuf.js.map +1 -0
- package/node_modules/protobufjs/dist/protobuf.min.js +8 -0
- package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -0
- package/node_modules/protobufjs/ext/debug/README.md +4 -0
- package/node_modules/protobufjs/ext/debug/index.js +71 -0
- package/node_modules/protobufjs/ext/descriptor/README.md +72 -0
- package/node_modules/protobufjs/ext/descriptor/index.d.ts +191 -0
- package/node_modules/protobufjs/ext/descriptor/index.js +1052 -0
- package/node_modules/protobufjs/ext/descriptor/test.js +54 -0
- package/node_modules/protobufjs/google/LICENSE +27 -0
- package/node_modules/protobufjs/google/README.md +1 -0
- package/node_modules/protobufjs/google/api/annotations.json +83 -0
- package/node_modules/protobufjs/google/api/annotations.proto +11 -0
- package/node_modules/protobufjs/google/api/http.json +86 -0
- package/node_modules/protobufjs/google/api/http.proto +31 -0
- package/node_modules/protobufjs/google/protobuf/api.json +118 -0
- package/node_modules/protobufjs/google/protobuf/api.proto +34 -0
- package/node_modules/protobufjs/google/protobuf/descriptor.json +739 -0
- package/node_modules/protobufjs/google/protobuf/descriptor.proto +286 -0
- package/node_modules/protobufjs/google/protobuf/source_context.json +20 -0
- package/node_modules/protobufjs/google/protobuf/source_context.proto +7 -0
- package/node_modules/protobufjs/google/protobuf/type.json +202 -0
- package/node_modules/protobufjs/google/protobuf/type.proto +89 -0
- package/node_modules/protobufjs/index.d.ts +2741 -0
- package/node_modules/protobufjs/index.js +4 -0
- package/node_modules/protobufjs/light.d.ts +2 -0
- package/node_modules/protobufjs/light.js +4 -0
- package/node_modules/protobufjs/minimal.d.ts +2 -0
- package/node_modules/protobufjs/minimal.js +4 -0
- package/node_modules/protobufjs/package.json +111 -0
- package/node_modules/protobufjs/scripts/postinstall.js +32 -0
- package/node_modules/protobufjs/src/common.js +399 -0
- package/node_modules/protobufjs/src/converter.js +301 -0
- package/node_modules/protobufjs/src/decoder.js +129 -0
- package/node_modules/protobufjs/src/encoder.js +100 -0
- package/node_modules/protobufjs/src/enum.js +198 -0
- package/node_modules/protobufjs/src/field.js +377 -0
- package/node_modules/protobufjs/src/index-light.js +104 -0
- package/node_modules/protobufjs/src/index-minimal.js +36 -0
- package/node_modules/protobufjs/src/index.js +12 -0
- package/node_modules/protobufjs/src/mapfield.js +126 -0
- package/node_modules/protobufjs/src/message.js +139 -0
- package/node_modules/protobufjs/src/method.js +160 -0
- package/node_modules/protobufjs/src/namespace.js +433 -0
- package/node_modules/protobufjs/src/object.js +243 -0
- package/node_modules/protobufjs/src/oneof.js +203 -0
- package/node_modules/protobufjs/src/parse.js +869 -0
- package/node_modules/protobufjs/src/reader.js +411 -0
- package/node_modules/protobufjs/src/reader_buffer.js +51 -0
- package/node_modules/protobufjs/src/root.js +368 -0
- package/node_modules/protobufjs/src/roots.js +18 -0
- package/node_modules/protobufjs/src/rpc/service.js +142 -0
- package/node_modules/protobufjs/src/rpc.js +36 -0
- package/node_modules/protobufjs/src/service.js +167 -0
- package/node_modules/protobufjs/src/tokenize.js +418 -0
- package/node_modules/protobufjs/src/type.js +589 -0
- package/node_modules/protobufjs/src/types.js +196 -0
- package/node_modules/protobufjs/src/typescript.jsdoc +15 -0
- package/node_modules/protobufjs/src/util/longbits.js +200 -0
- package/node_modules/protobufjs/src/util/minimal.js +438 -0
- package/node_modules/protobufjs/src/util.js +212 -0
- package/node_modules/protobufjs/src/verifier.js +177 -0
- package/node_modules/protobufjs/src/wrappers.js +102 -0
- package/node_modules/protobufjs/src/writer.js +465 -0
- package/node_modules/protobufjs/src/writer_buffer.js +85 -0
- package/node_modules/protobufjs/tsconfig.json +8 -0
- package/node_modules/proxy-from-env/.eslintrc +29 -0
- package/node_modules/proxy-from-env/.travis.yml +10 -0
- package/node_modules/proxy-from-env/LICENSE +20 -0
- package/node_modules/proxy-from-env/README.md +131 -0
- package/node_modules/proxy-from-env/index.js +108 -0
- package/node_modules/proxy-from-env/package.json +34 -0
- package/node_modules/proxy-from-env/test.js +483 -0
- package/node_modules/quickselect/package.json +13 -41
- package/node_modules/rbush/README.md +95 -22
- package/node_modules/rbush/index.js +181 -131
- package/node_modules/rbush/package.json +39 -71
- package/node_modules/rbush/rbush.js +412 -360
- package/node_modules/rbush/rbush.min.js +1 -1
- package/node_modules/regexp.prototype.flags/.eslintrc +1 -0
- package/node_modules/regexp.prototype.flags/CHANGELOG.md +19 -0
- package/node_modules/regexp.prototype.flags/implementation.js +9 -0
- package/node_modules/regexp.prototype.flags/package.json +98 -122
- package/node_modules/regexp.prototype.flags/test/shimmed.js +2 -1
- package/node_modules/regexp.prototype.flags/test/tests.js +7 -5
- package/node_modules/release-zalgo/LICENSE +14 -0
- package/node_modules/release-zalgo/README.md +194 -0
- package/node_modules/release-zalgo/index.js +9 -0
- package/node_modules/release-zalgo/lib/Async.js +21 -0
- package/node_modules/release-zalgo/lib/Sync.js +24 -0
- package/node_modules/release-zalgo/lib/Thenable.js +39 -0
- package/node_modules/release-zalgo/lib/constants.js +6 -0
- package/node_modules/release-zalgo/lib/unwrapSync.js +54 -0
- package/node_modules/release-zalgo/package.json +49 -0
- package/node_modules/require-directory/.jshintrc +67 -0
- package/node_modules/require-directory/.npmignore +1 -0
- package/node_modules/require-directory/.travis.yml +3 -0
- package/node_modules/require-directory/LICENSE +22 -0
- package/node_modules/require-directory/README.markdown +184 -0
- package/node_modules/require-directory/index.js +86 -0
- package/node_modules/require-directory/package.json +40 -0
- package/node_modules/require-main-filename/CHANGELOG.md +26 -0
- package/node_modules/require-main-filename/LICENSE.txt +14 -0
- package/node_modules/require-main-filename/README.md +26 -0
- package/node_modules/require-main-filename/index.js +18 -0
- package/node_modules/require-main-filename/package.json +35 -0
- package/node_modules/resolve-from/index.d.ts +31 -0
- package/node_modules/resolve-from/index.js +47 -0
- package/node_modules/resolve-from/license +9 -0
- package/node_modules/resolve-from/package.json +36 -0
- package/node_modules/resolve-from/readme.md +72 -0
- package/node_modules/rimraf/CHANGELOG.md +65 -0
- package/node_modules/rimraf/LICENSE +15 -0
- package/node_modules/rimraf/README.md +101 -0
- package/node_modules/rimraf/bin.js +68 -0
- package/node_modules/rimraf/package.json +32 -0
- package/node_modules/rimraf/rimraf.js +360 -0
- package/node_modules/robust-predicates/package.json +25 -52
- package/node_modules/semver/LICENSE +15 -0
- package/node_modules/semver/README.md +443 -0
- package/node_modules/semver/bin/semver.js +174 -0
- package/node_modules/semver/package.json +38 -0
- package/node_modules/semver/range.bnf +16 -0
- package/node_modules/semver/semver.js +1643 -0
- package/node_modules/set-blocking/CHANGELOG.md +26 -0
- package/node_modules/set-blocking/LICENSE.txt +14 -0
- package/node_modules/set-blocking/README.md +31 -0
- package/node_modules/set-blocking/index.js +7 -0
- package/node_modules/set-blocking/package.json +42 -0
- package/node_modules/shebang-command/index.js +19 -0
- package/node_modules/shebang-command/license +9 -0
- package/node_modules/shebang-command/package.json +34 -0
- package/node_modules/shebang-command/readme.md +34 -0
- package/node_modules/shebang-regex/index.d.ts +22 -0
- package/node_modules/shebang-regex/index.js +2 -0
- package/node_modules/shebang-regex/license +9 -0
- package/node_modules/shebang-regex/package.json +35 -0
- package/node_modules/shebang-regex/readme.md +33 -0
- package/node_modules/signal-exit/LICENSE.txt +16 -0
- package/node_modules/signal-exit/README.md +39 -0
- package/node_modules/signal-exit/index.js +202 -0
- package/node_modules/signal-exit/package.json +38 -0
- package/node_modules/signal-exit/signals.js +53 -0
- package/node_modules/skmeans/package.json +18 -53
- package/node_modules/source-map/CHANGELOG.md +301 -0
- package/node_modules/source-map/LICENSE +28 -0
- package/node_modules/source-map/README.md +742 -0
- package/node_modules/source-map/dist/source-map.debug.js +3234 -0
- package/node_modules/source-map/dist/source-map.js +3233 -0
- package/node_modules/source-map/dist/source-map.min.js +2 -0
- package/node_modules/source-map/dist/source-map.min.js.map +1 -0
- package/node_modules/source-map/lib/array-set.js +121 -0
- package/node_modules/source-map/lib/base64-vlq.js +140 -0
- package/node_modules/source-map/lib/base64.js +67 -0
- package/node_modules/source-map/lib/binary-search.js +111 -0
- package/node_modules/source-map/lib/mapping-list.js +79 -0
- package/node_modules/source-map/lib/quick-sort.js +114 -0
- package/node_modules/source-map/lib/source-map-consumer.js +1145 -0
- package/node_modules/source-map/lib/source-map-generator.js +425 -0
- package/node_modules/source-map/lib/source-node.js +413 -0
- package/node_modules/source-map/lib/util.js +488 -0
- package/node_modules/source-map/package.json +73 -0
- package/node_modules/source-map/source-map.d.ts +98 -0
- package/node_modules/source-map/source-map.js +8 -0
- package/node_modules/spawn-wrap/CHANGELOG.md +43 -0
- package/node_modules/spawn-wrap/LICENSE +15 -0
- package/node_modules/spawn-wrap/README.md +111 -0
- package/node_modules/spawn-wrap/index.js +165 -0
- package/node_modules/spawn-wrap/lib/debug.js +32 -0
- package/node_modules/spawn-wrap/lib/exe-type.js +53 -0
- package/node_modules/spawn-wrap/lib/homedir.js +5 -0
- package/node_modules/spawn-wrap/lib/munge.js +84 -0
- package/node_modules/spawn-wrap/lib/mungers/cmd.js +59 -0
- package/node_modules/spawn-wrap/lib/mungers/env.js +49 -0
- package/node_modules/spawn-wrap/lib/mungers/node.js +79 -0
- package/node_modules/spawn-wrap/lib/mungers/npm.js +32 -0
- package/node_modules/spawn-wrap/lib/mungers/sh.js +61 -0
- package/node_modules/spawn-wrap/lib/mungers/shebang.js +43 -0
- package/node_modules/spawn-wrap/lib/which-or-undefined.js +12 -0
- package/node_modules/spawn-wrap/package.json +45 -0
- package/node_modules/spawn-wrap/shim.js +156 -0
- package/node_modules/splaytree/Readme.md +58 -57
- package/node_modules/splaytree/dist/splay.esm.js +21 -8
- package/node_modules/splaytree/dist/splay.esm.js.map +1 -1
- package/node_modules/splaytree/dist/splay.js +21 -8
- package/node_modules/splaytree/dist/splay.js.map +1 -1
- package/node_modules/splaytree/package.json +36 -68
- package/node_modules/splaytree/src/index.ts +16 -4
- package/node_modules/sprintf-js/.npmignore +1 -0
- package/node_modules/sprintf-js/LICENSE +24 -0
- package/node_modules/sprintf-js/README.md +88 -0
- package/node_modules/sprintf-js/bower.json +14 -0
- package/node_modules/sprintf-js/demo/angular.html +20 -0
- package/node_modules/sprintf-js/dist/angular-sprintf.min.js +4 -0
- package/node_modules/sprintf-js/dist/angular-sprintf.min.js.map +1 -0
- package/node_modules/sprintf-js/dist/angular-sprintf.min.map +1 -0
- package/node_modules/sprintf-js/dist/sprintf.min.js +4 -0
- package/node_modules/sprintf-js/dist/sprintf.min.js.map +1 -0
- package/node_modules/sprintf-js/dist/sprintf.min.map +1 -0
- package/node_modules/sprintf-js/gruntfile.js +36 -0
- package/node_modules/sprintf-js/package.json +22 -0
- package/node_modules/sprintf-js/src/angular-sprintf.js +18 -0
- package/node_modules/sprintf-js/src/sprintf.js +208 -0
- package/node_modules/sprintf-js/test/test.js +82 -0
- package/node_modules/string-width/index.d.ts +29 -0
- package/node_modules/string-width/index.js +47 -0
- package/node_modules/string-width/license +9 -0
- package/node_modules/string-width/package.json +56 -0
- package/node_modules/string-width/readme.md +50 -0
- package/node_modules/strip-ansi/index.d.ts +17 -0
- package/node_modules/strip-ansi/index.js +4 -0
- package/node_modules/strip-ansi/license +9 -0
- package/node_modules/strip-ansi/package.json +54 -0
- package/node_modules/strip-ansi/readme.md +46 -0
- package/node_modules/strip-bom/index.d.ts +14 -0
- package/node_modules/strip-bom/index.js +15 -0
- package/node_modules/strip-bom/license +9 -0
- package/node_modules/strip-bom/package.json +42 -0
- package/node_modules/strip-bom/readme.md +54 -0
- package/node_modules/strnum/.vscode/launch.json +25 -0
- package/node_modules/strnum/LICENSE +21 -0
- package/node_modules/strnum/README.md +86 -0
- package/node_modules/strnum/package.json +24 -0
- package/node_modules/strnum/strnum.js +124 -0
- package/node_modules/strnum/strnum.test.js +150 -0
- package/node_modules/supports-color/browser.js +5 -0
- package/node_modules/supports-color/index.js +131 -0
- package/node_modules/supports-color/license +9 -0
- package/node_modules/supports-color/package.json +53 -0
- package/node_modules/supports-color/readme.md +66 -0
- package/node_modules/test-exclude/CHANGELOG.md +352 -0
- package/node_modules/test-exclude/LICENSE.txt +14 -0
- package/node_modules/test-exclude/README.md +96 -0
- package/node_modules/test-exclude/index.js +161 -0
- package/node_modules/test-exclude/is-outside-dir-posix.js +7 -0
- package/node_modules/test-exclude/is-outside-dir-win32.js +10 -0
- package/node_modules/test-exclude/is-outside-dir.js +7 -0
- package/node_modules/test-exclude/package.json +45 -0
- package/node_modules/tinyqueue/package.json +34 -59
- package/node_modules/to-fast-properties/index.js +27 -0
- package/node_modules/to-fast-properties/license +10 -0
- package/node_modules/to-fast-properties/package.json +35 -0
- package/node_modules/to-fast-properties/readme.md +37 -0
- package/node_modules/topojson-client/package.json +28 -56
- package/node_modules/topojson-server/package.json +27 -55
- package/node_modules/turf-jsts/package.json +33 -68
- package/node_modules/type-fest/index.d.ts +20 -0
- package/node_modules/type-fest/license +9 -0
- package/node_modules/type-fest/package.json +51 -0
- package/node_modules/type-fest/readme.md +635 -0
- package/node_modules/type-fest/source/basic.d.ts +67 -0
- package/node_modules/type-fest/source/except.d.ts +22 -0
- package/node_modules/type-fest/source/literal-union.d.ts +33 -0
- package/node_modules/type-fest/source/merge-exclusive.d.ts +39 -0
- package/node_modules/type-fest/source/merge.d.ts +22 -0
- package/node_modules/type-fest/source/mutable.d.ts +22 -0
- package/node_modules/type-fest/source/opaque.d.ts +40 -0
- package/node_modules/type-fest/source/package-json.d.ts +501 -0
- package/node_modules/type-fest/source/partial-deep.d.ts +72 -0
- package/node_modules/type-fest/source/promisable.d.ts +23 -0
- package/node_modules/type-fest/source/readonly-deep.d.ts +59 -0
- package/node_modules/type-fest/source/require-at-least-one.d.ts +32 -0
- package/node_modules/type-fest/source/require-exactly-one.d.ts +36 -0
- package/node_modules/type-fest/source/set-optional.d.ts +32 -0
- package/node_modules/type-fest/source/set-required.d.ts +32 -0
- package/node_modules/typedarray-to-buffer/.airtap.yml +15 -0
- package/node_modules/typedarray-to-buffer/.travis.yml +11 -0
- package/node_modules/typedarray-to-buffer/LICENSE +21 -0
- package/node_modules/typedarray-to-buffer/README.md +85 -0
- package/node_modules/typedarray-to-buffer/index.js +25 -0
- package/node_modules/typedarray-to-buffer/package.json +50 -0
- package/node_modules/typedarray-to-buffer/test/basic.js +50 -0
- package/node_modules/update-browserslist-db/LICENSE +20 -0
- package/node_modules/update-browserslist-db/README.md +22 -0
- package/node_modules/update-browserslist-db/check-npm-version.js +16 -0
- package/node_modules/update-browserslist-db/cli.js +42 -0
- package/node_modules/update-browserslist-db/index.d.ts +6 -0
- package/node_modules/update-browserslist-db/index.js +317 -0
- package/node_modules/update-browserslist-db/package.json +40 -0
- package/node_modules/update-browserslist-db/utils.js +22 -0
- package/node_modules/uuid/CHANGELOG.md +39 -0
- package/node_modules/uuid/README.md +30 -73
- package/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
- package/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
- package/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
- package/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
- package/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
- package/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
- package/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
- package/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
- package/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
- package/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
- package/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
- package/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
- package/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
- package/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
- package/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
- package/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
- package/node_modules/uuid/dist/esm-browser/md5.js +23 -23
- package/node_modules/uuid/dist/esm-browser/native.js +4 -0
- package/node_modules/uuid/dist/esm-browser/parse.js +2 -2
- package/node_modules/uuid/dist/esm-browser/rng.js +4 -5
- package/node_modules/uuid/dist/esm-browser/sha1.js +26 -26
- package/node_modules/uuid/dist/esm-browser/stringify.js +9 -6
- package/node_modules/uuid/dist/esm-browser/v1.js +17 -17
- package/node_modules/uuid/dist/esm-browser/v3.js +1 -1
- package/node_modules/uuid/dist/esm-browser/v35.js +12 -10
- package/node_modules/uuid/dist/esm-browser/v4.js +9 -4
- package/node_modules/uuid/dist/esm-browser/v5.js +1 -1
- package/node_modules/uuid/dist/esm-browser/version.js +1 -1
- package/node_modules/uuid/dist/esm-node/native.js +4 -0
- package/node_modules/uuid/dist/esm-node/stringify.js +7 -3
- package/node_modules/uuid/dist/esm-node/v1.js +2 -2
- package/node_modules/uuid/dist/esm-node/v35.js +6 -4
- package/node_modules/uuid/dist/esm-node/v4.js +7 -2
- package/node_modules/uuid/dist/esm-node/version.js +1 -1
- package/node_modules/uuid/dist/index.js +18 -18
- package/node_modules/uuid/dist/native-browser.js +11 -0
- package/node_modules/uuid/dist/native.js +15 -0
- package/node_modules/uuid/dist/rng-browser.js +2 -3
- package/node_modules/uuid/dist/stringify.js +8 -3
- package/node_modules/uuid/dist/v1.js +2 -2
- package/node_modules/uuid/dist/v35.js +7 -5
- package/node_modules/uuid/dist/v4.js +8 -2
- package/node_modules/uuid/dist/version.js +1 -1
- package/node_modules/uuid/package.json +87 -120
- package/node_modules/which/CHANGELOG.md +166 -0
- package/node_modules/which/LICENSE +15 -0
- package/node_modules/which/README.md +54 -0
- package/node_modules/which/bin/node-which +52 -0
- package/node_modules/which/package.json +43 -0
- package/node_modules/which/which.js +125 -0
- package/node_modules/which-module/LICENSE +13 -0
- package/node_modules/which-module/README.md +58 -0
- package/node_modules/which-module/index.js +9 -0
- package/node_modules/which-module/package.json +41 -0
- package/node_modules/wrap-ansi/index.js +186 -0
- package/node_modules/wrap-ansi/license +9 -0
- package/node_modules/wrap-ansi/node_modules/ansi-styles/index.d.ts +345 -0
- package/node_modules/wrap-ansi/node_modules/ansi-styles/index.js +163 -0
- package/node_modules/wrap-ansi/node_modules/ansi-styles/license +9 -0
- package/node_modules/wrap-ansi/node_modules/ansi-styles/package.json +56 -0
- package/node_modules/wrap-ansi/node_modules/ansi-styles/readme.md +152 -0
- package/node_modules/wrap-ansi/node_modules/color-convert/CHANGELOG.md +54 -0
- package/node_modules/wrap-ansi/node_modules/color-convert/LICENSE +21 -0
- package/node_modules/wrap-ansi/node_modules/color-convert/README.md +68 -0
- package/node_modules/wrap-ansi/node_modules/color-convert/conversions.js +839 -0
- package/node_modules/wrap-ansi/node_modules/color-convert/index.js +81 -0
- package/node_modules/wrap-ansi/node_modules/color-convert/package.json +48 -0
- package/node_modules/wrap-ansi/node_modules/color-convert/route.js +97 -0
- package/node_modules/wrap-ansi/node_modules/color-name/LICENSE +8 -0
- package/node_modules/wrap-ansi/node_modules/color-name/README.md +11 -0
- package/node_modules/wrap-ansi/node_modules/color-name/index.js +152 -0
- package/node_modules/wrap-ansi/node_modules/color-name/package.json +28 -0
- package/node_modules/wrap-ansi/package.json +61 -0
- package/node_modules/wrap-ansi/readme.md +97 -0
- package/node_modules/wrappy/LICENSE +15 -0
- package/node_modules/wrappy/README.md +36 -0
- package/node_modules/wrappy/package.json +29 -0
- package/node_modules/wrappy/wrappy.js +33 -0
- package/node_modules/write-file-atomic/CHANGELOG.md +32 -0
- package/node_modules/write-file-atomic/LICENSE +6 -0
- package/node_modules/write-file-atomic/README.md +72 -0
- package/node_modules/write-file-atomic/index.js +259 -0
- package/node_modules/write-file-atomic/package.json +48 -0
- package/node_modules/y18n/CHANGELOG.md +35 -0
- package/node_modules/y18n/LICENSE +13 -0
- package/node_modules/y18n/README.md +109 -0
- package/node_modules/y18n/index.js +188 -0
- package/node_modules/y18n/package.json +39 -0
- package/node_modules/yallist/LICENSE +15 -0
- package/node_modules/yallist/README.md +204 -0
- package/node_modules/yallist/iterator.js +8 -0
- package/node_modules/yallist/package.json +29 -0
- package/node_modules/yallist/yallist.js +426 -0
- package/node_modules/yargs/CHANGELOG.md +420 -0
- package/node_modules/yargs/LICENSE +21 -0
- package/node_modules/yargs/README.md +140 -0
- package/node_modules/yargs/build/lib/apply-extends.d.ts +2 -0
- package/node_modules/yargs/build/lib/apply-extends.js +65 -0
- package/node_modules/yargs/build/lib/argsert.d.ts +2 -0
- package/node_modules/yargs/build/lib/argsert.js +65 -0
- package/node_modules/yargs/build/lib/command.d.ts +64 -0
- package/node_modules/yargs/build/lib/command.js +416 -0
- package/node_modules/yargs/build/lib/common-types.d.ts +36 -0
- package/node_modules/yargs/build/lib/common-types.js +25 -0
- package/node_modules/yargs/build/lib/completion-templates.d.ts +2 -0
- package/node_modules/yargs/build/lib/completion-templates.js +50 -0
- package/node_modules/yargs/build/lib/completion.d.ts +21 -0
- package/node_modules/yargs/build/lib/completion.js +135 -0
- package/node_modules/yargs/build/lib/is-promise.d.ts +1 -0
- package/node_modules/yargs/build/lib/is-promise.js +9 -0
- package/node_modules/yargs/build/lib/levenshtein.d.ts +1 -0
- package/node_modules/yargs/build/lib/levenshtein.js +58 -0
- package/node_modules/yargs/build/lib/middleware.d.ts +10 -0
- package/node_modules/yargs/build/lib/middleware.js +57 -0
- package/node_modules/yargs/build/lib/obj-filter.d.ts +1 -0
- package/node_modules/yargs/build/lib/obj-filter.js +14 -0
- package/node_modules/yargs/build/lib/parse-command.d.ts +11 -0
- package/node_modules/yargs/build/lib/parse-command.js +36 -0
- package/node_modules/yargs/build/lib/process-argv.d.ts +2 -0
- package/node_modules/yargs/build/lib/process-argv.js +31 -0
- package/node_modules/yargs/build/lib/usage.d.ts +49 -0
- package/node_modules/yargs/build/lib/usage.js +540 -0
- package/node_modules/yargs/build/lib/validation.d.ts +34 -0
- package/node_modules/yargs/build/lib/validation.js +330 -0
- package/node_modules/yargs/build/lib/yargs.d.ts +274 -0
- package/node_modules/yargs/build/lib/yargs.js +1190 -0
- package/node_modules/yargs/build/lib/yerror.d.ts +4 -0
- package/node_modules/yargs/build/lib/yerror.js +11 -0
- package/node_modules/yargs/index.js +40 -0
- package/node_modules/yargs/locales/be.json +46 -0
- package/node_modules/yargs/locales/de.json +46 -0
- package/node_modules/yargs/locales/en.json +51 -0
- package/node_modules/yargs/locales/es.json +46 -0
- package/node_modules/yargs/locales/fi.json +49 -0
- package/node_modules/yargs/locales/fr.json +53 -0
- package/node_modules/yargs/locales/hi.json +49 -0
- package/node_modules/yargs/locales/hu.json +46 -0
- package/node_modules/yargs/locales/id.json +50 -0
- package/node_modules/yargs/locales/it.json +46 -0
- package/node_modules/yargs/locales/ja.json +51 -0
- package/node_modules/yargs/locales/ko.json +49 -0
- package/node_modules/yargs/locales/nb.json +44 -0
- package/node_modules/yargs/locales/nl.json +49 -0
- package/node_modules/yargs/locales/nn.json +44 -0
- package/node_modules/yargs/locales/pirate.json +13 -0
- package/node_modules/yargs/locales/pl.json +49 -0
- package/node_modules/yargs/locales/pt.json +45 -0
- package/node_modules/yargs/locales/pt_BR.json +48 -0
- package/node_modules/yargs/locales/ru.json +46 -0
- package/node_modules/yargs/locales/th.json +46 -0
- package/node_modules/yargs/locales/tr.json +48 -0
- package/node_modules/yargs/locales/zh_CN.json +48 -0
- package/node_modules/yargs/locales/zh_TW.json +47 -0
- package/node_modules/yargs/package.json +92 -0
- package/node_modules/yargs/yargs.js +14 -0
- package/node_modules/yargs-parser/CHANGELOG.md +601 -0
- package/node_modules/yargs-parser/LICENSE.txt +14 -0
- package/node_modules/yargs-parser/README.md +449 -0
- package/node_modules/yargs-parser/index.js +1032 -0
- package/node_modules/yargs-parser/lib/tokenize-arg-string.js +40 -0
- package/node_modules/yargs-parser/package.json +46 -0
- package/package.json +16 -8
- package/proto/contact.proto +14 -0
- package/proto/cotevent.proto +44 -0
- package/proto/detail.proto +78 -0
- package/proto/group.proto +13 -0
- package/proto/precisionlocation.proto +13 -0
- package/proto/protocol.txt +352 -0
- package/proto/status.proto +12 -0
- package/proto/takcontrol.proto +24 -0
- package/proto/takmessage.proto +18 -0
- package/proto/takv.proto +15 -0
- package/proto/track.proto +13 -0
- package/tak-ingest.html +40 -0
- package/tak-ingest.js +96 -0
- package/tak-registration.html +11 -1
- package/tak-registration.js +55 -7
- package/node_modules/@turf/collect/node_modules/quickselect/package.json +0 -69
- package/node_modules/@turf/collect/node_modules/rbush/package.json +0 -85
- package/node_modules/@turf/collect/node_modules/rbush/rbush.js +0 -626
- package/node_modules/@turf/collect/node_modules/rbush/rbush.min.js +0 -1
- package/node_modules/@turf/unkink-polygon/node_modules/quickselect/package.json +0 -69
- package/node_modules/@turf/unkink-polygon/node_modules/rbush/package.json +0 -85
- package/node_modules/@turf/unkink-polygon/node_modules/rbush/rbush.js +0 -626
- package/node_modules/@turf/unkink-polygon/node_modules/rbush/rbush.min.js +0 -1
- package/node_modules/axios/UPGRADE_GUIDE.md +0 -168
- package/node_modules/axios/dist/axios.map +0 -1
- package/node_modules/axios/dist/axios.min.map +0 -1
- package/node_modules/axios/lib/cancel/Cancel.js +0 -19
- package/node_modules/axios/lib/core/createError.js +0 -18
- package/node_modules/axios/lib/core/enhanceError.js +0 -43
- package/node_modules/axios/lib/helpers/normalizeHeaderName.js +0 -12
- package/node_modules/axios/tsconfig.json +0 -14
- package/node_modules/axios/tslint.json +0 -6
- package/node_modules/combined-stream/yarn.lock +0 -17
- package/node_modules/d3-array/yarn.lock +0 -939
- package/node_modules/define-properties/.jscs.json +0 -175
- package/node_modules/define-properties/.travis.yml +0 -233
- package/node_modules/define-properties/test/index.js +0 -125
- package/node_modules/get-intrinsic/.eslintignore +0 -1
- /package/node_modules/{@turf/collect → concaveman}/node_modules/quickselect/LICENSE +0 -0
- /package/node_modules/{@turf/collect → concaveman}/node_modules/quickselect/README.md +0 -0
- /package/node_modules/{@turf/collect → concaveman}/node_modules/quickselect/index.js +0 -0
- /package/node_modules/{@turf/collect → concaveman}/node_modules/quickselect/quickselect.js +0 -0
- /package/node_modules/{@turf/collect → concaveman}/node_modules/rbush/LICENSE +0 -0
- /package/node_modules/{@turf/unkink-polygon → geojson-rbush}/node_modules/quickselect/LICENSE +0 -0
- /package/node_modules/{@turf/unkink-polygon → geojson-rbush}/node_modules/quickselect/README.md +0 -0
- /package/node_modules/{@turf/unkink-polygon → geojson-rbush}/node_modules/quickselect/index.js +0 -0
- /package/node_modules/{@turf/unkink-polygon → geojson-rbush}/node_modules/quickselect/quickselect.js +0 -0
- /package/node_modules/{@turf/unkink-polygon → geojson-rbush}/node_modules/rbush/LICENSE +0 -0
- /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuid.min.js +0 -0
- /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidNIL.min.js +0 -0
- /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidParse.min.js +0 -0
- /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidStringify.min.js +0 -0
- /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidValidate.min.js +0 -0
- /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidVersion.min.js +0 -0
- /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidv1.min.js +0 -0
- /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidv3.min.js +0 -0
- /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidv4.min.js +0 -0
- /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidv5.min.js +0 -0
|
@@ -0,0 +1,444 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _xhtml = require("./xhtml");
|
|
8
|
+
var _types = require("../../tokenizer/types");
|
|
9
|
+
var _context = require("../../tokenizer/context");
|
|
10
|
+
var _identifier = require("../../util/identifier");
|
|
11
|
+
var _whitespace = require("../../util/whitespace");
|
|
12
|
+
var _parseError = require("../../parse-error");
|
|
13
|
+
const JsxErrors = (0, _parseError.ParseErrorEnum)`jsx`({
|
|
14
|
+
AttributeIsEmpty: "JSX attributes must only be assigned a non-empty expression.",
|
|
15
|
+
MissingClosingTagElement: ({
|
|
16
|
+
openingTagName
|
|
17
|
+
}) => `Expected corresponding JSX closing tag for <${openingTagName}>.`,
|
|
18
|
+
MissingClosingTagFragment: "Expected corresponding JSX closing tag for <>.",
|
|
19
|
+
UnexpectedSequenceExpression: "Sequence expressions cannot be directly nested inside JSX. Did you mean to wrap it in parentheses (...)?",
|
|
20
|
+
UnexpectedToken: ({
|
|
21
|
+
unexpected,
|
|
22
|
+
HTMLEntity
|
|
23
|
+
}) => `Unexpected token \`${unexpected}\`. Did you mean \`${HTMLEntity}\` or \`{'${unexpected}'}\`?`,
|
|
24
|
+
UnsupportedJsxValue: "JSX value should be either an expression or a quoted JSX text.",
|
|
25
|
+
UnterminatedJsxContent: "Unterminated JSX contents.",
|
|
26
|
+
UnwrappedAdjacentJSXElements: "Adjacent JSX elements must be wrapped in an enclosing tag. Did you want a JSX fragment <>...</>?"
|
|
27
|
+
});
|
|
28
|
+
function isFragment(object) {
|
|
29
|
+
return object ? object.type === "JSXOpeningFragment" || object.type === "JSXClosingFragment" : false;
|
|
30
|
+
}
|
|
31
|
+
function getQualifiedJSXName(object) {
|
|
32
|
+
if (object.type === "JSXIdentifier") {
|
|
33
|
+
return object.name;
|
|
34
|
+
}
|
|
35
|
+
if (object.type === "JSXNamespacedName") {
|
|
36
|
+
return object.namespace.name + ":" + object.name.name;
|
|
37
|
+
}
|
|
38
|
+
if (object.type === "JSXMemberExpression") {
|
|
39
|
+
return getQualifiedJSXName(object.object) + "." + getQualifiedJSXName(object.property);
|
|
40
|
+
}
|
|
41
|
+
throw new Error("Node had unexpected type: " + object.type);
|
|
42
|
+
}
|
|
43
|
+
var _default = superClass => class JSXParserMixin extends superClass {
|
|
44
|
+
jsxReadToken() {
|
|
45
|
+
let out = "";
|
|
46
|
+
let chunkStart = this.state.pos;
|
|
47
|
+
for (;;) {
|
|
48
|
+
if (this.state.pos >= this.length) {
|
|
49
|
+
throw this.raise(JsxErrors.UnterminatedJsxContent, {
|
|
50
|
+
at: this.state.startLoc
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
const ch = this.input.charCodeAt(this.state.pos);
|
|
54
|
+
switch (ch) {
|
|
55
|
+
case 60:
|
|
56
|
+
case 123:
|
|
57
|
+
if (this.state.pos === this.state.start) {
|
|
58
|
+
if (ch === 60 && this.state.canStartJSXElement) {
|
|
59
|
+
++this.state.pos;
|
|
60
|
+
this.finishToken(140);
|
|
61
|
+
} else {
|
|
62
|
+
super.getTokenFromCode(ch);
|
|
63
|
+
}
|
|
64
|
+
return;
|
|
65
|
+
}
|
|
66
|
+
out += this.input.slice(chunkStart, this.state.pos);
|
|
67
|
+
this.finishToken(139, out);
|
|
68
|
+
return;
|
|
69
|
+
case 38:
|
|
70
|
+
out += this.input.slice(chunkStart, this.state.pos);
|
|
71
|
+
out += this.jsxReadEntity();
|
|
72
|
+
chunkStart = this.state.pos;
|
|
73
|
+
break;
|
|
74
|
+
case 62:
|
|
75
|
+
case 125:
|
|
76
|
+
;
|
|
77
|
+
default:
|
|
78
|
+
if ((0, _whitespace.isNewLine)(ch)) {
|
|
79
|
+
out += this.input.slice(chunkStart, this.state.pos);
|
|
80
|
+
out += this.jsxReadNewLine(true);
|
|
81
|
+
chunkStart = this.state.pos;
|
|
82
|
+
} else {
|
|
83
|
+
++this.state.pos;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
jsxReadNewLine(normalizeCRLF) {
|
|
89
|
+
const ch = this.input.charCodeAt(this.state.pos);
|
|
90
|
+
let out;
|
|
91
|
+
++this.state.pos;
|
|
92
|
+
if (ch === 13 && this.input.charCodeAt(this.state.pos) === 10) {
|
|
93
|
+
++this.state.pos;
|
|
94
|
+
out = normalizeCRLF ? "\n" : "\r\n";
|
|
95
|
+
} else {
|
|
96
|
+
out = String.fromCharCode(ch);
|
|
97
|
+
}
|
|
98
|
+
++this.state.curLine;
|
|
99
|
+
this.state.lineStart = this.state.pos;
|
|
100
|
+
return out;
|
|
101
|
+
}
|
|
102
|
+
jsxReadString(quote) {
|
|
103
|
+
let out = "";
|
|
104
|
+
let chunkStart = ++this.state.pos;
|
|
105
|
+
for (;;) {
|
|
106
|
+
if (this.state.pos >= this.length) {
|
|
107
|
+
throw this.raise(_parseError.Errors.UnterminatedString, {
|
|
108
|
+
at: this.state.startLoc
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
const ch = this.input.charCodeAt(this.state.pos);
|
|
112
|
+
if (ch === quote) break;
|
|
113
|
+
if (ch === 38) {
|
|
114
|
+
out += this.input.slice(chunkStart, this.state.pos);
|
|
115
|
+
out += this.jsxReadEntity();
|
|
116
|
+
chunkStart = this.state.pos;
|
|
117
|
+
} else if ((0, _whitespace.isNewLine)(ch)) {
|
|
118
|
+
out += this.input.slice(chunkStart, this.state.pos);
|
|
119
|
+
out += this.jsxReadNewLine(false);
|
|
120
|
+
chunkStart = this.state.pos;
|
|
121
|
+
} else {
|
|
122
|
+
++this.state.pos;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
out += this.input.slice(chunkStart, this.state.pos++);
|
|
126
|
+
this.finishToken(131, out);
|
|
127
|
+
}
|
|
128
|
+
jsxReadEntity() {
|
|
129
|
+
const startPos = ++this.state.pos;
|
|
130
|
+
if (this.codePointAtPos(this.state.pos) === 35) {
|
|
131
|
+
++this.state.pos;
|
|
132
|
+
let radix = 10;
|
|
133
|
+
if (this.codePointAtPos(this.state.pos) === 120) {
|
|
134
|
+
radix = 16;
|
|
135
|
+
++this.state.pos;
|
|
136
|
+
}
|
|
137
|
+
const codePoint = this.readInt(radix, undefined, false, "bail");
|
|
138
|
+
if (codePoint !== null && this.codePointAtPos(this.state.pos) === 59) {
|
|
139
|
+
++this.state.pos;
|
|
140
|
+
return String.fromCodePoint(codePoint);
|
|
141
|
+
}
|
|
142
|
+
} else {
|
|
143
|
+
let count = 0;
|
|
144
|
+
let semi = false;
|
|
145
|
+
while (count++ < 10 && this.state.pos < this.length && !(semi = this.codePointAtPos(this.state.pos) == 59)) {
|
|
146
|
+
++this.state.pos;
|
|
147
|
+
}
|
|
148
|
+
if (semi) {
|
|
149
|
+
const desc = this.input.slice(startPos, this.state.pos);
|
|
150
|
+
const entity = _xhtml.default[desc];
|
|
151
|
+
++this.state.pos;
|
|
152
|
+
if (entity) {
|
|
153
|
+
return entity;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
this.state.pos = startPos;
|
|
158
|
+
return "&";
|
|
159
|
+
}
|
|
160
|
+
jsxReadWord() {
|
|
161
|
+
let ch;
|
|
162
|
+
const start = this.state.pos;
|
|
163
|
+
do {
|
|
164
|
+
ch = this.input.charCodeAt(++this.state.pos);
|
|
165
|
+
} while ((0, _identifier.isIdentifierChar)(ch) || ch === 45);
|
|
166
|
+
this.finishToken(138, this.input.slice(start, this.state.pos));
|
|
167
|
+
}
|
|
168
|
+
jsxParseIdentifier() {
|
|
169
|
+
const node = this.startNode();
|
|
170
|
+
if (this.match(138)) {
|
|
171
|
+
node.name = this.state.value;
|
|
172
|
+
} else if ((0, _types.tokenIsKeyword)(this.state.type)) {
|
|
173
|
+
node.name = (0, _types.tokenLabelName)(this.state.type);
|
|
174
|
+
} else {
|
|
175
|
+
this.unexpected();
|
|
176
|
+
}
|
|
177
|
+
this.next();
|
|
178
|
+
return this.finishNode(node, "JSXIdentifier");
|
|
179
|
+
}
|
|
180
|
+
jsxParseNamespacedName() {
|
|
181
|
+
const startLoc = this.state.startLoc;
|
|
182
|
+
const name = this.jsxParseIdentifier();
|
|
183
|
+
if (!this.eat(14)) return name;
|
|
184
|
+
const node = this.startNodeAt(startLoc);
|
|
185
|
+
node.namespace = name;
|
|
186
|
+
node.name = this.jsxParseIdentifier();
|
|
187
|
+
return this.finishNode(node, "JSXNamespacedName");
|
|
188
|
+
}
|
|
189
|
+
jsxParseElementName() {
|
|
190
|
+
const startLoc = this.state.startLoc;
|
|
191
|
+
let node = this.jsxParseNamespacedName();
|
|
192
|
+
if (node.type === "JSXNamespacedName") {
|
|
193
|
+
return node;
|
|
194
|
+
}
|
|
195
|
+
while (this.eat(16)) {
|
|
196
|
+
const newNode = this.startNodeAt(startLoc);
|
|
197
|
+
newNode.object = node;
|
|
198
|
+
newNode.property = this.jsxParseIdentifier();
|
|
199
|
+
node = this.finishNode(newNode, "JSXMemberExpression");
|
|
200
|
+
}
|
|
201
|
+
return node;
|
|
202
|
+
}
|
|
203
|
+
jsxParseAttributeValue() {
|
|
204
|
+
let node;
|
|
205
|
+
switch (this.state.type) {
|
|
206
|
+
case 5:
|
|
207
|
+
node = this.startNode();
|
|
208
|
+
this.setContext(_context.types.brace);
|
|
209
|
+
this.next();
|
|
210
|
+
node = this.jsxParseExpressionContainer(node, _context.types.j_oTag);
|
|
211
|
+
if (node.expression.type === "JSXEmptyExpression") {
|
|
212
|
+
this.raise(JsxErrors.AttributeIsEmpty, {
|
|
213
|
+
at: node
|
|
214
|
+
});
|
|
215
|
+
}
|
|
216
|
+
return node;
|
|
217
|
+
case 140:
|
|
218
|
+
case 131:
|
|
219
|
+
return this.parseExprAtom();
|
|
220
|
+
default:
|
|
221
|
+
throw this.raise(JsxErrors.UnsupportedJsxValue, {
|
|
222
|
+
at: this.state.startLoc
|
|
223
|
+
});
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
jsxParseEmptyExpression() {
|
|
227
|
+
const node = this.startNodeAt(this.state.lastTokEndLoc);
|
|
228
|
+
return this.finishNodeAt(node, "JSXEmptyExpression", this.state.startLoc);
|
|
229
|
+
}
|
|
230
|
+
jsxParseSpreadChild(node) {
|
|
231
|
+
this.next();
|
|
232
|
+
node.expression = this.parseExpression();
|
|
233
|
+
this.setContext(_context.types.j_expr);
|
|
234
|
+
this.state.canStartJSXElement = true;
|
|
235
|
+
this.expect(8);
|
|
236
|
+
return this.finishNode(node, "JSXSpreadChild");
|
|
237
|
+
}
|
|
238
|
+
jsxParseExpressionContainer(node, previousContext) {
|
|
239
|
+
if (this.match(8)) {
|
|
240
|
+
node.expression = this.jsxParseEmptyExpression();
|
|
241
|
+
} else {
|
|
242
|
+
const expression = this.parseExpression();
|
|
243
|
+
;
|
|
244
|
+
node.expression = expression;
|
|
245
|
+
}
|
|
246
|
+
this.setContext(previousContext);
|
|
247
|
+
this.state.canStartJSXElement = true;
|
|
248
|
+
this.expect(8);
|
|
249
|
+
return this.finishNode(node, "JSXExpressionContainer");
|
|
250
|
+
}
|
|
251
|
+
jsxParseAttribute() {
|
|
252
|
+
const node = this.startNode();
|
|
253
|
+
if (this.match(5)) {
|
|
254
|
+
this.setContext(_context.types.brace);
|
|
255
|
+
this.next();
|
|
256
|
+
this.expect(21);
|
|
257
|
+
node.argument = this.parseMaybeAssignAllowIn();
|
|
258
|
+
this.setContext(_context.types.j_oTag);
|
|
259
|
+
this.state.canStartJSXElement = true;
|
|
260
|
+
this.expect(8);
|
|
261
|
+
return this.finishNode(node, "JSXSpreadAttribute");
|
|
262
|
+
}
|
|
263
|
+
node.name = this.jsxParseNamespacedName();
|
|
264
|
+
node.value = this.eat(29) ? this.jsxParseAttributeValue() : null;
|
|
265
|
+
return this.finishNode(node, "JSXAttribute");
|
|
266
|
+
}
|
|
267
|
+
jsxParseOpeningElementAt(startLoc) {
|
|
268
|
+
const node = this.startNodeAt(startLoc);
|
|
269
|
+
if (this.eat(141)) {
|
|
270
|
+
return this.finishNode(node, "JSXOpeningFragment");
|
|
271
|
+
}
|
|
272
|
+
node.name = this.jsxParseElementName();
|
|
273
|
+
return this.jsxParseOpeningElementAfterName(node);
|
|
274
|
+
}
|
|
275
|
+
jsxParseOpeningElementAfterName(node) {
|
|
276
|
+
const attributes = [];
|
|
277
|
+
while (!this.match(56) && !this.match(141)) {
|
|
278
|
+
attributes.push(this.jsxParseAttribute());
|
|
279
|
+
}
|
|
280
|
+
node.attributes = attributes;
|
|
281
|
+
node.selfClosing = this.eat(56);
|
|
282
|
+
this.expect(141);
|
|
283
|
+
return this.finishNode(node, "JSXOpeningElement");
|
|
284
|
+
}
|
|
285
|
+
jsxParseClosingElementAt(startLoc) {
|
|
286
|
+
const node = this.startNodeAt(startLoc);
|
|
287
|
+
if (this.eat(141)) {
|
|
288
|
+
return this.finishNode(node, "JSXClosingFragment");
|
|
289
|
+
}
|
|
290
|
+
node.name = this.jsxParseElementName();
|
|
291
|
+
this.expect(141);
|
|
292
|
+
return this.finishNode(node, "JSXClosingElement");
|
|
293
|
+
}
|
|
294
|
+
jsxParseElementAt(startLoc) {
|
|
295
|
+
const node = this.startNodeAt(startLoc);
|
|
296
|
+
const children = [];
|
|
297
|
+
const openingElement = this.jsxParseOpeningElementAt(startLoc);
|
|
298
|
+
let closingElement = null;
|
|
299
|
+
if (!openingElement.selfClosing) {
|
|
300
|
+
contents: for (;;) {
|
|
301
|
+
switch (this.state.type) {
|
|
302
|
+
case 140:
|
|
303
|
+
startLoc = this.state.startLoc;
|
|
304
|
+
this.next();
|
|
305
|
+
if (this.eat(56)) {
|
|
306
|
+
closingElement = this.jsxParseClosingElementAt(startLoc);
|
|
307
|
+
break contents;
|
|
308
|
+
}
|
|
309
|
+
children.push(this.jsxParseElementAt(startLoc));
|
|
310
|
+
break;
|
|
311
|
+
case 139:
|
|
312
|
+
children.push(this.parseExprAtom());
|
|
313
|
+
break;
|
|
314
|
+
case 5:
|
|
315
|
+
{
|
|
316
|
+
const node = this.startNode();
|
|
317
|
+
this.setContext(_context.types.brace);
|
|
318
|
+
this.next();
|
|
319
|
+
if (this.match(21)) {
|
|
320
|
+
children.push(this.jsxParseSpreadChild(node));
|
|
321
|
+
} else {
|
|
322
|
+
children.push(this.jsxParseExpressionContainer(node, _context.types.j_expr));
|
|
323
|
+
}
|
|
324
|
+
break;
|
|
325
|
+
}
|
|
326
|
+
default:
|
|
327
|
+
this.unexpected();
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
if (isFragment(openingElement) && !isFragment(closingElement) && closingElement !== null) {
|
|
331
|
+
this.raise(JsxErrors.MissingClosingTagFragment, {
|
|
332
|
+
at: closingElement
|
|
333
|
+
});
|
|
334
|
+
} else if (!isFragment(openingElement) && isFragment(closingElement)) {
|
|
335
|
+
this.raise(JsxErrors.MissingClosingTagElement, {
|
|
336
|
+
at: closingElement,
|
|
337
|
+
openingTagName: getQualifiedJSXName(openingElement.name)
|
|
338
|
+
});
|
|
339
|
+
} else if (!isFragment(openingElement) && !isFragment(closingElement)) {
|
|
340
|
+
if (getQualifiedJSXName(closingElement.name) !== getQualifiedJSXName(openingElement.name)) {
|
|
341
|
+
this.raise(JsxErrors.MissingClosingTagElement, {
|
|
342
|
+
at: closingElement,
|
|
343
|
+
openingTagName: getQualifiedJSXName(openingElement.name)
|
|
344
|
+
});
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
if (isFragment(openingElement)) {
|
|
349
|
+
node.openingFragment = openingElement;
|
|
350
|
+
node.closingFragment = closingElement;
|
|
351
|
+
} else {
|
|
352
|
+
node.openingElement = openingElement;
|
|
353
|
+
node.closingElement = closingElement;
|
|
354
|
+
}
|
|
355
|
+
node.children = children;
|
|
356
|
+
if (this.match(47)) {
|
|
357
|
+
throw this.raise(JsxErrors.UnwrappedAdjacentJSXElements, {
|
|
358
|
+
at: this.state.startLoc
|
|
359
|
+
});
|
|
360
|
+
}
|
|
361
|
+
return isFragment(openingElement) ? this.finishNode(node, "JSXFragment") : this.finishNode(node, "JSXElement");
|
|
362
|
+
}
|
|
363
|
+
jsxParseElement() {
|
|
364
|
+
const startLoc = this.state.startLoc;
|
|
365
|
+
this.next();
|
|
366
|
+
return this.jsxParseElementAt(startLoc);
|
|
367
|
+
}
|
|
368
|
+
setContext(newContext) {
|
|
369
|
+
const {
|
|
370
|
+
context
|
|
371
|
+
} = this.state;
|
|
372
|
+
context[context.length - 1] = newContext;
|
|
373
|
+
}
|
|
374
|
+
parseExprAtom(refExpressionErrors) {
|
|
375
|
+
if (this.match(139)) {
|
|
376
|
+
return this.parseLiteral(this.state.value, "JSXText");
|
|
377
|
+
} else if (this.match(140)) {
|
|
378
|
+
return this.jsxParseElement();
|
|
379
|
+
} else if (this.match(47) && this.input.charCodeAt(this.state.pos) !== 33) {
|
|
380
|
+
this.replaceToken(140);
|
|
381
|
+
return this.jsxParseElement();
|
|
382
|
+
} else {
|
|
383
|
+
return super.parseExprAtom(refExpressionErrors);
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
skipSpace() {
|
|
387
|
+
const curContext = this.curContext();
|
|
388
|
+
if (!curContext.preserveSpace) super.skipSpace();
|
|
389
|
+
}
|
|
390
|
+
getTokenFromCode(code) {
|
|
391
|
+
const context = this.curContext();
|
|
392
|
+
if (context === _context.types.j_expr) {
|
|
393
|
+
this.jsxReadToken();
|
|
394
|
+
return;
|
|
395
|
+
}
|
|
396
|
+
if (context === _context.types.j_oTag || context === _context.types.j_cTag) {
|
|
397
|
+
if ((0, _identifier.isIdentifierStart)(code)) {
|
|
398
|
+
this.jsxReadWord();
|
|
399
|
+
return;
|
|
400
|
+
}
|
|
401
|
+
if (code === 62) {
|
|
402
|
+
++this.state.pos;
|
|
403
|
+
this.finishToken(141);
|
|
404
|
+
return;
|
|
405
|
+
}
|
|
406
|
+
if ((code === 34 || code === 39) && context === _context.types.j_oTag) {
|
|
407
|
+
this.jsxReadString(code);
|
|
408
|
+
return;
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
if (code === 60 && this.state.canStartJSXElement && this.input.charCodeAt(this.state.pos + 1) !== 33) {
|
|
412
|
+
++this.state.pos;
|
|
413
|
+
this.finishToken(140);
|
|
414
|
+
return;
|
|
415
|
+
}
|
|
416
|
+
super.getTokenFromCode(code);
|
|
417
|
+
}
|
|
418
|
+
updateContext(prevType) {
|
|
419
|
+
const {
|
|
420
|
+
context,
|
|
421
|
+
type
|
|
422
|
+
} = this.state;
|
|
423
|
+
if (type === 56 && prevType === 140) {
|
|
424
|
+
context.splice(-2, 2, _context.types.j_cTag);
|
|
425
|
+
this.state.canStartJSXElement = false;
|
|
426
|
+
} else if (type === 140) {
|
|
427
|
+
context.push(_context.types.j_oTag);
|
|
428
|
+
} else if (type === 141) {
|
|
429
|
+
const out = context[context.length - 1];
|
|
430
|
+
if (out === _context.types.j_oTag && prevType === 56 || out === _context.types.j_cTag) {
|
|
431
|
+
context.pop();
|
|
432
|
+
this.state.canStartJSXElement = context[context.length - 1] === _context.types.j_expr;
|
|
433
|
+
} else {
|
|
434
|
+
this.setContext(_context.types.j_expr);
|
|
435
|
+
this.state.canStartJSXElement = true;
|
|
436
|
+
}
|
|
437
|
+
} else {
|
|
438
|
+
this.state.canStartJSXElement = (0, _types.tokenComesBeforeExpression)(type);
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
};
|
|
442
|
+
exports.default = _default;
|
|
443
|
+
|
|
444
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_xhtml","require","_types","_context","_identifier","_whitespace","_parseError","JsxErrors","ParseErrorEnum","AttributeIsEmpty","MissingClosingTagElement","openingTagName","MissingClosingTagFragment","UnexpectedSequenceExpression","UnexpectedToken","unexpected","HTMLEntity","UnsupportedJsxValue","UnterminatedJsxContent","UnwrappedAdjacentJSXElements","isFragment","object","type","getQualifiedJSXName","name","namespace","property","Error","_default","superClass","JSXParserMixin","jsxReadToken","out","chunkStart","state","pos","length","raise","at","startLoc","ch","input","charCodeAt","start","canStartJSXElement","finishToken","getTokenFromCode","slice","jsxReadEntity","isNewLine","jsxReadNewLine","normalizeCRLF","String","fromCharCode","curLine","lineStart","jsxReadString","quote","Errors","UnterminatedString","startPos","codePointAtPos","radix","codePoint","readInt","undefined","fromCodePoint","count","semi","desc","entity","XHTMLEntities","jsxReadWord","isIdentifierChar","jsxParseIdentifier","node","startNode","match","value","tokenIsKeyword","tokenLabelName","next","finishNode","jsxParseNamespacedName","eat","startNodeAt","jsxParseElementName","newNode","jsxParseAttributeValue","setContext","tc","brace","jsxParseExpressionContainer","j_oTag","expression","parseExprAtom","jsxParseEmptyExpression","lastTokEndLoc","finishNodeAt","jsxParseSpreadChild","parseExpression","j_expr","expect","previousContext","jsxParseAttribute","argument","parseMaybeAssignAllowIn","jsxParseOpeningElementAt","jsxParseOpeningElementAfterName","attributes","push","selfClosing","jsxParseClosingElementAt","jsxParseElementAt","children","openingElement","closingElement","contents","openingFragment","closingFragment","jsxParseElement","newContext","context","refExpressionErrors","parseLiteral","replaceToken","skipSpace","curContext","preserveSpace","code","j_cTag","isIdentifierStart","updateContext","prevType","splice","pop","tokenComesBeforeExpression","exports","default"],"sources":["../../../src/plugins/jsx/index.ts"],"sourcesContent":["import * as charCodes from \"charcodes\";\n\nimport XHTMLEntities from \"./xhtml\";\nimport type Parser from \"../../parser\";\nimport type { ExpressionErrors } from \"../../parser/util\";\nimport {\n tokenComesBeforeExpression,\n tokenIsKeyword,\n tokenLabelName,\n type TokenType,\n tt,\n} from \"../../tokenizer/types\";\nimport type { TokContext } from \"../../tokenizer/context\";\nimport { types as tc } from \"../../tokenizer/context\";\nimport type * as N from \"../../types\";\nimport { isIdentifierChar, isIdentifierStart } from \"../../util/identifier\";\nimport type { Position } from \"../../util/location\";\nimport { isNewLine } from \"../../util/whitespace\";\nimport { Errors, ParseErrorEnum } from \"../../parse-error\";\nimport type { Undone } from \"../../parser/node\";\n\n/* eslint sort-keys: \"error\" */\nconst JsxErrors = ParseErrorEnum`jsx`({\n AttributeIsEmpty:\n \"JSX attributes must only be assigned a non-empty expression.\",\n MissingClosingTagElement: ({ openingTagName }: { openingTagName: string }) =>\n `Expected corresponding JSX closing tag for <${openingTagName}>.`,\n MissingClosingTagFragment: \"Expected corresponding JSX closing tag for <>.\",\n UnexpectedSequenceExpression:\n \"Sequence expressions cannot be directly nested inside JSX. Did you mean to wrap it in parentheses (...)?\",\n // FIXME: Unify with Errors.UnexpectedToken\n UnexpectedToken: ({\n unexpected,\n HTMLEntity,\n }: {\n unexpected: string;\n HTMLEntity: string;\n }) =>\n `Unexpected token \\`${unexpected}\\`. Did you mean \\`${HTMLEntity}\\` or \\`{'${unexpected}'}\\`?`,\n UnsupportedJsxValue:\n \"JSX value should be either an expression or a quoted JSX text.\",\n UnterminatedJsxContent: \"Unterminated JSX contents.\",\n UnwrappedAdjacentJSXElements:\n \"Adjacent JSX elements must be wrapped in an enclosing tag. Did you want a JSX fragment <>...</>?\",\n});\n\n/* eslint-disable sort-keys */\n\nfunction isFragment(object?: N.JSXElement | null): boolean {\n return object\n ? object.type === \"JSXOpeningFragment\" ||\n object.type === \"JSXClosingFragment\"\n : false;\n}\n\n// Transforms JSX element name to string.\n\nfunction getQualifiedJSXName(\n object: N.JSXIdentifier | N.JSXNamespacedName | N.JSXMemberExpression,\n): string {\n if (object.type === \"JSXIdentifier\") {\n return object.name;\n }\n\n if (object.type === \"JSXNamespacedName\") {\n return object.namespace.name + \":\" + object.name.name;\n }\n\n if (object.type === \"JSXMemberExpression\") {\n return (\n getQualifiedJSXName(object.object) +\n \".\" +\n getQualifiedJSXName(object.property)\n );\n }\n\n // istanbul ignore next\n throw new Error(\"Node had unexpected type: \" + object.type);\n}\n\nexport interface IJSXParserMixin {\n jsxParseOpeningElementAfterName(\n node: N.JSXOpeningElement,\n ): N.JSXOpeningElement;\n}\n\nexport default (superClass: typeof Parser) =>\n class JSXParserMixin extends superClass implements Parser, IJSXParserMixin {\n // Reads inline JSX contents token.\n\n jsxReadToken(): void {\n let out = \"\";\n let chunkStart = this.state.pos;\n for (;;) {\n if (this.state.pos >= this.length) {\n throw this.raise(JsxErrors.UnterminatedJsxContent, {\n at: this.state.startLoc,\n });\n }\n\n const ch = this.input.charCodeAt(this.state.pos);\n\n switch (ch) {\n case charCodes.lessThan:\n case charCodes.leftCurlyBrace:\n if (this.state.pos === this.state.start) {\n if (ch === charCodes.lessThan && this.state.canStartJSXElement) {\n ++this.state.pos;\n this.finishToken(tt.jsxTagStart);\n } else {\n super.getTokenFromCode(ch);\n }\n return;\n }\n out += this.input.slice(chunkStart, this.state.pos);\n this.finishToken(tt.jsxText, out);\n return;\n\n case charCodes.ampersand:\n out += this.input.slice(chunkStart, this.state.pos);\n out += this.jsxReadEntity();\n chunkStart = this.state.pos;\n break;\n\n case charCodes.greaterThan:\n case charCodes.rightCurlyBrace:\n if (process.env.BABEL_8_BREAKING) {\n this.raise(JsxErrors.UnexpectedToken, {\n at: this.state.curPosition(),\n unexpected: this.input[this.state.pos],\n HTMLEntity:\n ch === charCodes.rightCurlyBrace ? \"}\" : \">\",\n });\n }\n /* falls through */\n\n default:\n if (isNewLine(ch)) {\n out += this.input.slice(chunkStart, this.state.pos);\n out += this.jsxReadNewLine(true);\n chunkStart = this.state.pos;\n } else {\n ++this.state.pos;\n }\n }\n }\n }\n\n jsxReadNewLine(normalizeCRLF: boolean): string {\n const ch = this.input.charCodeAt(this.state.pos);\n let out;\n ++this.state.pos;\n if (\n ch === charCodes.carriageReturn &&\n this.input.charCodeAt(this.state.pos) === charCodes.lineFeed\n ) {\n ++this.state.pos;\n out = normalizeCRLF ? \"\\n\" : \"\\r\\n\";\n } else {\n out = String.fromCharCode(ch);\n }\n ++this.state.curLine;\n this.state.lineStart = this.state.pos;\n\n return out;\n }\n\n jsxReadString(quote: number): void {\n let out = \"\";\n let chunkStart = ++this.state.pos;\n for (;;) {\n if (this.state.pos >= this.length) {\n throw this.raise(Errors.UnterminatedString, {\n at: this.state.startLoc,\n });\n }\n\n const ch = this.input.charCodeAt(this.state.pos);\n if (ch === quote) break;\n if (ch === charCodes.ampersand) {\n out += this.input.slice(chunkStart, this.state.pos);\n out += this.jsxReadEntity();\n chunkStart = this.state.pos;\n } else if (isNewLine(ch)) {\n out += this.input.slice(chunkStart, this.state.pos);\n out += this.jsxReadNewLine(false);\n chunkStart = this.state.pos;\n } else {\n ++this.state.pos;\n }\n }\n out += this.input.slice(chunkStart, this.state.pos++);\n this.finishToken(tt.string, out);\n }\n\n jsxReadEntity(): string {\n const startPos = ++this.state.pos;\n if (this.codePointAtPos(this.state.pos) === charCodes.numberSign) {\n ++this.state.pos;\n\n let radix = 10;\n if (this.codePointAtPos(this.state.pos) === charCodes.lowercaseX) {\n radix = 16;\n ++this.state.pos;\n }\n\n const codePoint = this.readInt(\n radix,\n /* len */ undefined,\n /* forceLen */ false,\n /* allowNumSeparator */ \"bail\",\n );\n if (\n codePoint !== null &&\n this.codePointAtPos(this.state.pos) === charCodes.semicolon\n ) {\n ++this.state.pos;\n return String.fromCodePoint(codePoint);\n }\n } else {\n let count = 0;\n let semi = false;\n while (\n count++ < 10 &&\n this.state.pos < this.length &&\n !(semi = this.codePointAtPos(this.state.pos) == charCodes.semicolon)\n ) {\n ++this.state.pos;\n }\n\n if (semi) {\n const desc = this.input.slice(startPos, this.state.pos);\n const entity = XHTMLEntities[desc];\n ++this.state.pos;\n\n if (entity) {\n return entity;\n }\n }\n }\n\n // Not a valid entity\n this.state.pos = startPos;\n return \"&\";\n }\n\n // Read a JSX identifier (valid tag or attribute name).\n //\n // Optimized version since JSX identifiers can\"t contain\n // escape characters and so can be read as single slice.\n // Also assumes that first character was already checked\n // by isIdentifierStart in readToken.\n\n jsxReadWord(): void {\n let ch;\n const start = this.state.pos;\n do {\n ch = this.input.charCodeAt(++this.state.pos);\n } while (isIdentifierChar(ch) || ch === charCodes.dash);\n this.finishToken(tt.jsxName, this.input.slice(start, this.state.pos));\n }\n\n // Parse next token as JSX identifier\n\n jsxParseIdentifier(): N.JSXIdentifier {\n const node = this.startNode();\n if (this.match(tt.jsxName)) {\n node.name = this.state.value;\n } else if (tokenIsKeyword(this.state.type)) {\n node.name = tokenLabelName(this.state.type);\n } else {\n this.unexpected();\n }\n this.next();\n return this.finishNode(node, \"JSXIdentifier\");\n }\n\n // Parse namespaced identifier.\n\n jsxParseNamespacedName(): N.JSXNamespacedName {\n const startLoc = this.state.startLoc;\n const name = this.jsxParseIdentifier();\n if (!this.eat(tt.colon)) return name;\n\n const node = this.startNodeAt(startLoc);\n node.namespace = name;\n node.name = this.jsxParseIdentifier();\n return this.finishNode(node, \"JSXNamespacedName\");\n }\n\n // Parses element name in any form - namespaced, member\n // or single identifier.\n\n jsxParseElementName():\n | N.JSXIdentifier\n | N.JSXNamespacedName\n | N.JSXMemberExpression {\n const startLoc = this.state.startLoc;\n let node = this.jsxParseNamespacedName();\n if (node.type === \"JSXNamespacedName\") {\n return node;\n }\n while (this.eat(tt.dot)) {\n const newNode = this.startNodeAt(startLoc);\n newNode.object = node;\n newNode.property = this.jsxParseIdentifier();\n node = this.finishNode(newNode, \"JSXMemberExpression\");\n }\n return node;\n }\n\n // Parses any type of JSX attribute value.\n\n jsxParseAttributeValue(): N.Expression {\n let node;\n switch (this.state.type) {\n case tt.braceL:\n node = this.startNode();\n this.setContext(tc.brace);\n this.next();\n node = this.jsxParseExpressionContainer(node, tc.j_oTag);\n if (node.expression.type === \"JSXEmptyExpression\") {\n this.raise(JsxErrors.AttributeIsEmpty, { at: node });\n }\n return node;\n\n case tt.jsxTagStart:\n case tt.string:\n return this.parseExprAtom();\n\n default:\n throw this.raise(JsxErrors.UnsupportedJsxValue, {\n at: this.state.startLoc,\n });\n }\n }\n\n // JSXEmptyExpression is unique type since it doesn't actually parse anything,\n // and so it should start at the end of last read token (left brace) and finish\n // at the beginning of the next one (right brace).\n\n jsxParseEmptyExpression(): N.JSXEmptyExpression {\n const node = this.startNodeAt(this.state.lastTokEndLoc);\n return this.finishNodeAt(node, \"JSXEmptyExpression\", this.state.startLoc);\n }\n\n // Parse JSX spread child\n\n jsxParseSpreadChild(node: Undone<N.JSXSpreadChild>): N.JSXSpreadChild {\n this.next(); // ellipsis\n node.expression = this.parseExpression();\n this.setContext(tc.j_expr);\n this.state.canStartJSXElement = true;\n this.expect(tt.braceR);\n\n return this.finishNode(node, \"JSXSpreadChild\");\n }\n\n // Parses JSX expression enclosed into curly brackets.\n\n jsxParseExpressionContainer(\n node: Undone<N.JSXExpressionContainer>,\n previousContext: TokContext,\n ): N.JSXExpressionContainer {\n if (this.match(tt.braceR)) {\n node.expression = this.jsxParseEmptyExpression();\n } else {\n const expression = this.parseExpression();\n\n if (process.env.BABEL_8_BREAKING) {\n if (\n expression.type === \"SequenceExpression\" &&\n !expression.extra?.parenthesized\n ) {\n this.raise(JsxErrors.UnexpectedSequenceExpression, {\n at: expression.expressions[1],\n });\n }\n }\n\n node.expression = expression;\n }\n this.setContext(previousContext);\n this.state.canStartJSXElement = true;\n this.expect(tt.braceR);\n\n return this.finishNode(node, \"JSXExpressionContainer\");\n }\n\n // Parses following JSX attribute name-value pair.\n\n jsxParseAttribute(): N.JSXAttribute {\n const node = this.startNode();\n if (this.match(tt.braceL)) {\n this.setContext(tc.brace);\n this.next();\n this.expect(tt.ellipsis);\n node.argument = this.parseMaybeAssignAllowIn();\n this.setContext(tc.j_oTag);\n this.state.canStartJSXElement = true;\n this.expect(tt.braceR);\n return this.finishNode(node, \"JSXSpreadAttribute\");\n }\n node.name = this.jsxParseNamespacedName();\n node.value = this.eat(tt.eq) ? this.jsxParseAttributeValue() : null;\n return this.finishNode(node, \"JSXAttribute\");\n }\n\n // Parses JSX opening tag starting after \"<\".\n\n jsxParseOpeningElementAt(startLoc: Position): N.JSXOpeningElement {\n const node = this.startNodeAt<N.JSXOpeningElement | N.JSXOpeningFragment>(\n startLoc,\n );\n if (this.eat(tt.jsxTagEnd)) {\n // @ts-expect-error migrate to Babel types\n return this.finishNode(node, \"JSXOpeningFragment\");\n }\n node.name = this.jsxParseElementName();\n return this.jsxParseOpeningElementAfterName(\n node as Undone<N.JSXOpeningElement>,\n );\n }\n\n jsxParseOpeningElementAfterName(\n node: Undone<N.JSXOpeningElement>,\n ): N.JSXOpeningElement {\n const attributes: N.JSXAttribute[] = [];\n while (!this.match(tt.slash) && !this.match(tt.jsxTagEnd)) {\n attributes.push(this.jsxParseAttribute());\n }\n node.attributes = attributes;\n node.selfClosing = this.eat(tt.slash);\n this.expect(tt.jsxTagEnd);\n return this.finishNode(node, \"JSXOpeningElement\");\n }\n\n // Parses JSX closing tag starting after \"</\".\n\n jsxParseClosingElementAt(startLoc: Position): N.JSXClosingElement {\n const node = this.startNodeAt(startLoc);\n if (this.eat(tt.jsxTagEnd)) {\n return this.finishNode(node, \"JSXClosingFragment\");\n }\n node.name = this.jsxParseElementName();\n this.expect(tt.jsxTagEnd);\n return this.finishNode(node, \"JSXClosingElement\");\n }\n\n // Parses entire JSX element, including it\"s opening tag\n // (starting after \"<\"), attributes, contents and closing tag.\n\n jsxParseElementAt(startLoc: Position): N.JSXElement {\n const node = this.startNodeAt(startLoc);\n const children = [];\n const openingElement = this.jsxParseOpeningElementAt(startLoc);\n let closingElement = null;\n\n if (!openingElement.selfClosing) {\n contents: for (;;) {\n switch (this.state.type) {\n case tt.jsxTagStart:\n startLoc = this.state.startLoc;\n this.next();\n if (this.eat(tt.slash)) {\n closingElement = this.jsxParseClosingElementAt(startLoc);\n break contents;\n }\n children.push(this.jsxParseElementAt(startLoc));\n break;\n\n case tt.jsxText:\n children.push(this.parseExprAtom());\n break;\n\n case tt.braceL: {\n const node = this.startNode<\n N.JSXSpreadChild | N.JSXExpressionContainer\n >();\n this.setContext(tc.brace);\n this.next();\n if (this.match(tt.ellipsis)) {\n children.push(this.jsxParseSpreadChild(node));\n } else {\n children.push(\n this.jsxParseExpressionContainer(node, tc.j_expr),\n );\n }\n\n break;\n }\n // istanbul ignore next - should never happen\n default:\n this.unexpected();\n }\n }\n\n if (\n isFragment(openingElement) &&\n !isFragment(closingElement) &&\n closingElement !== null\n ) {\n this.raise(JsxErrors.MissingClosingTagFragment, {\n at: closingElement,\n });\n } else if (!isFragment(openingElement) && isFragment(closingElement)) {\n this.raise(JsxErrors.MissingClosingTagElement, {\n at: closingElement,\n openingTagName: getQualifiedJSXName(openingElement.name),\n });\n } else if (!isFragment(openingElement) && !isFragment(closingElement)) {\n if (\n getQualifiedJSXName(closingElement.name) !==\n getQualifiedJSXName(openingElement.name)\n ) {\n this.raise(JsxErrors.MissingClosingTagElement, {\n at: closingElement,\n openingTagName: getQualifiedJSXName(openingElement.name),\n });\n }\n }\n }\n\n if (isFragment(openingElement)) {\n node.openingFragment = openingElement;\n node.closingFragment = closingElement;\n } else {\n node.openingElement = openingElement;\n node.closingElement = closingElement;\n }\n node.children = children;\n if (this.match(tt.lt)) {\n throw this.raise(JsxErrors.UnwrappedAdjacentJSXElements, {\n at: this.state.startLoc,\n });\n }\n\n return isFragment(openingElement)\n ? this.finishNode(node, \"JSXFragment\")\n : this.finishNode(node, \"JSXElement\");\n }\n\n // Parses entire JSX element from current position.\n\n jsxParseElement(): N.JSXElement {\n const startLoc = this.state.startLoc;\n this.next();\n return this.jsxParseElementAt(startLoc);\n }\n\n setContext(newContext: TokContext) {\n const { context } = this.state;\n context[context.length - 1] = newContext;\n }\n\n // ==================================\n // Overrides\n // ==================================\n\n parseExprAtom(refExpressionErrors?: ExpressionErrors | null): N.Expression {\n if (this.match(tt.jsxText)) {\n return this.parseLiteral(this.state.value, \"JSXText\");\n } else if (this.match(tt.jsxTagStart)) {\n return this.jsxParseElement();\n } else if (\n this.match(tt.lt) &&\n this.input.charCodeAt(this.state.pos) !== charCodes.exclamationMark\n ) {\n // In case we encounter an lt token here it will always be the start of\n // jsx as the lt sign is not allowed in places that expect an expression\n this.replaceToken(tt.jsxTagStart);\n return this.jsxParseElement();\n } else {\n return super.parseExprAtom(refExpressionErrors);\n }\n }\n\n skipSpace() {\n const curContext = this.curContext();\n if (!curContext.preserveSpace) super.skipSpace();\n }\n\n getTokenFromCode(code: number): void {\n const context = this.curContext();\n\n if (context === tc.j_expr) {\n this.jsxReadToken();\n return;\n }\n\n if (context === tc.j_oTag || context === tc.j_cTag) {\n if (isIdentifierStart(code)) {\n this.jsxReadWord();\n return;\n }\n\n if (code === charCodes.greaterThan) {\n ++this.state.pos;\n this.finishToken(tt.jsxTagEnd);\n return;\n }\n\n if (\n (code === charCodes.quotationMark || code === charCodes.apostrophe) &&\n context === tc.j_oTag\n ) {\n this.jsxReadString(code);\n return;\n }\n }\n\n if (\n code === charCodes.lessThan &&\n this.state.canStartJSXElement &&\n this.input.charCodeAt(this.state.pos + 1) !== charCodes.exclamationMark\n ) {\n ++this.state.pos;\n this.finishToken(tt.jsxTagStart);\n return;\n }\n\n super.getTokenFromCode(code);\n }\n\n updateContext(prevType: TokenType): void {\n const { context, type } = this.state;\n if (type === tt.slash && prevType === tt.jsxTagStart) {\n // do not consider JSX expr -> JSX open tag -> ... anymore\n // reconsider as closing tag context\n context.splice(-2, 2, tc.j_cTag);\n this.state.canStartJSXElement = false;\n } else if (type === tt.jsxTagStart) {\n // start opening tag context\n context.push(tc.j_oTag);\n } else if (type === tt.jsxTagEnd) {\n const out = context[context.length - 1];\n if ((out === tc.j_oTag && prevType === tt.slash) || out === tc.j_cTag) {\n context.pop();\n this.state.canStartJSXElement =\n context[context.length - 1] === tc.j_expr;\n } else {\n this.setContext(tc.j_expr);\n this.state.canStartJSXElement = true;\n }\n } else {\n this.state.canStartJSXElement = tokenComesBeforeExpression(type);\n }\n }\n };\n"],"mappings":";;;;;;AAEA,IAAAA,MAAA,GAAAC,OAAA;AAGA,IAAAC,MAAA,GAAAD,OAAA;AAQA,IAAAE,QAAA,GAAAF,OAAA;AAEA,IAAAG,WAAA,GAAAH,OAAA;AAEA,IAAAI,WAAA,GAAAJ,OAAA;AACA,IAAAK,WAAA,GAAAL,OAAA;AAIA,MAAMM,SAAS,GAAG,IAAAC,0BAAc,CAAC,KAAI,CAAC;EACpCC,gBAAgB,EACd,8DAA8D;EAChEC,wBAAwB,EAAEA,CAAC;IAAEC;EAA2C,CAAC,KACtE,+CAA8CA,cAAe,IAAG;EACnEC,yBAAyB,EAAE,gDAAgD;EAC3EC,4BAA4B,EAC1B,0GAA0G;EAE5GC,eAAe,EAAEA,CAAC;IAChBC,UAAU;IACVC;EAIF,CAAC,KACE,sBAAqBD,UAAW,sBAAqBC,UAAW,aAAYD,UAAW,OAAM;EAChGE,mBAAmB,EACjB,gEAAgE;EAClEC,sBAAsB,EAAE,4BAA4B;EACpDC,4BAA4B,EAC1B;AACJ,CAAC,CAAC;AAIF,SAASC,UAAUA,CAACC,MAA4B,EAAW;EACzD,OAAOA,MAAM,GACTA,MAAM,CAACC,IAAI,KAAK,oBAAoB,IAClCD,MAAM,CAACC,IAAI,KAAK,oBAAoB,GACtC,KAAK;AACX;AAIA,SAASC,mBAAmBA,CAC1BF,MAAqE,EAC7D;EACR,IAAIA,MAAM,CAACC,IAAI,KAAK,eAAe,EAAE;IACnC,OAAOD,MAAM,CAACG,IAAI;EACpB;EAEA,IAAIH,MAAM,CAACC,IAAI,KAAK,mBAAmB,EAAE;IACvC,OAAOD,MAAM,CAACI,SAAS,CAACD,IAAI,GAAG,GAAG,GAAGH,MAAM,CAACG,IAAI,CAACA,IAAI;EACvD;EAEA,IAAIH,MAAM,CAACC,IAAI,KAAK,qBAAqB,EAAE;IACzC,OACEC,mBAAmB,CAACF,MAAM,CAACA,MAAM,CAAC,GAClC,GAAG,GACHE,mBAAmB,CAACF,MAAM,CAACK,QAAQ,CAAC;EAExC;EAGA,MAAM,IAAIC,KAAK,CAAC,4BAA4B,GAAGN,MAAM,CAACC,IAAI,CAAC;AAC7D;AAAC,IAAAM,QAAA,GAQeC,UAAyB,IACvC,MAAMC,cAAc,SAASD,UAAU,CAAoC;EAGzEE,YAAYA,CAAA,EAAS;IACnB,IAAIC,GAAG,GAAG,EAAE;IACZ,IAAIC,UAAU,GAAG,IAAI,CAACC,KAAK,CAACC,GAAG;IAC/B,SAAS;MACP,IAAI,IAAI,CAACD,KAAK,CAACC,GAAG,IAAI,IAAI,CAACC,MAAM,EAAE;QACjC,MAAM,IAAI,CAACC,KAAK,CAAC9B,SAAS,CAACW,sBAAsB,EAAE;UACjDoB,EAAE,EAAE,IAAI,CAACJ,KAAK,CAACK;QACjB,CAAC,CAAC;MACJ;MAEA,MAAMC,EAAE,GAAG,IAAI,CAACC,KAAK,CAACC,UAAU,CAAC,IAAI,CAACR,KAAK,CAACC,GAAG,CAAC;MAEhD,QAAQK,EAAE;QACR;QACA;UACE,IAAI,IAAI,CAACN,KAAK,CAACC,GAAG,KAAK,IAAI,CAACD,KAAK,CAACS,KAAK,EAAE;YACvC,IAAIH,EAAE,OAAuB,IAAI,IAAI,CAACN,KAAK,CAACU,kBAAkB,EAAE;cAC9D,EAAE,IAAI,CAACV,KAAK,CAACC,GAAG;cAChB,IAAI,CAACU,WAAW,IAAe,CAAC;YAClC,CAAC,MAAM;cACL,KAAK,CAACC,gBAAgB,CAACN,EAAE,CAAC;YAC5B;YACA;UACF;UACAR,GAAG,IAAI,IAAI,CAACS,KAAK,CAACM,KAAK,CAACd,UAAU,EAAE,IAAI,CAACC,KAAK,CAACC,GAAG,CAAC;UACnD,IAAI,CAACU,WAAW,MAAab,GAAG,CAAC;UACjC;QAEF;UACEA,GAAG,IAAI,IAAI,CAACS,KAAK,CAACM,KAAK,CAACd,UAAU,EAAE,IAAI,CAACC,KAAK,CAACC,GAAG,CAAC;UACnDH,GAAG,IAAI,IAAI,CAACgB,aAAa,CAAC,CAAC;UAC3Bf,UAAU,GAAG,IAAI,CAACC,KAAK,CAACC,GAAG;UAC3B;QAEF;QACA;UAAA;QAWA;UACE,IAAI,IAAAc,qBAAS,EAACT,EAAE,CAAC,EAAE;YACjBR,GAAG,IAAI,IAAI,CAACS,KAAK,CAACM,KAAK,CAACd,UAAU,EAAE,IAAI,CAACC,KAAK,CAACC,GAAG,CAAC;YACnDH,GAAG,IAAI,IAAI,CAACkB,cAAc,CAAC,IAAI,CAAC;YAChCjB,UAAU,GAAG,IAAI,CAACC,KAAK,CAACC,GAAG;UAC7B,CAAC,MAAM;YACL,EAAE,IAAI,CAACD,KAAK,CAACC,GAAG;UAClB;MACJ;IACF;EACF;EAEAe,cAAcA,CAACC,aAAsB,EAAU;IAC7C,MAAMX,EAAE,GAAG,IAAI,CAACC,KAAK,CAACC,UAAU,CAAC,IAAI,CAACR,KAAK,CAACC,GAAG,CAAC;IAChD,IAAIH,GAAG;IACP,EAAE,IAAI,CAACE,KAAK,CAACC,GAAG;IAChB,IACEK,EAAE,OAA6B,IAC/B,IAAI,CAACC,KAAK,CAACC,UAAU,CAAC,IAAI,CAACR,KAAK,CAACC,GAAG,CAAC,OAAuB,EAC5D;MACA,EAAE,IAAI,CAACD,KAAK,CAACC,GAAG;MAChBH,GAAG,GAAGmB,aAAa,GAAG,IAAI,GAAG,MAAM;IACrC,CAAC,MAAM;MACLnB,GAAG,GAAGoB,MAAM,CAACC,YAAY,CAACb,EAAE,CAAC;IAC/B;IACA,EAAE,IAAI,CAACN,KAAK,CAACoB,OAAO;IACpB,IAAI,CAACpB,KAAK,CAACqB,SAAS,GAAG,IAAI,CAACrB,KAAK,CAACC,GAAG;IAErC,OAAOH,GAAG;EACZ;EAEAwB,aAAaA,CAACC,KAAa,EAAQ;IACjC,IAAIzB,GAAG,GAAG,EAAE;IACZ,IAAIC,UAAU,GAAG,EAAE,IAAI,CAACC,KAAK,CAACC,GAAG;IACjC,SAAS;MACP,IAAI,IAAI,CAACD,KAAK,CAACC,GAAG,IAAI,IAAI,CAACC,MAAM,EAAE;QACjC,MAAM,IAAI,CAACC,KAAK,CAACqB,kBAAM,CAACC,kBAAkB,EAAE;UAC1CrB,EAAE,EAAE,IAAI,CAACJ,KAAK,CAACK;QACjB,CAAC,CAAC;MACJ;MAEA,MAAMC,EAAE,GAAG,IAAI,CAACC,KAAK,CAACC,UAAU,CAAC,IAAI,CAACR,KAAK,CAACC,GAAG,CAAC;MAChD,IAAIK,EAAE,KAAKiB,KAAK,EAAE;MAClB,IAAIjB,EAAE,OAAwB,EAAE;QAC9BR,GAAG,IAAI,IAAI,CAACS,KAAK,CAACM,KAAK,CAACd,UAAU,EAAE,IAAI,CAACC,KAAK,CAACC,GAAG,CAAC;QACnDH,GAAG,IAAI,IAAI,CAACgB,aAAa,CAAC,CAAC;QAC3Bf,UAAU,GAAG,IAAI,CAACC,KAAK,CAACC,GAAG;MAC7B,CAAC,MAAM,IAAI,IAAAc,qBAAS,EAACT,EAAE,CAAC,EAAE;QACxBR,GAAG,IAAI,IAAI,CAACS,KAAK,CAACM,KAAK,CAACd,UAAU,EAAE,IAAI,CAACC,KAAK,CAACC,GAAG,CAAC;QACnDH,GAAG,IAAI,IAAI,CAACkB,cAAc,CAAC,KAAK,CAAC;QACjCjB,UAAU,GAAG,IAAI,CAACC,KAAK,CAACC,GAAG;MAC7B,CAAC,MAAM;QACL,EAAE,IAAI,CAACD,KAAK,CAACC,GAAG;MAClB;IACF;IACAH,GAAG,IAAI,IAAI,CAACS,KAAK,CAACM,KAAK,CAACd,UAAU,EAAE,IAAI,CAACC,KAAK,CAACC,GAAG,EAAE,CAAC;IACrD,IAAI,CAACU,WAAW,MAAYb,GAAG,CAAC;EAClC;EAEAgB,aAAaA,CAAA,EAAW;IACtB,MAAMY,QAAQ,GAAG,EAAE,IAAI,CAAC1B,KAAK,CAACC,GAAG;IACjC,IAAI,IAAI,CAAC0B,cAAc,CAAC,IAAI,CAAC3B,KAAK,CAACC,GAAG,CAAC,OAAyB,EAAE;MAChE,EAAE,IAAI,CAACD,KAAK,CAACC,GAAG;MAEhB,IAAI2B,KAAK,GAAG,EAAE;MACd,IAAI,IAAI,CAACD,cAAc,CAAC,IAAI,CAAC3B,KAAK,CAACC,GAAG,CAAC,QAAyB,EAAE;QAChE2B,KAAK,GAAG,EAAE;QACV,EAAE,IAAI,CAAC5B,KAAK,CAACC,GAAG;MAClB;MAEA,MAAM4B,SAAS,GAAG,IAAI,CAACC,OAAO,CAC5BF,KAAK,EACKG,SAAS,EACJ,KAAK,EACI,MAC1B,CAAC;MACD,IACEF,SAAS,KAAK,IAAI,IAClB,IAAI,CAACF,cAAc,CAAC,IAAI,CAAC3B,KAAK,CAACC,GAAG,CAAC,OAAwB,EAC3D;QACA,EAAE,IAAI,CAACD,KAAK,CAACC,GAAG;QAChB,OAAOiB,MAAM,CAACc,aAAa,CAACH,SAAS,CAAC;MACxC;IACF,CAAC,MAAM;MACL,IAAII,KAAK,GAAG,CAAC;MACb,IAAIC,IAAI,GAAG,KAAK;MAChB,OACED,KAAK,EAAE,GAAG,EAAE,IACZ,IAAI,CAACjC,KAAK,CAACC,GAAG,GAAG,IAAI,CAACC,MAAM,IAC5B,EAAEgC,IAAI,GAAG,IAAI,CAACP,cAAc,CAAC,IAAI,CAAC3B,KAAK,CAACC,GAAG,CAAC,MAAuB,CAAC,EACpE;QACA,EAAE,IAAI,CAACD,KAAK,CAACC,GAAG;MAClB;MAEA,IAAIiC,IAAI,EAAE;QACR,MAAMC,IAAI,GAAG,IAAI,CAAC5B,KAAK,CAACM,KAAK,CAACa,QAAQ,EAAE,IAAI,CAAC1B,KAAK,CAACC,GAAG,CAAC;QACvD,MAAMmC,MAAM,GAAGC,cAAa,CAACF,IAAI,CAAC;QAClC,EAAE,IAAI,CAACnC,KAAK,CAACC,GAAG;QAEhB,IAAImC,MAAM,EAAE;UACV,OAAOA,MAAM;QACf;MACF;IACF;IAGA,IAAI,CAACpC,KAAK,CAACC,GAAG,GAAGyB,QAAQ;IACzB,OAAO,GAAG;EACZ;EASAY,WAAWA,CAAA,EAAS;IAClB,IAAIhC,EAAE;IACN,MAAMG,KAAK,GAAG,IAAI,CAACT,KAAK,CAACC,GAAG;IAC5B,GAAG;MACDK,EAAE,GAAG,IAAI,CAACC,KAAK,CAACC,UAAU,CAAC,EAAE,IAAI,CAACR,KAAK,CAACC,GAAG,CAAC;IAC9C,CAAC,QAAQ,IAAAsC,4BAAgB,EAACjC,EAAE,CAAC,IAAIA,EAAE,OAAmB;IACtD,IAAI,CAACK,WAAW,MAAa,IAAI,CAACJ,KAAK,CAACM,KAAK,CAACJ,KAAK,EAAE,IAAI,CAACT,KAAK,CAACC,GAAG,CAAC,CAAC;EACvE;EAIAuC,kBAAkBA,CAAA,EAAoB;IACpC,MAAMC,IAAI,GAAG,IAAI,CAACC,SAAS,CAAC,CAAC;IAC7B,IAAI,IAAI,CAACC,KAAK,IAAW,CAAC,EAAE;MAC1BF,IAAI,CAACnD,IAAI,GAAG,IAAI,CAACU,KAAK,CAAC4C,KAAK;IAC9B,CAAC,MAAM,IAAI,IAAAC,qBAAc,EAAC,IAAI,CAAC7C,KAAK,CAACZ,IAAI,CAAC,EAAE;MAC1CqD,IAAI,CAACnD,IAAI,GAAG,IAAAwD,qBAAc,EAAC,IAAI,CAAC9C,KAAK,CAACZ,IAAI,CAAC;IAC7C,CAAC,MAAM;MACL,IAAI,CAACP,UAAU,CAAC,CAAC;IACnB;IACA,IAAI,CAACkE,IAAI,CAAC,CAAC;IACX,OAAO,IAAI,CAACC,UAAU,CAACP,IAAI,EAAE,eAAe,CAAC;EAC/C;EAIAQ,sBAAsBA,CAAA,EAAwB;IAC5C,MAAM5C,QAAQ,GAAG,IAAI,CAACL,KAAK,CAACK,QAAQ;IACpC,MAAMf,IAAI,GAAG,IAAI,CAACkD,kBAAkB,CAAC,CAAC;IACtC,IAAI,CAAC,IAAI,CAACU,GAAG,GAAS,CAAC,EAAE,OAAO5D,IAAI;IAEpC,MAAMmD,IAAI,GAAG,IAAI,CAACU,WAAW,CAAC9C,QAAQ,CAAC;IACvCoC,IAAI,CAAClD,SAAS,GAAGD,IAAI;IACrBmD,IAAI,CAACnD,IAAI,GAAG,IAAI,CAACkD,kBAAkB,CAAC,CAAC;IACrC,OAAO,IAAI,CAACQ,UAAU,CAACP,IAAI,EAAE,mBAAmB,CAAC;EACnD;EAKAW,mBAAmBA,CAAA,EAGO;IACxB,MAAM/C,QAAQ,GAAG,IAAI,CAACL,KAAK,CAACK,QAAQ;IACpC,IAAIoC,IAAI,GAAG,IAAI,CAACQ,sBAAsB,CAAC,CAAC;IACxC,IAAIR,IAAI,CAACrD,IAAI,KAAK,mBAAmB,EAAE;MACrC,OAAOqD,IAAI;IACb;IACA,OAAO,IAAI,CAACS,GAAG,GAAO,CAAC,EAAE;MACvB,MAAMG,OAAO,GAAG,IAAI,CAACF,WAAW,CAAC9C,QAAQ,CAAC;MAC1CgD,OAAO,CAAClE,MAAM,GAAGsD,IAAI;MACrBY,OAAO,CAAC7D,QAAQ,GAAG,IAAI,CAACgD,kBAAkB,CAAC,CAAC;MAC5CC,IAAI,GAAG,IAAI,CAACO,UAAU,CAACK,OAAO,EAAE,qBAAqB,CAAC;IACxD;IACA,OAAOZ,IAAI;EACb;EAIAa,sBAAsBA,CAAA,EAAiB;IACrC,IAAIb,IAAI;IACR,QAAQ,IAAI,CAACzC,KAAK,CAACZ,IAAI;MACrB;QACEqD,IAAI,GAAG,IAAI,CAACC,SAAS,CAAC,CAAC;QACvB,IAAI,CAACa,UAAU,CAACC,cAAE,CAACC,KAAK,CAAC;QACzB,IAAI,CAACV,IAAI,CAAC,CAAC;QACXN,IAAI,GAAG,IAAI,CAACiB,2BAA2B,CAACjB,IAAI,EAAEe,cAAE,CAACG,MAAM,CAAC;QACxD,IAAIlB,IAAI,CAACmB,UAAU,CAACxE,IAAI,KAAK,oBAAoB,EAAE;UACjD,IAAI,CAACe,KAAK,CAAC9B,SAAS,CAACE,gBAAgB,EAAE;YAAE6B,EAAE,EAAEqC;UAAK,CAAC,CAAC;QACtD;QACA,OAAOA,IAAI;MAEb;MACA;QACE,OAAO,IAAI,CAACoB,aAAa,CAAC,CAAC;MAE7B;QACE,MAAM,IAAI,CAAC1D,KAAK,CAAC9B,SAAS,CAACU,mBAAmB,EAAE;UAC9CqB,EAAE,EAAE,IAAI,CAACJ,KAAK,CAACK;QACjB,CAAC,CAAC;IACN;EACF;EAMAyD,uBAAuBA,CAAA,EAAyB;IAC9C,MAAMrB,IAAI,GAAG,IAAI,CAACU,WAAW,CAAC,IAAI,CAACnD,KAAK,CAAC+D,aAAa,CAAC;IACvD,OAAO,IAAI,CAACC,YAAY,CAACvB,IAAI,EAAE,oBAAoB,EAAE,IAAI,CAACzC,KAAK,CAACK,QAAQ,CAAC;EAC3E;EAIA4D,mBAAmBA,CAACxB,IAA8B,EAAoB;IACpE,IAAI,CAACM,IAAI,CAAC,CAAC;IACXN,IAAI,CAACmB,UAAU,GAAG,IAAI,CAACM,eAAe,CAAC,CAAC;IACxC,IAAI,CAACX,UAAU,CAACC,cAAE,CAACW,MAAM,CAAC;IAC1B,IAAI,CAACnE,KAAK,CAACU,kBAAkB,GAAG,IAAI;IACpC,IAAI,CAAC0D,MAAM,EAAU,CAAC;IAEtB,OAAO,IAAI,CAACpB,UAAU,CAACP,IAAI,EAAE,gBAAgB,CAAC;EAChD;EAIAiB,2BAA2BA,CACzBjB,IAAsC,EACtC4B,eAA2B,EACD;IAC1B,IAAI,IAAI,CAAC1B,KAAK,EAAU,CAAC,EAAE;MACzBF,IAAI,CAACmB,UAAU,GAAG,IAAI,CAACE,uBAAuB,CAAC,CAAC;IAClD,CAAC,MAAM;MACL,MAAMF,UAAU,GAAG,IAAI,CAACM,eAAe,CAAC,CAAC;MAAC;MAa1CzB,IAAI,CAACmB,UAAU,GAAGA,UAAU;IAC9B;IACA,IAAI,CAACL,UAAU,CAACc,eAAe,CAAC;IAChC,IAAI,CAACrE,KAAK,CAACU,kBAAkB,GAAG,IAAI;IACpC,IAAI,CAAC0D,MAAM,EAAU,CAAC;IAEtB,OAAO,IAAI,CAACpB,UAAU,CAACP,IAAI,EAAE,wBAAwB,CAAC;EACxD;EAIA6B,iBAAiBA,CAAA,EAAmB;IAClC,MAAM7B,IAAI,GAAG,IAAI,CAACC,SAAS,CAAC,CAAC;IAC7B,IAAI,IAAI,CAACC,KAAK,EAAU,CAAC,EAAE;MACzB,IAAI,CAACY,UAAU,CAACC,cAAE,CAACC,KAAK,CAAC;MACzB,IAAI,CAACV,IAAI,CAAC,CAAC;MACX,IAAI,CAACqB,MAAM,GAAY,CAAC;MACxB3B,IAAI,CAAC8B,QAAQ,GAAG,IAAI,CAACC,uBAAuB,CAAC,CAAC;MAC9C,IAAI,CAACjB,UAAU,CAACC,cAAE,CAACG,MAAM,CAAC;MAC1B,IAAI,CAAC3D,KAAK,CAACU,kBAAkB,GAAG,IAAI;MACpC,IAAI,CAAC0D,MAAM,EAAU,CAAC;MACtB,OAAO,IAAI,CAACpB,UAAU,CAACP,IAAI,EAAE,oBAAoB,CAAC;IACpD;IACAA,IAAI,CAACnD,IAAI,GAAG,IAAI,CAAC2D,sBAAsB,CAAC,CAAC;IACzCR,IAAI,CAACG,KAAK,GAAG,IAAI,CAACM,GAAG,GAAM,CAAC,GAAG,IAAI,CAACI,sBAAsB,CAAC,CAAC,GAAG,IAAI;IACnE,OAAO,IAAI,CAACN,UAAU,CAACP,IAAI,EAAE,cAAc,CAAC;EAC9C;EAIAgC,wBAAwBA,CAACpE,QAAkB,EAAuB;IAChE,MAAMoC,IAAI,GAAG,IAAI,CAACU,WAAW,CAC3B9C,QACF,CAAC;IACD,IAAI,IAAI,CAAC6C,GAAG,IAAa,CAAC,EAAE;MAE1B,OAAO,IAAI,CAACF,UAAU,CAACP,IAAI,EAAE,oBAAoB,CAAC;IACpD;IACAA,IAAI,CAACnD,IAAI,GAAG,IAAI,CAAC8D,mBAAmB,CAAC,CAAC;IACtC,OAAO,IAAI,CAACsB,+BAA+B,CACzCjC,IACF,CAAC;EACH;EAEAiC,+BAA+BA,CAC7BjC,IAAiC,EACZ;IACrB,MAAMkC,UAA4B,GAAG,EAAE;IACvC,OAAO,CAAC,IAAI,CAAChC,KAAK,GAAS,CAAC,IAAI,CAAC,IAAI,CAACA,KAAK,IAAa,CAAC,EAAE;MACzDgC,UAAU,CAACC,IAAI,CAAC,IAAI,CAACN,iBAAiB,CAAC,CAAC,CAAC;IAC3C;IACA7B,IAAI,CAACkC,UAAU,GAAGA,UAAU;IAC5BlC,IAAI,CAACoC,WAAW,GAAG,IAAI,CAAC3B,GAAG,GAAS,CAAC;IACrC,IAAI,CAACkB,MAAM,IAAa,CAAC;IACzB,OAAO,IAAI,CAACpB,UAAU,CAACP,IAAI,EAAE,mBAAmB,CAAC;EACnD;EAIAqC,wBAAwBA,CAACzE,QAAkB,EAAuB;IAChE,MAAMoC,IAAI,GAAG,IAAI,CAACU,WAAW,CAAC9C,QAAQ,CAAC;IACvC,IAAI,IAAI,CAAC6C,GAAG,IAAa,CAAC,EAAE;MAC1B,OAAO,IAAI,CAACF,UAAU,CAACP,IAAI,EAAE,oBAAoB,CAAC;IACpD;IACAA,IAAI,CAACnD,IAAI,GAAG,IAAI,CAAC8D,mBAAmB,CAAC,CAAC;IACtC,IAAI,CAACgB,MAAM,IAAa,CAAC;IACzB,OAAO,IAAI,CAACpB,UAAU,CAACP,IAAI,EAAE,mBAAmB,CAAC;EACnD;EAKAsC,iBAAiBA,CAAC1E,QAAkB,EAAgB;IAClD,MAAMoC,IAAI,GAAG,IAAI,CAACU,WAAW,CAAC9C,QAAQ,CAAC;IACvC,MAAM2E,QAAQ,GAAG,EAAE;IACnB,MAAMC,cAAc,GAAG,IAAI,CAACR,wBAAwB,CAACpE,QAAQ,CAAC;IAC9D,IAAI6E,cAAc,GAAG,IAAI;IAEzB,IAAI,CAACD,cAAc,CAACJ,WAAW,EAAE;MAC/BM,QAAQ,EAAE,SAAS;QACjB,QAAQ,IAAI,CAACnF,KAAK,CAACZ,IAAI;UACrB;YACEiB,QAAQ,GAAG,IAAI,CAACL,KAAK,CAACK,QAAQ;YAC9B,IAAI,CAAC0C,IAAI,CAAC,CAAC;YACX,IAAI,IAAI,CAACG,GAAG,GAAS,CAAC,EAAE;cACtBgC,cAAc,GAAG,IAAI,CAACJ,wBAAwB,CAACzE,QAAQ,CAAC;cACxD,MAAM8E,QAAQ;YAChB;YACAH,QAAQ,CAACJ,IAAI,CAAC,IAAI,CAACG,iBAAiB,CAAC1E,QAAQ,CAAC,CAAC;YAC/C;UAEF;YACE2E,QAAQ,CAACJ,IAAI,CAAC,IAAI,CAACf,aAAa,CAAC,CAAC,CAAC;YACnC;UAEF;YAAgB;cACd,MAAMpB,IAAI,GAAG,IAAI,CAACC,SAAS,CAEzB,CAAC;cACH,IAAI,CAACa,UAAU,CAACC,cAAE,CAACC,KAAK,CAAC;cACzB,IAAI,CAACV,IAAI,CAAC,CAAC;cACX,IAAI,IAAI,CAACJ,KAAK,GAAY,CAAC,EAAE;gBAC3BqC,QAAQ,CAACJ,IAAI,CAAC,IAAI,CAACX,mBAAmB,CAACxB,IAAI,CAAC,CAAC;cAC/C,CAAC,MAAM;gBACLuC,QAAQ,CAACJ,IAAI,CACX,IAAI,CAAClB,2BAA2B,CAACjB,IAAI,EAAEe,cAAE,CAACW,MAAM,CAClD,CAAC;cACH;cAEA;YACF;UAEA;YACE,IAAI,CAACtF,UAAU,CAAC,CAAC;QACrB;MACF;MAEA,IACEK,UAAU,CAAC+F,cAAc,CAAC,IAC1B,CAAC/F,UAAU,CAACgG,cAAc,CAAC,IAC3BA,cAAc,KAAK,IAAI,EACvB;QACA,IAAI,CAAC/E,KAAK,CAAC9B,SAAS,CAACK,yBAAyB,EAAE;UAC9C0B,EAAE,EAAE8E;QACN,CAAC,CAAC;MACJ,CAAC,MAAM,IAAI,CAAChG,UAAU,CAAC+F,cAAc,CAAC,IAAI/F,UAAU,CAACgG,cAAc,CAAC,EAAE;QACpE,IAAI,CAAC/E,KAAK,CAAC9B,SAAS,CAACG,wBAAwB,EAAE;UAC7C4B,EAAE,EAAE8E,cAAc;UAClBzG,cAAc,EAAEY,mBAAmB,CAAC4F,cAAc,CAAC3F,IAAI;QACzD,CAAC,CAAC;MACJ,CAAC,MAAM,IAAI,CAACJ,UAAU,CAAC+F,cAAc,CAAC,IAAI,CAAC/F,UAAU,CAACgG,cAAc,CAAC,EAAE;QACrE,IACE7F,mBAAmB,CAAC6F,cAAc,CAAC5F,IAAI,CAAC,KACxCD,mBAAmB,CAAC4F,cAAc,CAAC3F,IAAI,CAAC,EACxC;UACA,IAAI,CAACa,KAAK,CAAC9B,SAAS,CAACG,wBAAwB,EAAE;YAC7C4B,EAAE,EAAE8E,cAAc;YAClBzG,cAAc,EAAEY,mBAAmB,CAAC4F,cAAc,CAAC3F,IAAI;UACzD,CAAC,CAAC;QACJ;MACF;IACF;IAEA,IAAIJ,UAAU,CAAC+F,cAAc,CAAC,EAAE;MAC9BxC,IAAI,CAAC2C,eAAe,GAAGH,cAAc;MACrCxC,IAAI,CAAC4C,eAAe,GAAGH,cAAc;IACvC,CAAC,MAAM;MACLzC,IAAI,CAACwC,cAAc,GAAGA,cAAc;MACpCxC,IAAI,CAACyC,cAAc,GAAGA,cAAc;IACtC;IACAzC,IAAI,CAACuC,QAAQ,GAAGA,QAAQ;IACxB,IAAI,IAAI,CAACrC,KAAK,GAAM,CAAC,EAAE;MACrB,MAAM,IAAI,CAACxC,KAAK,CAAC9B,SAAS,CAACY,4BAA4B,EAAE;QACvDmB,EAAE,EAAE,IAAI,CAACJ,KAAK,CAACK;MACjB,CAAC,CAAC;IACJ;IAEA,OAAOnB,UAAU,CAAC+F,cAAc,CAAC,GAC7B,IAAI,CAACjC,UAAU,CAACP,IAAI,EAAE,aAAa,CAAC,GACpC,IAAI,CAACO,UAAU,CAACP,IAAI,EAAE,YAAY,CAAC;EACzC;EAIA6C,eAAeA,CAAA,EAAiB;IAC9B,MAAMjF,QAAQ,GAAG,IAAI,CAACL,KAAK,CAACK,QAAQ;IACpC,IAAI,CAAC0C,IAAI,CAAC,CAAC;IACX,OAAO,IAAI,CAACgC,iBAAiB,CAAC1E,QAAQ,CAAC;EACzC;EAEAkD,UAAUA,CAACgC,UAAsB,EAAE;IACjC,MAAM;MAAEC;IAAQ,CAAC,GAAG,IAAI,CAACxF,KAAK;IAC9BwF,OAAO,CAACA,OAAO,CAACtF,MAAM,GAAG,CAAC,CAAC,GAAGqF,UAAU;EAC1C;EAMA1B,aAAaA,CAAC4B,mBAA6C,EAAgB;IACzE,IAAI,IAAI,CAAC9C,KAAK,IAAW,CAAC,EAAE;MAC1B,OAAO,IAAI,CAAC+C,YAAY,CAAC,IAAI,CAAC1F,KAAK,CAAC4C,KAAK,EAAE,SAAS,CAAC;IACvD,CAAC,MAAM,IAAI,IAAI,CAACD,KAAK,IAAe,CAAC,EAAE;MACrC,OAAO,IAAI,CAAC2C,eAAe,CAAC,CAAC;IAC/B,CAAC,MAAM,IACL,IAAI,CAAC3C,KAAK,GAAM,CAAC,IACjB,IAAI,CAACpC,KAAK,CAACC,UAAU,CAAC,IAAI,CAACR,KAAK,CAACC,GAAG,CAAC,OAA8B,EACnE;MAGA,IAAI,CAAC0F,YAAY,IAAe,CAAC;MACjC,OAAO,IAAI,CAACL,eAAe,CAAC,CAAC;IAC/B,CAAC,MAAM;MACL,OAAO,KAAK,CAACzB,aAAa,CAAC4B,mBAAmB,CAAC;IACjD;EACF;EAEAG,SAASA,CAAA,EAAG;IACV,MAAMC,UAAU,GAAG,IAAI,CAACA,UAAU,CAAC,CAAC;IACpC,IAAI,CAACA,UAAU,CAACC,aAAa,EAAE,KAAK,CAACF,SAAS,CAAC,CAAC;EAClD;EAEAhF,gBAAgBA,CAACmF,IAAY,EAAQ;IACnC,MAAMP,OAAO,GAAG,IAAI,CAACK,UAAU,CAAC,CAAC;IAEjC,IAAIL,OAAO,KAAKhC,cAAE,CAACW,MAAM,EAAE;MACzB,IAAI,CAACtE,YAAY,CAAC,CAAC;MACnB;IACF;IAEA,IAAI2F,OAAO,KAAKhC,cAAE,CAACG,MAAM,IAAI6B,OAAO,KAAKhC,cAAE,CAACwC,MAAM,EAAE;MAClD,IAAI,IAAAC,6BAAiB,EAACF,IAAI,CAAC,EAAE;QAC3B,IAAI,CAACzD,WAAW,CAAC,CAAC;QAClB;MACF;MAEA,IAAIyD,IAAI,OAA0B,EAAE;QAClC,EAAE,IAAI,CAAC/F,KAAK,CAACC,GAAG;QAChB,IAAI,CAACU,WAAW,IAAa,CAAC;QAC9B;MACF;MAEA,IACE,CAACoF,IAAI,OAA4B,IAAIA,IAAI,OAAyB,KAClEP,OAAO,KAAKhC,cAAE,CAACG,MAAM,EACrB;QACA,IAAI,CAACrC,aAAa,CAACyE,IAAI,CAAC;QACxB;MACF;IACF;IAEA,IACEA,IAAI,OAAuB,IAC3B,IAAI,CAAC/F,KAAK,CAACU,kBAAkB,IAC7B,IAAI,CAACH,KAAK,CAACC,UAAU,CAAC,IAAI,CAACR,KAAK,CAACC,GAAG,GAAG,CAAC,CAAC,OAA8B,EACvE;MACA,EAAE,IAAI,CAACD,KAAK,CAACC,GAAG;MAChB,IAAI,CAACU,WAAW,IAAe,CAAC;MAChC;IACF;IAEA,KAAK,CAACC,gBAAgB,CAACmF,IAAI,CAAC;EAC9B;EAEAG,aAAaA,CAACC,QAAmB,EAAQ;IACvC,MAAM;MAAEX,OAAO;MAAEpG;IAAK,CAAC,GAAG,IAAI,CAACY,KAAK;IACpC,IAAIZ,IAAI,OAAa,IAAI+G,QAAQ,QAAmB,EAAE;MAGpDX,OAAO,CAACY,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE5C,cAAE,CAACwC,MAAM,CAAC;MAChC,IAAI,CAAChG,KAAK,CAACU,kBAAkB,GAAG,KAAK;IACvC,CAAC,MAAM,IAAItB,IAAI,QAAmB,EAAE;MAElCoG,OAAO,CAACZ,IAAI,CAACpB,cAAE,CAACG,MAAM,CAAC;IACzB,CAAC,MAAM,IAAIvE,IAAI,QAAiB,EAAE;MAChC,MAAMU,GAAG,GAAG0F,OAAO,CAACA,OAAO,CAACtF,MAAM,GAAG,CAAC,CAAC;MACvC,IAAKJ,GAAG,KAAK0D,cAAE,CAACG,MAAM,IAAIwC,QAAQ,OAAa,IAAKrG,GAAG,KAAK0D,cAAE,CAACwC,MAAM,EAAE;QACrER,OAAO,CAACa,GAAG,CAAC,CAAC;QACb,IAAI,CAACrG,KAAK,CAACU,kBAAkB,GAC3B8E,OAAO,CAACA,OAAO,CAACtF,MAAM,GAAG,CAAC,CAAC,KAAKsD,cAAE,CAACW,MAAM;MAC7C,CAAC,MAAM;QACL,IAAI,CAACZ,UAAU,CAACC,cAAE,CAACW,MAAM,CAAC;QAC1B,IAAI,CAACnE,KAAK,CAACU,kBAAkB,GAAG,IAAI;MACtC;IACF,CAAC,MAAM;MACL,IAAI,CAACV,KAAK,CAACU,kBAAkB,GAAG,IAAA4F,iCAA0B,EAAClH,IAAI,CAAC;IAClE;EACF;AACF,CAAC;AAAAmH,OAAA,CAAAC,OAAA,GAAA9G,QAAA"}
|