node-red-contrib-tak-registration 0.6.0 → 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/@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/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/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/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/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/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/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/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/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/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/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/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/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-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-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/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-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-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/umd/uuid.min.js +1 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidv5.min.js +1 -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/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/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/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/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/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/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/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/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/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/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 +5 -1
- 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 +1 -1
- package/tak-ingest.js +49 -1
- package/tak-registration.html +1 -1
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.SCOPE_VAR = exports.SCOPE_TS_MODULE = exports.SCOPE_SUPER = exports.SCOPE_STATIC_BLOCK = exports.SCOPE_SIMPLE_CATCH = exports.SCOPE_PROGRAM = exports.SCOPE_OTHER = exports.SCOPE_FUNCTION = exports.SCOPE_DIRECT_SUPER = exports.SCOPE_CLASS = exports.SCOPE_ARROW = exports.CLASS_ELEMENT_STATIC_SETTER = exports.CLASS_ELEMENT_STATIC_GETTER = exports.CLASS_ELEMENT_OTHER = exports.CLASS_ELEMENT_KIND_SETTER = exports.CLASS_ELEMENT_KIND_GETTER = exports.CLASS_ELEMENT_KIND_ACCESSOR = exports.CLASS_ELEMENT_INSTANCE_SETTER = exports.CLASS_ELEMENT_INSTANCE_GETTER = exports.CLASS_ELEMENT_FLAG_STATIC = exports.BIND_VAR = exports.BIND_TS_TYPE_IMPORT = exports.BIND_TS_TYPE = exports.BIND_TS_NAMESPACE = exports.BIND_TS_INTERFACE = exports.BIND_TS_ENUM = exports.BIND_TS_CONST_ENUM = exports.BIND_TS_AMBIENT = exports.BIND_SCOPE_VAR = exports.BIND_SCOPE_OUTSIDE = exports.BIND_SCOPE_LEXICAL = exports.BIND_SCOPE_FUNCTION = exports.BIND_OUTSIDE = exports.BIND_NONE = exports.BIND_LEXICAL = exports.BIND_KIND_VALUE = exports.BIND_KIND_TYPE = exports.BIND_FUNCTION = exports.BIND_FLOW_DECLARE_FN = exports.BIND_FLAGS_TS_IMPORT = exports.BIND_FLAGS_TS_EXPORT_ONLY = exports.BIND_FLAGS_TS_ENUM = exports.BIND_FLAGS_TS_CONST_ENUM = exports.BIND_FLAGS_NO_LET_IN_LEXICAL = exports.BIND_FLAGS_NONE = exports.BIND_FLAGS_FLOW_DECLARE_FN = exports.BIND_FLAGS_CLASS = exports.BIND_CLASS = exports.BIND_CATCH_PARAM = void 0;
|
|
7
|
+
const SCOPE_OTHER = 0b000000000,
|
|
8
|
+
SCOPE_PROGRAM = 0b000000001,
|
|
9
|
+
SCOPE_FUNCTION = 0b000000010,
|
|
10
|
+
SCOPE_ARROW = 0b000000100,
|
|
11
|
+
SCOPE_SIMPLE_CATCH = 0b000001000,
|
|
12
|
+
SCOPE_SUPER = 0b000010000,
|
|
13
|
+
SCOPE_DIRECT_SUPER = 0b000100000,
|
|
14
|
+
SCOPE_CLASS = 0b001000000,
|
|
15
|
+
SCOPE_STATIC_BLOCK = 0b010000000,
|
|
16
|
+
SCOPE_TS_MODULE = 0b100000000,
|
|
17
|
+
SCOPE_VAR = SCOPE_PROGRAM | SCOPE_FUNCTION | SCOPE_STATIC_BLOCK | SCOPE_TS_MODULE;
|
|
18
|
+
exports.SCOPE_VAR = SCOPE_VAR;
|
|
19
|
+
exports.SCOPE_TS_MODULE = SCOPE_TS_MODULE;
|
|
20
|
+
exports.SCOPE_STATIC_BLOCK = SCOPE_STATIC_BLOCK;
|
|
21
|
+
exports.SCOPE_CLASS = SCOPE_CLASS;
|
|
22
|
+
exports.SCOPE_DIRECT_SUPER = SCOPE_DIRECT_SUPER;
|
|
23
|
+
exports.SCOPE_SUPER = SCOPE_SUPER;
|
|
24
|
+
exports.SCOPE_SIMPLE_CATCH = SCOPE_SIMPLE_CATCH;
|
|
25
|
+
exports.SCOPE_ARROW = SCOPE_ARROW;
|
|
26
|
+
exports.SCOPE_FUNCTION = SCOPE_FUNCTION;
|
|
27
|
+
exports.SCOPE_PROGRAM = SCOPE_PROGRAM;
|
|
28
|
+
exports.SCOPE_OTHER = SCOPE_OTHER;
|
|
29
|
+
const BIND_KIND_VALUE = 0b0000000000001,
|
|
30
|
+
BIND_KIND_TYPE = 0b0000000000010,
|
|
31
|
+
BIND_SCOPE_VAR = 0b0000000000100,
|
|
32
|
+
BIND_SCOPE_LEXICAL = 0b0000000001000,
|
|
33
|
+
BIND_SCOPE_FUNCTION = 0b0000000010000,
|
|
34
|
+
BIND_SCOPE_OUTSIDE = 0b0000000100000,
|
|
35
|
+
BIND_FLAGS_NONE = 0b00000001000000,
|
|
36
|
+
BIND_FLAGS_CLASS = 0b00000010000000,
|
|
37
|
+
BIND_FLAGS_TS_ENUM = 0b00000100000000,
|
|
38
|
+
BIND_FLAGS_TS_CONST_ENUM = 0b00001000000000,
|
|
39
|
+
BIND_FLAGS_TS_EXPORT_ONLY = 0b00010000000000,
|
|
40
|
+
BIND_FLAGS_FLOW_DECLARE_FN = 0b00100000000000,
|
|
41
|
+
BIND_FLAGS_TS_IMPORT = 0b01000000000000,
|
|
42
|
+
BIND_FLAGS_NO_LET_IN_LEXICAL = 0b10000000000000;
|
|
43
|
+
exports.BIND_FLAGS_NO_LET_IN_LEXICAL = BIND_FLAGS_NO_LET_IN_LEXICAL;
|
|
44
|
+
exports.BIND_FLAGS_TS_IMPORT = BIND_FLAGS_TS_IMPORT;
|
|
45
|
+
exports.BIND_FLAGS_FLOW_DECLARE_FN = BIND_FLAGS_FLOW_DECLARE_FN;
|
|
46
|
+
exports.BIND_FLAGS_TS_EXPORT_ONLY = BIND_FLAGS_TS_EXPORT_ONLY;
|
|
47
|
+
exports.BIND_FLAGS_TS_CONST_ENUM = BIND_FLAGS_TS_CONST_ENUM;
|
|
48
|
+
exports.BIND_FLAGS_TS_ENUM = BIND_FLAGS_TS_ENUM;
|
|
49
|
+
exports.BIND_FLAGS_CLASS = BIND_FLAGS_CLASS;
|
|
50
|
+
exports.BIND_FLAGS_NONE = BIND_FLAGS_NONE;
|
|
51
|
+
exports.BIND_SCOPE_OUTSIDE = BIND_SCOPE_OUTSIDE;
|
|
52
|
+
exports.BIND_SCOPE_FUNCTION = BIND_SCOPE_FUNCTION;
|
|
53
|
+
exports.BIND_SCOPE_LEXICAL = BIND_SCOPE_LEXICAL;
|
|
54
|
+
exports.BIND_SCOPE_VAR = BIND_SCOPE_VAR;
|
|
55
|
+
exports.BIND_KIND_TYPE = BIND_KIND_TYPE;
|
|
56
|
+
exports.BIND_KIND_VALUE = BIND_KIND_VALUE;
|
|
57
|
+
const BIND_CLASS = BIND_KIND_VALUE | BIND_KIND_TYPE | BIND_SCOPE_LEXICAL | BIND_FLAGS_CLASS | BIND_FLAGS_NO_LET_IN_LEXICAL,
|
|
58
|
+
BIND_LEXICAL = BIND_KIND_VALUE | 0 | BIND_SCOPE_LEXICAL | BIND_FLAGS_NO_LET_IN_LEXICAL,
|
|
59
|
+
BIND_CATCH_PARAM = BIND_KIND_VALUE | 0 | BIND_SCOPE_LEXICAL | 0,
|
|
60
|
+
BIND_VAR = BIND_KIND_VALUE | 0 | BIND_SCOPE_VAR | 0,
|
|
61
|
+
BIND_FUNCTION = BIND_KIND_VALUE | 0 | BIND_SCOPE_FUNCTION | 0,
|
|
62
|
+
BIND_TS_INTERFACE = 0 | BIND_KIND_TYPE | 0 | BIND_FLAGS_CLASS,
|
|
63
|
+
BIND_TS_TYPE = 0 | BIND_KIND_TYPE | 0 | 0,
|
|
64
|
+
BIND_TS_ENUM = BIND_KIND_VALUE | BIND_KIND_TYPE | BIND_SCOPE_LEXICAL | BIND_FLAGS_TS_ENUM | BIND_FLAGS_NO_LET_IN_LEXICAL,
|
|
65
|
+
BIND_TS_AMBIENT = 0 | 0 | 0 | BIND_FLAGS_TS_EXPORT_ONLY,
|
|
66
|
+
BIND_NONE = 0 | 0 | 0 | BIND_FLAGS_NONE,
|
|
67
|
+
BIND_OUTSIDE = BIND_KIND_VALUE | 0 | 0 | BIND_FLAGS_NONE,
|
|
68
|
+
BIND_TS_CONST_ENUM = BIND_TS_ENUM | BIND_FLAGS_TS_CONST_ENUM,
|
|
69
|
+
BIND_TS_NAMESPACE = 0 | 0 | 0 | BIND_FLAGS_TS_EXPORT_ONLY,
|
|
70
|
+
BIND_TS_TYPE_IMPORT = 0 | BIND_KIND_TYPE | 0 | BIND_FLAGS_TS_IMPORT,
|
|
71
|
+
BIND_FLOW_DECLARE_FN = BIND_FLAGS_FLOW_DECLARE_FN;
|
|
72
|
+
exports.BIND_FLOW_DECLARE_FN = BIND_FLOW_DECLARE_FN;
|
|
73
|
+
exports.BIND_TS_TYPE_IMPORT = BIND_TS_TYPE_IMPORT;
|
|
74
|
+
exports.BIND_TS_NAMESPACE = BIND_TS_NAMESPACE;
|
|
75
|
+
exports.BIND_TS_CONST_ENUM = BIND_TS_CONST_ENUM;
|
|
76
|
+
exports.BIND_OUTSIDE = BIND_OUTSIDE;
|
|
77
|
+
exports.BIND_NONE = BIND_NONE;
|
|
78
|
+
exports.BIND_TS_AMBIENT = BIND_TS_AMBIENT;
|
|
79
|
+
exports.BIND_TS_ENUM = BIND_TS_ENUM;
|
|
80
|
+
exports.BIND_TS_TYPE = BIND_TS_TYPE;
|
|
81
|
+
exports.BIND_TS_INTERFACE = BIND_TS_INTERFACE;
|
|
82
|
+
exports.BIND_FUNCTION = BIND_FUNCTION;
|
|
83
|
+
exports.BIND_VAR = BIND_VAR;
|
|
84
|
+
exports.BIND_CATCH_PARAM = BIND_CATCH_PARAM;
|
|
85
|
+
exports.BIND_LEXICAL = BIND_LEXICAL;
|
|
86
|
+
exports.BIND_CLASS = BIND_CLASS;
|
|
87
|
+
const CLASS_ELEMENT_FLAG_STATIC = 0b100,
|
|
88
|
+
CLASS_ELEMENT_KIND_GETTER = 0b010,
|
|
89
|
+
CLASS_ELEMENT_KIND_SETTER = 0b001,
|
|
90
|
+
CLASS_ELEMENT_KIND_ACCESSOR = CLASS_ELEMENT_KIND_GETTER | CLASS_ELEMENT_KIND_SETTER;
|
|
91
|
+
exports.CLASS_ELEMENT_KIND_ACCESSOR = CLASS_ELEMENT_KIND_ACCESSOR;
|
|
92
|
+
exports.CLASS_ELEMENT_KIND_SETTER = CLASS_ELEMENT_KIND_SETTER;
|
|
93
|
+
exports.CLASS_ELEMENT_KIND_GETTER = CLASS_ELEMENT_KIND_GETTER;
|
|
94
|
+
exports.CLASS_ELEMENT_FLAG_STATIC = CLASS_ELEMENT_FLAG_STATIC;
|
|
95
|
+
const CLASS_ELEMENT_STATIC_GETTER = CLASS_ELEMENT_KIND_GETTER | CLASS_ELEMENT_FLAG_STATIC,
|
|
96
|
+
CLASS_ELEMENT_STATIC_SETTER = CLASS_ELEMENT_KIND_SETTER | CLASS_ELEMENT_FLAG_STATIC,
|
|
97
|
+
CLASS_ELEMENT_INSTANCE_GETTER = CLASS_ELEMENT_KIND_GETTER,
|
|
98
|
+
CLASS_ELEMENT_INSTANCE_SETTER = CLASS_ELEMENT_KIND_SETTER,
|
|
99
|
+
CLASS_ELEMENT_OTHER = 0;
|
|
100
|
+
exports.CLASS_ELEMENT_OTHER = CLASS_ELEMENT_OTHER;
|
|
101
|
+
exports.CLASS_ELEMENT_INSTANCE_SETTER = CLASS_ELEMENT_INSTANCE_SETTER;
|
|
102
|
+
exports.CLASS_ELEMENT_INSTANCE_GETTER = CLASS_ELEMENT_INSTANCE_GETTER;
|
|
103
|
+
exports.CLASS_ELEMENT_STATIC_SETTER = CLASS_ELEMENT_STATIC_SETTER;
|
|
104
|
+
exports.CLASS_ELEMENT_STATIC_GETTER = CLASS_ELEMENT_STATIC_GETTER;
|
|
105
|
+
|
|
106
|
+
//# sourceMappingURL=scopeflags.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["SCOPE_OTHER","SCOPE_PROGRAM","SCOPE_FUNCTION","SCOPE_ARROW","SCOPE_SIMPLE_CATCH","SCOPE_SUPER","SCOPE_DIRECT_SUPER","SCOPE_CLASS","SCOPE_STATIC_BLOCK","SCOPE_TS_MODULE","SCOPE_VAR","exports","BIND_KIND_VALUE","BIND_KIND_TYPE","BIND_SCOPE_VAR","BIND_SCOPE_LEXICAL","BIND_SCOPE_FUNCTION","BIND_SCOPE_OUTSIDE","BIND_FLAGS_NONE","BIND_FLAGS_CLASS","BIND_FLAGS_TS_ENUM","BIND_FLAGS_TS_CONST_ENUM","BIND_FLAGS_TS_EXPORT_ONLY","BIND_FLAGS_FLOW_DECLARE_FN","BIND_FLAGS_TS_IMPORT","BIND_FLAGS_NO_LET_IN_LEXICAL","BIND_CLASS","BIND_LEXICAL","BIND_CATCH_PARAM","BIND_VAR","BIND_FUNCTION","BIND_TS_INTERFACE","BIND_TS_TYPE","BIND_TS_ENUM","BIND_TS_AMBIENT","BIND_NONE","BIND_OUTSIDE","BIND_TS_CONST_ENUM","BIND_TS_NAMESPACE","BIND_TS_TYPE_IMPORT","BIND_FLOW_DECLARE_FN","CLASS_ELEMENT_FLAG_STATIC","CLASS_ELEMENT_KIND_GETTER","CLASS_ELEMENT_KIND_SETTER","CLASS_ELEMENT_KIND_ACCESSOR","CLASS_ELEMENT_STATIC_GETTER","CLASS_ELEMENT_STATIC_SETTER","CLASS_ELEMENT_INSTANCE_GETTER","CLASS_ELEMENT_INSTANCE_SETTER","CLASS_ELEMENT_OTHER"],"sources":["../../src/util/scopeflags.ts"],"sourcesContent":["// Each scope gets a bitset that may contain these flags\n// prettier-ignore\nexport const SCOPE_OTHER = 0b000000000,\n SCOPE_PROGRAM = 0b000000001,\n SCOPE_FUNCTION = 0b000000010,\n SCOPE_ARROW = 0b000000100,\n SCOPE_SIMPLE_CATCH = 0b000001000,\n SCOPE_SUPER = 0b000010000,\n SCOPE_DIRECT_SUPER = 0b000100000,\n SCOPE_CLASS = 0b001000000,\n SCOPE_STATIC_BLOCK = 0b010000000,\n SCOPE_TS_MODULE = 0b100000000,\n SCOPE_VAR = SCOPE_PROGRAM | SCOPE_FUNCTION | SCOPE_STATIC_BLOCK | SCOPE_TS_MODULE;\n\nexport type ScopeFlags =\n | typeof SCOPE_OTHER\n | typeof SCOPE_PROGRAM\n | typeof SCOPE_FUNCTION\n | typeof SCOPE_VAR\n | typeof SCOPE_ARROW\n | typeof SCOPE_SIMPLE_CATCH\n | typeof SCOPE_SUPER\n | typeof SCOPE_DIRECT_SUPER\n | typeof SCOPE_CLASS\n | typeof SCOPE_STATIC_BLOCK;\n\n// These flags are meant to be _only_ used inside the Scope class (or subclasses).\n// prettier-ignore\nexport const BIND_KIND_VALUE = 0b0000000_0000_01,\n BIND_KIND_TYPE = 0b0000000_0000_10,\n // Used in checkLVal and declareName to determine the type of a binding\n BIND_SCOPE_VAR = 0b0000000_0001_00, // Var-style binding\n BIND_SCOPE_LEXICAL = 0b0000000_0010_00, // Let- or const-style binding\n BIND_SCOPE_FUNCTION = 0b0000000_0100_00, // Function declaration\n BIND_SCOPE_OUTSIDE = 0b0000000_1000_00, // Special case for function names as\n // bound inside the function\n // Misc flags\n BIND_FLAGS_NONE = 0b00000001_0000_00,\n BIND_FLAGS_CLASS = 0b00000010_0000_00,\n BIND_FLAGS_TS_ENUM = 0b00000100_0000_00,\n BIND_FLAGS_TS_CONST_ENUM = 0b00001000_0000_00,\n BIND_FLAGS_TS_EXPORT_ONLY = 0b00010000_0000_00,\n BIND_FLAGS_FLOW_DECLARE_FN = 0b00100000_0000_00,\n BIND_FLAGS_TS_IMPORT = 0b01000000_0000_00,\n // Whether \"let\" should be allowed in bound names in sloppy mode\n BIND_FLAGS_NO_LET_IN_LEXICAL = 0b10000000_0000_00;\n\n// These flags are meant to be _only_ used by Scope consumers\n// prettier-ignore\n/* = is value? | is type? | scope | misc flags */\nexport const BIND_CLASS = BIND_KIND_VALUE | BIND_KIND_TYPE | BIND_SCOPE_LEXICAL | BIND_FLAGS_CLASS|BIND_FLAGS_NO_LET_IN_LEXICAL,\n BIND_LEXICAL = BIND_KIND_VALUE | 0 | BIND_SCOPE_LEXICAL | BIND_FLAGS_NO_LET_IN_LEXICAL,\n BIND_CATCH_PARAM = BIND_KIND_VALUE | 0 | BIND_SCOPE_LEXICAL | 0 ,\n BIND_VAR = BIND_KIND_VALUE | 0 | BIND_SCOPE_VAR | 0 ,\n BIND_FUNCTION = BIND_KIND_VALUE | 0 | BIND_SCOPE_FUNCTION | 0 ,\n BIND_TS_INTERFACE = 0 | BIND_KIND_TYPE | 0 | BIND_FLAGS_CLASS ,\n BIND_TS_TYPE = 0 | BIND_KIND_TYPE | 0 | 0 ,\n BIND_TS_ENUM = BIND_KIND_VALUE | BIND_KIND_TYPE | BIND_SCOPE_LEXICAL | BIND_FLAGS_TS_ENUM|BIND_FLAGS_NO_LET_IN_LEXICAL,\n BIND_TS_AMBIENT = 0 | 0 | 0 | BIND_FLAGS_TS_EXPORT_ONLY,\n // These bindings don't introduce anything in the scope. They are used for assignments and\n // function expressions IDs.\n BIND_NONE = 0 | 0 | 0 | BIND_FLAGS_NONE ,\n BIND_OUTSIDE = BIND_KIND_VALUE | 0 | 0 | BIND_FLAGS_NONE ,\n\n BIND_TS_CONST_ENUM = BIND_TS_ENUM | BIND_FLAGS_TS_CONST_ENUM ,\n BIND_TS_NAMESPACE = 0 | 0 | 0 | BIND_FLAGS_TS_EXPORT_ONLY,\n BIND_TS_TYPE_IMPORT= 0 | BIND_KIND_TYPE | 0 | BIND_FLAGS_TS_IMPORT ,\n\n BIND_FLOW_DECLARE_FN = BIND_FLAGS_FLOW_DECLARE_FN;\n\nexport type BindingTypes =\n | typeof BIND_NONE\n | typeof BIND_OUTSIDE\n | typeof BIND_VAR\n | typeof BIND_LEXICAL\n | typeof BIND_CLASS\n | typeof BIND_FUNCTION\n | typeof BIND_TS_INTERFACE\n | typeof BIND_TS_TYPE\n | typeof BIND_TS_ENUM\n | typeof BIND_TS_AMBIENT\n | typeof BIND_TS_NAMESPACE;\n\n// prettier-ignore\nexport const CLASS_ELEMENT_FLAG_STATIC = 0b1_00,\n CLASS_ELEMENT_KIND_GETTER = 0b0_10,\n CLASS_ELEMENT_KIND_SETTER = 0b0_01,\n CLASS_ELEMENT_KIND_ACCESSOR = CLASS_ELEMENT_KIND_GETTER | CLASS_ELEMENT_KIND_SETTER;\n\n// prettier-ignore\nexport const CLASS_ELEMENT_STATIC_GETTER = CLASS_ELEMENT_KIND_GETTER | CLASS_ELEMENT_FLAG_STATIC,\n CLASS_ELEMENT_STATIC_SETTER = CLASS_ELEMENT_KIND_SETTER | CLASS_ELEMENT_FLAG_STATIC,\n CLASS_ELEMENT_INSTANCE_GETTER = CLASS_ELEMENT_KIND_GETTER,\n CLASS_ELEMENT_INSTANCE_SETTER = CLASS_ELEMENT_KIND_SETTER,\n CLASS_ELEMENT_OTHER = 0;\n\nexport type ClassElementTypes =\n | typeof CLASS_ELEMENT_STATIC_GETTER\n | typeof CLASS_ELEMENT_STATIC_SETTER\n | typeof CLASS_ELEMENT_INSTANCE_GETTER\n | typeof CLASS_ELEMENT_INSTANCE_SETTER\n | typeof CLASS_ELEMENT_OTHER;\n"],"mappings":";;;;;;AAEO,MAAMA,WAAW,GAAU,WAAW;EAChCC,aAAa,GAAQ,WAAW;EAChCC,cAAc,GAAO,WAAW;EAChCC,WAAW,GAAU,WAAW;EAChCC,kBAAkB,GAAG,WAAW;EAChCC,WAAW,GAAU,WAAW;EAChCC,kBAAkB,GAAG,WAAW;EAChCC,WAAW,GAAU,WAAW;EAChCC,kBAAkB,GAAG,WAAW;EAChCC,eAAe,GAAM,WAAW;EAChCC,SAAS,GAAGT,aAAa,GAAGC,cAAc,GAAGM,kBAAkB,GAAGC,eAAe;AAACE,OAAA,CAAAD,SAAA,GAAAA,SAAA;AAAAC,OAAA,CAAAF,eAAA,GAAAA,eAAA;AAAAE,OAAA,CAAAH,kBAAA,GAAAA,kBAAA;AAAAG,OAAA,CAAAJ,WAAA,GAAAA,WAAA;AAAAI,OAAA,CAAAL,kBAAA,GAAAA,kBAAA;AAAAK,OAAA,CAAAN,WAAA,GAAAA,WAAA;AAAAM,OAAA,CAAAP,kBAAA,GAAAA,kBAAA;AAAAO,OAAA,CAAAR,WAAA,GAAAA,WAAA;AAAAQ,OAAA,CAAAT,cAAA,GAAAA,cAAA;AAAAS,OAAA,CAAAV,aAAA,GAAAA,aAAA;AAAAU,OAAA,CAAAX,WAAA,GAAAA,WAAA;AAgBxF,MAAMY,eAAe,GAAc,eAAiB;EAC9CC,cAAc,GAAe,eAAiB;EAE9CC,cAAc,GAAe,eAAiB;EAC9CC,kBAAkB,GAAW,eAAiB;EAC9CC,mBAAmB,GAAU,eAAiB;EAC9CC,kBAAkB,GAAW,eAAiB;EAG9CC,eAAe,GAAc,gBAAkB;EAC/CC,gBAAgB,GAAa,gBAAkB;EAC/CC,kBAAkB,GAAW,gBAAkB;EAC/CC,wBAAwB,GAAK,gBAAkB;EAC/CC,yBAAyB,GAAI,gBAAkB;EAC/CC,0BAA0B,GAAG,gBAAkB;EAC/CC,oBAAoB,GAAS,gBAAkB;EAE/CC,4BAA4B,GAAG,gBAAkB;AAACd,OAAA,CAAAc,4BAAA,GAAAA,4BAAA;AAAAd,OAAA,CAAAa,oBAAA,GAAAA,oBAAA;AAAAb,OAAA,CAAAY,0BAAA,GAAAA,0BAAA;AAAAZ,OAAA,CAAAW,yBAAA,GAAAA,yBAAA;AAAAX,OAAA,CAAAU,wBAAA,GAAAA,wBAAA;AAAAV,OAAA,CAAAS,kBAAA,GAAAA,kBAAA;AAAAT,OAAA,CAAAQ,gBAAA,GAAAA,gBAAA;AAAAR,OAAA,CAAAO,eAAA,GAAAA,eAAA;AAAAP,OAAA,CAAAM,kBAAA,GAAAA,kBAAA;AAAAN,OAAA,CAAAK,mBAAA,GAAAA,mBAAA;AAAAL,OAAA,CAAAI,kBAAA,GAAAA,kBAAA;AAAAJ,OAAA,CAAAG,cAAA,GAAAA,cAAA;AAAAH,OAAA,CAAAE,cAAA,GAAAA,cAAA;AAAAF,OAAA,CAAAC,eAAA,GAAAA,eAAA;AAKxD,MAAMc,UAAU,GAAWd,eAAe,GAAGC,cAAc,GAAGE,kBAAkB,GAAII,gBAAgB,GAACM,4BAA4B;EAC3HE,YAAY,GAASf,eAAe,GAAG,CAAC,GAAgBG,kBAAkB,GAAIU,4BAA4B;EAC1GG,gBAAgB,GAAKhB,eAAe,GAAG,CAAC,GAAgBG,kBAAkB,GAAI,CAAC;EAC/Ec,QAAQ,GAAajB,eAAe,GAAG,CAAC,GAAgBE,cAAc,GAAQ,CAAC;EAC/EgB,aAAa,GAAQlB,eAAe,GAAG,CAAC,GAAgBI,mBAAmB,GAAG,CAAC;EAC/Ee,iBAAiB,GAAI,CAAC,GAAiBlB,cAAc,GAAG,CAAC,GAAqBM,gBAAgB;EAC9Fa,YAAY,GAAS,CAAC,GAAiBnB,cAAc,GAAG,CAAC,GAAqB,CAAC;EAC/EoB,YAAY,GAASrB,eAAe,GAAGC,cAAc,GAAGE,kBAAkB,GAAIK,kBAAkB,GAACK,4BAA4B;EAC7HS,eAAe,GAAM,CAAC,GAAiB,CAAC,GAAgB,CAAC,GAAcZ,yBAAyB;EAGhGa,SAAS,GAAY,CAAC,GAAiB,CAAC,GAAgB,CAAC,GAAqBjB,eAAe;EAC7FkB,YAAY,GAASxB,eAAe,GAAG,CAAC,GAAgB,CAAC,GAAqBM,eAAe;EAE7FmB,kBAAkB,GAAGJ,YAAY,GAAMZ,wBAAwB;EAC/DiB,iBAAiB,GAAI,CAAC,GAAiB,CAAC,GAAgB,CAAC,GAAqBhB,yBAAyB;EACvGiB,mBAAmB,GAAE,CAAC,GAAiB1B,cAAc,GAAG,CAAC,GAAqBW,oBAAoB;EAElGgB,oBAAoB,GAAGjB,0BAA0B;AAACZ,OAAA,CAAA6B,oBAAA,GAAAA,oBAAA;AAAA7B,OAAA,CAAA4B,mBAAA,GAAAA,mBAAA;AAAA5B,OAAA,CAAA2B,iBAAA,GAAAA,iBAAA;AAAA3B,OAAA,CAAA0B,kBAAA,GAAAA,kBAAA;AAAA1B,OAAA,CAAAyB,YAAA,GAAAA,YAAA;AAAAzB,OAAA,CAAAwB,SAAA,GAAAA,SAAA;AAAAxB,OAAA,CAAAuB,eAAA,GAAAA,eAAA;AAAAvB,OAAA,CAAAsB,YAAA,GAAAA,YAAA;AAAAtB,OAAA,CAAAqB,YAAA,GAAAA,YAAA;AAAArB,OAAA,CAAAoB,iBAAA,GAAAA,iBAAA;AAAApB,OAAA,CAAAmB,aAAA,GAAAA,aAAA;AAAAnB,OAAA,CAAAkB,QAAA,GAAAA,QAAA;AAAAlB,OAAA,CAAAiB,gBAAA,GAAAA,gBAAA;AAAAjB,OAAA,CAAAgB,YAAA,GAAAA,YAAA;AAAAhB,OAAA,CAAAe,UAAA,GAAAA,UAAA;AAgBxD,MAAMe,yBAAyB,GAAG,KAAM;EAClCC,yBAAyB,GAAG,KAAM;EAClCC,yBAAyB,GAAG,KAAM;EAClCC,2BAA2B,GAAGF,yBAAyB,GAAGC,yBAAyB;AAAChC,OAAA,CAAAiC,2BAAA,GAAAA,2BAAA;AAAAjC,OAAA,CAAAgC,yBAAA,GAAAA,yBAAA;AAAAhC,OAAA,CAAA+B,yBAAA,GAAAA,yBAAA;AAAA/B,OAAA,CAAA8B,yBAAA,GAAAA,yBAAA;AAG1F,MAAMI,2BAA2B,GAAKH,yBAAyB,GAAGD,yBAAyB;EACrFK,2BAA2B,GAAKH,yBAAyB,GAAGF,yBAAyB;EACrFM,6BAA6B,GAAGL,yBAAyB;EACzDM,6BAA6B,GAAGL,yBAAyB;EACzDM,mBAAmB,GAAa,CAAC;AAACtC,OAAA,CAAAsC,mBAAA,GAAAA,mBAAA;AAAAtC,OAAA,CAAAqC,6BAAA,GAAAA,6BAAA;AAAArC,OAAA,CAAAoC,6BAAA,GAAAA,6BAAA;AAAApC,OAAA,CAAAmC,2BAAA,GAAAA,2BAAA;AAAAnC,OAAA,CAAAkC,2BAAA,GAAAA,2BAAA"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.isNewLine = isNewLine;
|
|
7
|
+
exports.isWhitespace = isWhitespace;
|
|
8
|
+
exports.skipWhiteSpaceToLineBreak = exports.skipWhiteSpaceInLine = exports.skipWhiteSpace = exports.lineBreakG = exports.lineBreak = void 0;
|
|
9
|
+
const lineBreak = /\r\n?|[\n\u2028\u2029]/;
|
|
10
|
+
exports.lineBreak = lineBreak;
|
|
11
|
+
const lineBreakG = new RegExp(lineBreak.source, "g");
|
|
12
|
+
exports.lineBreakG = lineBreakG;
|
|
13
|
+
function isNewLine(code) {
|
|
14
|
+
switch (code) {
|
|
15
|
+
case 10:
|
|
16
|
+
case 13:
|
|
17
|
+
case 8232:
|
|
18
|
+
case 8233:
|
|
19
|
+
return true;
|
|
20
|
+
default:
|
|
21
|
+
return false;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
const skipWhiteSpace = /(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g;
|
|
25
|
+
exports.skipWhiteSpace = skipWhiteSpace;
|
|
26
|
+
const skipWhiteSpaceInLine = /(?:[^\S\n\r\u2028\u2029]|\/\/.*|\/\*.*?\*\/)*/g;
|
|
27
|
+
exports.skipWhiteSpaceInLine = skipWhiteSpaceInLine;
|
|
28
|
+
const skipWhiteSpaceToLineBreak = new RegExp("(?=(" + skipWhiteSpaceInLine.source + "))\\1" + /(?=[\n\r\u2028\u2029]|\/\*(?!.*?\*\/)|$)/.source, "y");
|
|
29
|
+
exports.skipWhiteSpaceToLineBreak = skipWhiteSpaceToLineBreak;
|
|
30
|
+
function isWhitespace(code) {
|
|
31
|
+
switch (code) {
|
|
32
|
+
case 0x0009:
|
|
33
|
+
case 0x000b:
|
|
34
|
+
case 0x000c:
|
|
35
|
+
case 32:
|
|
36
|
+
case 160:
|
|
37
|
+
case 5760:
|
|
38
|
+
case 0x2000:
|
|
39
|
+
case 0x2001:
|
|
40
|
+
case 0x2002:
|
|
41
|
+
case 0x2003:
|
|
42
|
+
case 0x2004:
|
|
43
|
+
case 0x2005:
|
|
44
|
+
case 0x2006:
|
|
45
|
+
case 0x2007:
|
|
46
|
+
case 0x2008:
|
|
47
|
+
case 0x2009:
|
|
48
|
+
case 0x200a:
|
|
49
|
+
case 0x202f:
|
|
50
|
+
case 0x205f:
|
|
51
|
+
case 0x3000:
|
|
52
|
+
case 0xfeff:
|
|
53
|
+
return true;
|
|
54
|
+
default:
|
|
55
|
+
return false;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
//# sourceMappingURL=whitespace.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["lineBreak","exports","lineBreakG","RegExp","source","isNewLine","code","skipWhiteSpace","skipWhiteSpaceInLine","skipWhiteSpaceToLineBreak","isWhitespace"],"sources":["../../src/util/whitespace.ts"],"sourcesContent":["import * as charCodes from \"charcodes\";\n\n// Matches a whole line break (where CRLF is considered a single\n// line break). Used to count lines.\nexport const lineBreak = /\\r\\n?|[\\n\\u2028\\u2029]/;\nexport const lineBreakG = new RegExp(lineBreak.source, \"g\");\n\n// https://tc39.github.io/ecma262/#sec-line-terminators\nexport function isNewLine(code: number): boolean {\n switch (code) {\n case charCodes.lineFeed:\n case charCodes.carriageReturn:\n case charCodes.lineSeparator:\n case charCodes.paragraphSeparator:\n return true;\n\n default:\n return false;\n }\n}\n\nexport const skipWhiteSpace = /(?:\\s|\\/\\/.*|\\/\\*[^]*?\\*\\/)*/g;\n\nexport const skipWhiteSpaceInLine =\n /(?:[^\\S\\n\\r\\u2028\\u2029]|\\/\\/.*|\\/\\*.*?\\*\\/)*/g;\n\n// Skip whitespace and single-line comments, including /* no newline here */.\n// After this RegExp matches, its lastIndex points to a line terminator, or\n// the start of multi-line comment (which is effectively a line terminator),\n// or the end of string.\nexport const skipWhiteSpaceToLineBreak = new RegExp(\n // Unfortunately JS doesn't support Perl's atomic /(?>pattern)/ or\n // possessive quantifiers, so we use a trick to prevent backtracking\n // when the look-ahead for line terminator fails.\n \"(?=(\" +\n // Capture the whitespace and comments that should be skipped inside\n // a look-ahead assertion, and then re-match the group as a unit.\n skipWhiteSpaceInLine.source +\n \"))\\\\1\" +\n // Look-ahead for either line terminator, start of multi-line comment,\n // or end of string.\n /(?=[\\n\\r\\u2028\\u2029]|\\/\\*(?!.*?\\*\\/)|$)/.source,\n \"y\", // sticky\n);\n\n// https://tc39.github.io/ecma262/#sec-white-space\nexport function isWhitespace(code: number): boolean {\n switch (code) {\n case 0x0009: // CHARACTER TABULATION\n case 0x000b: // LINE TABULATION\n case 0x000c: // FORM FEED\n case charCodes.space:\n case charCodes.nonBreakingSpace:\n case charCodes.oghamSpaceMark:\n case 0x2000: // EN QUAD\n case 0x2001: // EM QUAD\n case 0x2002: // EN SPACE\n case 0x2003: // EM SPACE\n case 0x2004: // THREE-PER-EM SPACE\n case 0x2005: // FOUR-PER-EM SPACE\n case 0x2006: // SIX-PER-EM SPACE\n case 0x2007: // FIGURE SPACE\n case 0x2008: // PUNCTUATION SPACE\n case 0x2009: // THIN SPACE\n case 0x200a: // HAIR SPACE\n case 0x202f: // NARROW NO-BREAK SPACE\n case 0x205f: // MEDIUM MATHEMATICAL SPACE\n case 0x3000: // IDEOGRAPHIC SPACE\n case 0xfeff: // ZERO WIDTH NO-BREAK SPACE\n return true;\n\n default:\n return false;\n }\n}\n"],"mappings":";;;;;;;;AAIO,MAAMA,SAAS,GAAG,wBAAwB;AAACC,OAAA,CAAAD,SAAA,GAAAA,SAAA;AAC3C,MAAME,UAAU,GAAG,IAAIC,MAAM,CAACH,SAAS,CAACI,MAAM,EAAE,GAAG,CAAC;AAACH,OAAA,CAAAC,UAAA,GAAAA,UAAA;AAGrD,SAASG,SAASA,CAACC,IAAY,EAAW;EAC/C,QAAQA,IAAI;IACV;IACA;IACA;IACA;MACE,OAAO,IAAI;IAEb;MACE,OAAO,KAAK;EAChB;AACF;AAEO,MAAMC,cAAc,GAAG,+BAA+B;AAACN,OAAA,CAAAM,cAAA,GAAAA,cAAA;AAEvD,MAAMC,oBAAoB,GAC/B,gDAAgD;AAACP,OAAA,CAAAO,oBAAA,GAAAA,oBAAA;AAM5C,MAAMC,yBAAyB,GAAG,IAAIN,MAAM,CAIjD,MAAM,GAGJK,oBAAoB,CAACJ,MAAM,GAC3B,OAAO,GAGP,0CAA0C,CAACA,MAAM,EACnD,GACF,CAAC;AAACH,OAAA,CAAAQ,yBAAA,GAAAA,yBAAA;AAGK,SAASC,YAAYA,CAACJ,IAAY,EAAW;EAClD,QAAQA,IAAI;IACV,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;IACX;IACA;IACA;IACA,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,MAAM;MACT,OAAO,IAAI;IAEb;MACE,OAAO,KAAK;EAChB;AACF"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@babel/parser",
|
|
3
|
+
"version": "7.22.7",
|
|
4
|
+
"description": "A JavaScript parser",
|
|
5
|
+
"author": "The Babel Team (https://babel.dev/team)",
|
|
6
|
+
"homepage": "https://babel.dev/docs/en/next/babel-parser",
|
|
7
|
+
"bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A+parser+%28babylon%29%22+is%3Aopen",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"babel",
|
|
14
|
+
"javascript",
|
|
15
|
+
"parser",
|
|
16
|
+
"tc39",
|
|
17
|
+
"ecmascript",
|
|
18
|
+
"@babel/parser"
|
|
19
|
+
],
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/babel/babel.git",
|
|
23
|
+
"directory": "packages/babel-parser"
|
|
24
|
+
},
|
|
25
|
+
"main": "./lib/index.js",
|
|
26
|
+
"types": "./typings/babel-parser.d.ts",
|
|
27
|
+
"files": [
|
|
28
|
+
"bin",
|
|
29
|
+
"lib",
|
|
30
|
+
"typings/babel-parser.d.ts",
|
|
31
|
+
"index.cjs"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=6.0.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@babel/code-frame": "^7.22.5",
|
|
38
|
+
"@babel/helper-check-duplicate-nodes": "^7.22.5",
|
|
39
|
+
"@babel/helper-fixtures": "^7.22.6",
|
|
40
|
+
"@babel/helper-string-parser": "^7.22.5",
|
|
41
|
+
"@babel/helper-validator-identifier": "^7.22.5",
|
|
42
|
+
"charcodes": "^0.2.0"
|
|
43
|
+
},
|
|
44
|
+
"bin": "./bin/babel-parser.js",
|
|
45
|
+
"type": "commonjs"
|
|
46
|
+
}
|
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
// This file is auto-generated! Do not modify it directly.
|
|
2
|
+
/* eslint-disable import/no-extraneous-dependencies, @typescript-eslint/consistent-type-imports, prettier/prettier */
|
|
3
|
+
import * as _babel_types from '@babel/types';
|
|
4
|
+
|
|
5
|
+
type Plugin =
|
|
6
|
+
| "asyncDoExpressions"
|
|
7
|
+
| "asyncGenerators"
|
|
8
|
+
| "bigInt"
|
|
9
|
+
| "classPrivateMethods"
|
|
10
|
+
| "classPrivateProperties"
|
|
11
|
+
| "classProperties"
|
|
12
|
+
| "classStaticBlock" // Enabled by default
|
|
13
|
+
| "decimal"
|
|
14
|
+
| "decorators-legacy"
|
|
15
|
+
| "decoratorAutoAccessors"
|
|
16
|
+
| "destructuringPrivate"
|
|
17
|
+
| "doExpressions"
|
|
18
|
+
| "dynamicImport"
|
|
19
|
+
| "explicitResourceManagement"
|
|
20
|
+
| "exportDefaultFrom"
|
|
21
|
+
| "exportNamespaceFrom" // deprecated
|
|
22
|
+
| "flow"
|
|
23
|
+
| "flowComments"
|
|
24
|
+
| "functionBind"
|
|
25
|
+
| "functionSent"
|
|
26
|
+
| "importMeta"
|
|
27
|
+
| "jsx"
|
|
28
|
+
| "logicalAssignment"
|
|
29
|
+
| "importAssertions" // deprecated
|
|
30
|
+
| "importAttributes"
|
|
31
|
+
| "importReflection"
|
|
32
|
+
| "moduleBlocks"
|
|
33
|
+
| "moduleStringNames"
|
|
34
|
+
| "nullishCoalescingOperator"
|
|
35
|
+
| "numericSeparator"
|
|
36
|
+
| "objectRestSpread"
|
|
37
|
+
| "optionalCatchBinding"
|
|
38
|
+
| "optionalChaining"
|
|
39
|
+
| "partialApplication"
|
|
40
|
+
| "placeholders"
|
|
41
|
+
| "privateIn" // Enabled by default
|
|
42
|
+
| "regexpUnicodeSets" // Enabled by default
|
|
43
|
+
| "throwExpressions"
|
|
44
|
+
| "topLevelAwait"
|
|
45
|
+
| "v8intrinsic"
|
|
46
|
+
| ParserPluginWithOptions[0];
|
|
47
|
+
|
|
48
|
+
type ParserPluginWithOptions =
|
|
49
|
+
| ["decorators", DecoratorsPluginOptions]
|
|
50
|
+
| ["estree", { classFeatures?: boolean }]
|
|
51
|
+
| ["importAttributes", { deprecatedAssertSyntax: boolean }]
|
|
52
|
+
// @deprecated
|
|
53
|
+
| ["moduleAttributes", { version: "may-2020" }]
|
|
54
|
+
| ["pipelineOperator", PipelineOperatorPluginOptions]
|
|
55
|
+
| ["recordAndTuple", RecordAndTuplePluginOptions]
|
|
56
|
+
| ["flow", FlowPluginOptions]
|
|
57
|
+
| ["typescript", TypeScriptPluginOptions];
|
|
58
|
+
|
|
59
|
+
type PluginConfig = Plugin | ParserPluginWithOptions;
|
|
60
|
+
|
|
61
|
+
interface DecoratorsPluginOptions {
|
|
62
|
+
decoratorsBeforeExport?: boolean;
|
|
63
|
+
allowCallParenthesized?: boolean;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
interface PipelineOperatorPluginOptions {
|
|
67
|
+
proposal: "minimal" | "fsharp" | "hack" | "smart";
|
|
68
|
+
topicToken?: "%" | "#" | "@@" | "^^" | "^";
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
interface RecordAndTuplePluginOptions {
|
|
72
|
+
syntaxType: "bar" | "hash";
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
interface FlowPluginOptions {
|
|
76
|
+
all?: boolean;
|
|
77
|
+
enums?: boolean;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
interface TypeScriptPluginOptions {
|
|
81
|
+
dts?: boolean;
|
|
82
|
+
disallowAmbiguousJSXLike?: boolean;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// Type definitions for @babel/parser
|
|
86
|
+
// Project: https://github.com/babel/babel/tree/main/packages/babel-parser
|
|
87
|
+
// Definitions by: Troy Gerwien <https://github.com/yortus>
|
|
88
|
+
// Marvin Hagemeister <https://github.com/marvinhagemeister>
|
|
89
|
+
// Avi Vahl <https://github.com/AviVahl>
|
|
90
|
+
// TypeScript Version: 2.9
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Parse the provided code as an entire ECMAScript program.
|
|
94
|
+
*/
|
|
95
|
+
declare function parse(
|
|
96
|
+
input: string,
|
|
97
|
+
options?: ParserOptions
|
|
98
|
+
): ParseResult<_babel_types.File>;
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Parse the provided code as a single expression.
|
|
102
|
+
*/
|
|
103
|
+
declare function parseExpression(
|
|
104
|
+
input: string,
|
|
105
|
+
options?: ParserOptions
|
|
106
|
+
): ParseResult<_babel_types.Expression>;
|
|
107
|
+
|
|
108
|
+
interface ParserOptions {
|
|
109
|
+
/**
|
|
110
|
+
* By default, import and export declarations can only appear at a program's top level.
|
|
111
|
+
* Setting this option to true allows them anywhere where a statement is allowed.
|
|
112
|
+
*/
|
|
113
|
+
allowImportExportEverywhere?: boolean;
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* By default, await use is not allowed outside of an async function.
|
|
117
|
+
* Set this to true to accept such code.
|
|
118
|
+
*/
|
|
119
|
+
allowAwaitOutsideFunction?: boolean;
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* By default, a return statement at the top level raises an error.
|
|
123
|
+
* Set this to true to accept such code.
|
|
124
|
+
*/
|
|
125
|
+
allowReturnOutsideFunction?: boolean;
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* By default, new.target use is not allowed outside of a function or class.
|
|
129
|
+
* Set this to true to accept such code.
|
|
130
|
+
*/
|
|
131
|
+
allowNewTargetOutsideFunction?: boolean;
|
|
132
|
+
|
|
133
|
+
allowSuperOutsideMethod?: boolean;
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* By default, exported identifiers must refer to a declared variable.
|
|
137
|
+
* Set this to true to allow export statements to reference undeclared variables.
|
|
138
|
+
*/
|
|
139
|
+
allowUndeclaredExports?: boolean;
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* By default, Babel parser JavaScript code according to Annex B syntax.
|
|
143
|
+
* Set this to `false` to disable such behavior.
|
|
144
|
+
*/
|
|
145
|
+
annexB?: boolean;
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* By default, Babel attaches comments to adjacent AST nodes.
|
|
149
|
+
* When this option is set to false, comments are not attached.
|
|
150
|
+
* It can provide up to 30% performance improvement when the input code has many comments.
|
|
151
|
+
* @babel/eslint-parser will set it for you.
|
|
152
|
+
* It is not recommended to use attachComment: false with Babel transform,
|
|
153
|
+
* as doing so removes all the comments in output code, and renders annotations such as
|
|
154
|
+
* /* istanbul ignore next *\/ nonfunctional.
|
|
155
|
+
*/
|
|
156
|
+
attachComment?: boolean;
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* By default, Babel always throws an error when it finds some invalid code.
|
|
160
|
+
* When this option is set to true, it will store the parsing error and
|
|
161
|
+
* try to continue parsing the invalid input file.
|
|
162
|
+
*/
|
|
163
|
+
errorRecovery?: boolean;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Indicate the mode the code should be parsed in.
|
|
167
|
+
* Can be one of "script", "module", or "unambiguous". Defaults to "script".
|
|
168
|
+
* "unambiguous" will make @babel/parser attempt to guess, based on the presence
|
|
169
|
+
* of ES6 import or export statements.
|
|
170
|
+
* Files with ES6 imports and exports are considered "module" and are otherwise "script".
|
|
171
|
+
*/
|
|
172
|
+
sourceType?: "script" | "module" | "unambiguous";
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Correlate output AST nodes with their source filename.
|
|
176
|
+
* Useful when generating code and source maps from the ASTs of multiple input files.
|
|
177
|
+
*/
|
|
178
|
+
sourceFilename?: string;
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* By default, the first line of code parsed is treated as line 1.
|
|
182
|
+
* You can provide a line number to alternatively start with.
|
|
183
|
+
* Useful for integration with other source tools.
|
|
184
|
+
*/
|
|
185
|
+
startLine?: number;
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* By default, the parsed code is treated as if it starts from line 1, column 0.
|
|
189
|
+
* You can provide a column number to alternatively start with.
|
|
190
|
+
* Useful for integration with other source tools.
|
|
191
|
+
*/
|
|
192
|
+
startColumn?: number;
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* Array containing the plugins that you want to enable.
|
|
196
|
+
*/
|
|
197
|
+
plugins?: ParserPlugin[];
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* Should the parser work in strict mode.
|
|
201
|
+
* Defaults to true if sourceType === 'module'. Otherwise, false.
|
|
202
|
+
*/
|
|
203
|
+
strictMode?: boolean;
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* Adds a ranges property to each node: [node.start, node.end]
|
|
207
|
+
*/
|
|
208
|
+
ranges?: boolean;
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* Adds all parsed tokens to a tokens property on the File node.
|
|
212
|
+
*/
|
|
213
|
+
tokens?: boolean;
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* By default, the parser adds information about parentheses by setting
|
|
217
|
+
* `extra.parenthesized` to `true` as needed.
|
|
218
|
+
* When this option is `true` the parser creates `ParenthesizedExpression`
|
|
219
|
+
* AST nodes instead of using the `extra` property.
|
|
220
|
+
*/
|
|
221
|
+
createParenthesizedExpressions?: boolean;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
type ParserPlugin = PluginConfig;
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
declare const tokTypes: {
|
|
228
|
+
// todo(flow->ts) real token type
|
|
229
|
+
[name: string]: any;
|
|
230
|
+
};
|
|
231
|
+
|
|
232
|
+
interface ParseError {
|
|
233
|
+
code: string;
|
|
234
|
+
reasonCode: string;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
type ParseResult<Result> = Result & {
|
|
238
|
+
errors: ParseError[];
|
|
239
|
+
};
|
|
240
|
+
|
|
241
|
+
export { DecoratorsPluginOptions, FlowPluginOptions, ParseError, ParseResult, ParserOptions, ParserPlugin, ParserPluginWithOptions, PipelineOperatorPluginOptions, RecordAndTuplePluginOptions, TypeScriptPluginOptions, parse, parseExpression, tokTypes };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @babel/template
|
|
2
|
+
|
|
3
|
+
> Generate an AST from a string template.
|
|
4
|
+
|
|
5
|
+
See our website [@babel/template](https://babeljs.io/docs/en/babel-template) for more information or the [issues](https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20template%22+is%3Aopen) associated with this package.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
Using npm:
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
npm install --save-dev @babel/template
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
or using yarn:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
yarn add @babel/template --dev
|
|
19
|
+
```
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = createTemplateBuilder;
|
|
7
|
+
var _options = require("./options");
|
|
8
|
+
var _string = require("./string");
|
|
9
|
+
var _literal = require("./literal");
|
|
10
|
+
const NO_PLACEHOLDER = (0, _options.validate)({
|
|
11
|
+
placeholderPattern: false
|
|
12
|
+
});
|
|
13
|
+
function createTemplateBuilder(formatter, defaultOpts) {
|
|
14
|
+
const templateFnCache = new WeakMap();
|
|
15
|
+
const templateAstCache = new WeakMap();
|
|
16
|
+
const cachedOpts = defaultOpts || (0, _options.validate)(null);
|
|
17
|
+
return Object.assign((tpl, ...args) => {
|
|
18
|
+
if (typeof tpl === "string") {
|
|
19
|
+
if (args.length > 1) throw new Error("Unexpected extra params.");
|
|
20
|
+
return extendedTrace((0, _string.default)(formatter, tpl, (0, _options.merge)(cachedOpts, (0, _options.validate)(args[0]))));
|
|
21
|
+
} else if (Array.isArray(tpl)) {
|
|
22
|
+
let builder = templateFnCache.get(tpl);
|
|
23
|
+
if (!builder) {
|
|
24
|
+
builder = (0, _literal.default)(formatter, tpl, cachedOpts);
|
|
25
|
+
templateFnCache.set(tpl, builder);
|
|
26
|
+
}
|
|
27
|
+
return extendedTrace(builder(args));
|
|
28
|
+
} else if (typeof tpl === "object" && tpl) {
|
|
29
|
+
if (args.length > 0) throw new Error("Unexpected extra params.");
|
|
30
|
+
return createTemplateBuilder(formatter, (0, _options.merge)(cachedOpts, (0, _options.validate)(tpl)));
|
|
31
|
+
}
|
|
32
|
+
throw new Error(`Unexpected template param ${typeof tpl}`);
|
|
33
|
+
}, {
|
|
34
|
+
ast: (tpl, ...args) => {
|
|
35
|
+
if (typeof tpl === "string") {
|
|
36
|
+
if (args.length > 1) throw new Error("Unexpected extra params.");
|
|
37
|
+
return (0, _string.default)(formatter, tpl, (0, _options.merge)((0, _options.merge)(cachedOpts, (0, _options.validate)(args[0])), NO_PLACEHOLDER))();
|
|
38
|
+
} else if (Array.isArray(tpl)) {
|
|
39
|
+
let builder = templateAstCache.get(tpl);
|
|
40
|
+
if (!builder) {
|
|
41
|
+
builder = (0, _literal.default)(formatter, tpl, (0, _options.merge)(cachedOpts, NO_PLACEHOLDER));
|
|
42
|
+
templateAstCache.set(tpl, builder);
|
|
43
|
+
}
|
|
44
|
+
return builder(args)();
|
|
45
|
+
}
|
|
46
|
+
throw new Error(`Unexpected template param ${typeof tpl}`);
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
function extendedTrace(fn) {
|
|
51
|
+
let rootStack = "";
|
|
52
|
+
try {
|
|
53
|
+
throw new Error();
|
|
54
|
+
} catch (error) {
|
|
55
|
+
if (error.stack) {
|
|
56
|
+
rootStack = error.stack.split("\n").slice(3).join("\n");
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
return arg => {
|
|
60
|
+
try {
|
|
61
|
+
return fn(arg);
|
|
62
|
+
} catch (err) {
|
|
63
|
+
err.stack += `\n =============\n${rootStack}`;
|
|
64
|
+
throw err;
|
|
65
|
+
}
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
//# sourceMappingURL=builder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_options","require","_string","_literal","NO_PLACEHOLDER","validate","placeholderPattern","createTemplateBuilder","formatter","defaultOpts","templateFnCache","WeakMap","templateAstCache","cachedOpts","Object","assign","tpl","args","length","Error","extendedTrace","stringTemplate","merge","Array","isArray","builder","get","literalTemplate","set","ast","fn","rootStack","error","stack","split","slice","join","arg","err"],"sources":["../src/builder.ts"],"sourcesContent":["import { merge, validate } from \"./options\";\nimport type { TemplateOpts, PublicOpts, PublicReplacements } from \"./options\";\nimport type { Formatter } from \"./formatters\";\n\nimport stringTemplate from \"./string\";\nimport literalTemplate from \"./literal\";\n\nexport type TemplateBuilder<T> = {\n // Build a new builder, merging the given options with the previous ones.\n (opts: PublicOpts): TemplateBuilder<T>;\n\n // Building from a string produces an AST builder function by default.\n (tpl: string, opts?: PublicOpts): (replacements?: PublicReplacements) => T;\n\n // Building from a template literal produces an AST builder function by default.\n (\n tpl: TemplateStringsArray,\n ...args: Array<unknown>\n ): (replacements?: PublicReplacements) => T;\n\n // Allow users to explicitly create templates that produce ASTs, skipping\n // the need for an intermediate function.\n ast: {\n (tpl: string, opts?: PublicOpts): T;\n (tpl: TemplateStringsArray, ...args: Array<unknown>): T;\n };\n};\n\n// Prebuild the options that will be used when parsing a `.ast` template.\n// These do not use a pattern because there is no way for users to pass in\n// replacement patterns to begin with, and disabling pattern matching means\n// users have more flexibility in what type of content they have in their\n// template JS.\nconst NO_PLACEHOLDER: TemplateOpts = validate({\n placeholderPattern: false,\n});\n\nexport default function createTemplateBuilder<T>(\n formatter: Formatter<T>,\n defaultOpts?: TemplateOpts,\n): TemplateBuilder<T> {\n const templateFnCache = new WeakMap();\n const templateAstCache = new WeakMap();\n const cachedOpts = defaultOpts || validate(null);\n\n return Object.assign(\n ((tpl, ...args) => {\n if (typeof tpl === \"string\") {\n if (args.length > 1) throw new Error(\"Unexpected extra params.\");\n return extendedTrace(\n stringTemplate(formatter, tpl, merge(cachedOpts, validate(args[0]))),\n );\n } else if (Array.isArray(tpl)) {\n let builder = templateFnCache.get(tpl);\n if (!builder) {\n builder = literalTemplate(formatter, tpl, cachedOpts);\n templateFnCache.set(tpl, builder);\n }\n return extendedTrace(builder(args));\n } else if (typeof tpl === \"object\" && tpl) {\n if (args.length > 0) throw new Error(\"Unexpected extra params.\");\n return createTemplateBuilder(\n formatter,\n merge(cachedOpts, validate(tpl)),\n );\n }\n throw new Error(`Unexpected template param ${typeof tpl}`);\n }) as TemplateBuilder<T>,\n {\n ast: (tpl: string | Array<string>, ...args: Array<unknown>) => {\n if (typeof tpl === \"string\") {\n if (args.length > 1) throw new Error(\"Unexpected extra params.\");\n return stringTemplate(\n formatter,\n tpl,\n merge(merge(cachedOpts, validate(args[0])), NO_PLACEHOLDER),\n )();\n } else if (Array.isArray(tpl)) {\n let builder = templateAstCache.get(tpl);\n if (!builder) {\n builder = literalTemplate(\n formatter,\n tpl,\n merge(cachedOpts, NO_PLACEHOLDER),\n );\n templateAstCache.set(tpl, builder);\n }\n return builder(args)();\n }\n\n throw new Error(`Unexpected template param ${typeof tpl}`);\n },\n },\n );\n}\n\nfunction extendedTrace<Arg, Result>(\n fn: (_: Arg) => Result,\n): (_: Arg) => Result {\n // Since we lazy parse the template, we get the current stack so we have the\n // original stack to append if it errors when parsing\n let rootStack = \"\";\n try {\n // error stack gets populated in IE only on throw\n // (https://msdn.microsoft.com/en-us/library/hh699850(v=vs.94).aspx)\n throw new Error();\n } catch (error) {\n if (error.stack) {\n // error.stack does not exists in IE <= 9\n // We slice off the top 3 items in the stack to remove the call to\n // 'extendedTrace', and the anonymous builder function, with the final\n // stripped line being the error message itself since we threw it\n // in the first place and it doesn't matter.\n rootStack = error.stack.split(\"\\n\").slice(3).join(\"\\n\");\n }\n }\n\n return (arg: Arg) => {\n try {\n return fn(arg);\n } catch (err) {\n err.stack += `\\n =============\\n${rootStack}`;\n throw err;\n }\n };\n}\n"],"mappings":";;;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;AAIA,IAAAC,OAAA,GAAAD,OAAA;AACA,IAAAE,QAAA,GAAAF,OAAA;AA4BA,MAAMG,cAA4B,GAAG,IAAAC,iBAAQ,EAAC;EAC5CC,kBAAkB,EAAE;AACtB,CAAC,CAAC;AAEa,SAASC,qBAAqBA,CAC3CC,SAAuB,EACvBC,WAA0B,EACN;EACpB,MAAMC,eAAe,GAAG,IAAIC,OAAO,CAAC,CAAC;EACrC,MAAMC,gBAAgB,GAAG,IAAID,OAAO,CAAC,CAAC;EACtC,MAAME,UAAU,GAAGJ,WAAW,IAAI,IAAAJ,iBAAQ,EAAC,IAAI,CAAC;EAEhD,OAAOS,MAAM,CAACC,MAAM,CACjB,CAACC,GAAG,EAAE,GAAGC,IAAI,KAAK;IACjB,IAAI,OAAOD,GAAG,KAAK,QAAQ,EAAE;MAC3B,IAAIC,IAAI,CAACC,MAAM,GAAG,CAAC,EAAE,MAAM,IAAIC,KAAK,CAAC,0BAA0B,CAAC;MAChE,OAAOC,aAAa,CAClB,IAAAC,eAAc,EAACb,SAAS,EAAEQ,GAAG,EAAE,IAAAM,cAAK,EAACT,UAAU,EAAE,IAAAR,iBAAQ,EAACY,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CACrE,CAAC;IACH,CAAC,MAAM,IAAIM,KAAK,CAACC,OAAO,CAACR,GAAG,CAAC,EAAE;MAC7B,IAAIS,OAAO,GAAGf,eAAe,CAACgB,GAAG,CAACV,GAAG,CAAC;MACtC,IAAI,CAACS,OAAO,EAAE;QACZA,OAAO,GAAG,IAAAE,gBAAe,EAACnB,SAAS,EAAEQ,GAAG,EAAEH,UAAU,CAAC;QACrDH,eAAe,CAACkB,GAAG,CAACZ,GAAG,EAAES,OAAO,CAAC;MACnC;MACA,OAAOL,aAAa,CAACK,OAAO,CAACR,IAAI,CAAC,CAAC;IACrC,CAAC,MAAM,IAAI,OAAOD,GAAG,KAAK,QAAQ,IAAIA,GAAG,EAAE;MACzC,IAAIC,IAAI,CAACC,MAAM,GAAG,CAAC,EAAE,MAAM,IAAIC,KAAK,CAAC,0BAA0B,CAAC;MAChE,OAAOZ,qBAAqB,CAC1BC,SAAS,EACT,IAAAc,cAAK,EAACT,UAAU,EAAE,IAAAR,iBAAQ,EAACW,GAAG,CAAC,CACjC,CAAC;IACH;IACA,MAAM,IAAIG,KAAK,CAAE,6BAA4B,OAAOH,GAAI,EAAC,CAAC;EAC5D,CAAC,EACD;IACEa,GAAG,EAAEA,CAACb,GAA2B,EAAE,GAAGC,IAAoB,KAAK;MAC7D,IAAI,OAAOD,GAAG,KAAK,QAAQ,EAAE;QAC3B,IAAIC,IAAI,CAACC,MAAM,GAAG,CAAC,EAAE,MAAM,IAAIC,KAAK,CAAC,0BAA0B,CAAC;QAChE,OAAO,IAAAE,eAAc,EACnBb,SAAS,EACTQ,GAAG,EACH,IAAAM,cAAK,EAAC,IAAAA,cAAK,EAACT,UAAU,EAAE,IAAAR,iBAAQ,EAACY,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEb,cAAc,CAC5D,CAAC,CAAC,CAAC;MACL,CAAC,MAAM,IAAImB,KAAK,CAACC,OAAO,CAACR,GAAG,CAAC,EAAE;QAC7B,IAAIS,OAAO,GAAGb,gBAAgB,CAACc,GAAG,CAACV,GAAG,CAAC;QACvC,IAAI,CAACS,OAAO,EAAE;UACZA,OAAO,GAAG,IAAAE,gBAAe,EACvBnB,SAAS,EACTQ,GAAG,EACH,IAAAM,cAAK,EAACT,UAAU,EAAET,cAAc,CAClC,CAAC;UACDQ,gBAAgB,CAACgB,GAAG,CAACZ,GAAG,EAAES,OAAO,CAAC;QACpC;QACA,OAAOA,OAAO,CAACR,IAAI,CAAC,CAAC,CAAC;MACxB;MAEA,MAAM,IAAIE,KAAK,CAAE,6BAA4B,OAAOH,GAAI,EAAC,CAAC;IAC5D;EACF,CACF,CAAC;AACH;AAEA,SAASI,aAAaA,CACpBU,EAAsB,EACF;EAGpB,IAAIC,SAAS,GAAG,EAAE;EAClB,IAAI;IAGF,MAAM,IAAIZ,KAAK,CAAC,CAAC;EACnB,CAAC,CAAC,OAAOa,KAAK,EAAE;IACd,IAAIA,KAAK,CAACC,KAAK,EAAE;MAMfF,SAAS,GAAGC,KAAK,CAACC,KAAK,CAACC,KAAK,CAAC,IAAI,CAAC,CAACC,KAAK,CAAC,CAAC,CAAC,CAACC,IAAI,CAAC,IAAI,CAAC;IACzD;EACF;EAEA,OAAQC,GAAQ,IAAK;IACnB,IAAI;MACF,OAAOP,EAAE,CAACO,GAAG,CAAC;IAChB,CAAC,CAAC,OAAOC,GAAG,EAAE;MACZA,GAAG,CAACL,KAAK,IAAK,wBAAuBF,SAAU,EAAC;MAChD,MAAMO,GAAG;IACX;EACF,CAAC;AACH"}
|